gsrc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gsrc-commit] /srv/bzr/gsrc/trunk r1553: add psychosynth at 0.3.0


From: Brandon Invergo
Subject: [Gsrc-commit] /srv/bzr/gsrc/trunk r1553: add psychosynth at 0.3.0
Date: Sat, 05 Jan 2013 18:18:11 +0100
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 1553
committer: Brandon Invergo <address@hidden>
branch nick: trunk
timestamp: Sat 2013-01-05 18:18:11 +0100
message:
  add psychosynth at 0.3.0
added:
  external/soundtouch/
  external/soundtouch/Makefile
  gnu/psychosynth/
  gnu/psychosynth/Makefile
  gnu/psychosynth/config.mk
  gnu/psychosynth/files/
  gnu/psychosynth/files/psychosynth-0.3.0-fix-boost-linking.diff
  gnu/psychosynth/sha256sums
modified:
  TODO
=== modified file 'TODO'
--- a/TODO      2013-01-04 23:16:03 +0000
+++ b/TODO      2013-01-05 17:18:11 +0000
@@ -59,7 +59,7 @@
 **** TODO gar.master.mk
 *** TODO clean out unnecessary sites from gar.master.mk
 *** TODO (maybe) clean out unnecessary rules from gar.lib.mk
-* GNU packages [351/452] [77%]
+* GNU packages [352/452] [77%]
 ** IGNORE 3dkit
 *** decommissioned
 ** DONE 3dldf
@@ -827,7 +827,8 @@
    CLOSED: [2012-12-16 Sun 20:12]
 ** DONE pspp
    CLOSED: [2012-12-16 Sun 20:12]
-** TODO psychosynth
+** DONE psychosynth
+   CLOSED: [2013-01-05 Sat 18:17]
 ** DONE pth
    CLOSED: [2012-12-16 Sun 20:12]
 ** IGNORE pyconfigure

=== added directory 'external/soundtouch'
=== added file 'external/soundtouch/Makefile'
--- a/external/soundtouch/Makefile      1970-01-01 00:00:00 +0000
+++ b/external/soundtouch/Makefile      2013-01-05 17:18:11 +0000
@@ -0,0 +1,6 @@
+GARNAME = soundtouch
+GARVERSION = 1
+HOME_URL = http://www.surina.net/soundtouch
+DESCRIPTION = An audio processing library
+LIBFILES = SoundTouch
+include ../../gar.lib/external.mk

=== added directory 'gnu/psychosynth'
=== added file 'gnu/psychosynth/Makefile'
--- a/gnu/psychosynth/Makefile  1970-01-01 00:00:00 +0000
+++ b/gnu/psychosynth/Makefile  2013-01-05 17:18:11 +0000
@@ -0,0 +1,24 @@
+NAME = Psychosynth
+GARNAME = psychosynth
+GARVERSION = 0.3.0
+HOME_URL = http://www.gnu.org/software/psychosynth
+DESCRIPTION = An interactive, modular soft-synth
+
+######################################################################
+
+MASTER_SITES = $(MASTER_GNU)
+MASTER_SUBDIR = $(GARNAME)/
+DISTFILES = $(DISTNAME).tar.gz
+SIGFILES = $(DISTNAME).tar.gz.sig
+PATCHFILES = $(DISTNAME)-fix-boost-linking.diff
+
+BUILDDEPS =
+LIBDEPS = boost soundtouch
+
+######################################################################
+
+include ../../gar.lib/auto.mk
+include config.mk
+
+CONFIGURE_ARGS += --with-boost=$(prefix) \
+                 --with-boost-libdir=$(prefix)/lib

=== added file 'gnu/psychosynth/config.mk'
--- a/gnu/psychosynth/config.mk 1970-01-01 00:00:00 +0000
+++ b/gnu/psychosynth/config.mk 2013-01-05 17:18:11 +0000
@@ -0,0 +1,4 @@
+## Configuration options for psychosynth ##
+
+CONFIGURE_OPTS ?= 
+BUILD_OPTS ?=

=== added directory 'gnu/psychosynth/files'
=== added file 'gnu/psychosynth/files/psychosynth-0.3.0-fix-boost-linking.diff'
--- a/gnu/psychosynth/files/psychosynth-0.3.0-fix-boost-linking.diff    
1970-01-01 00:00:00 +0000
+++ b/gnu/psychosynth/files/psychosynth-0.3.0-fix-boost-linking.diff    
2013-01-05 17:18:11 +0000
@@ -0,0 +1,54 @@
+diff -x config.log -x config.status -ru work/psychosynth-0.3.0/src/Makefile.in 
work/psychosynth-0.3.0/src/Makefile.in
+--- work/psychosynth-0.3.0/src/Makefile.in     2012-02-05 01:17:15.000000000 
+0100
++++ work/psychosynth-0.3.0/src/Makefile.in     2013-01-05 17:18:37.299827966 
+0100
+@@ -416,7 +416,7 @@
+       $(LIBLO_LIBS) \
+       $(BOOST_FILESYSTEM_LIB) \
+       $(BOOST_SIGNALS_LIB) \
+-      -lboost_system-mt \
++      -lboost_system \
+       ./psynth/libpsynth.la
+ 
+ psynth_cli_SOURCES = \
+@@ -434,7 +434,7 @@
+ # libboost_system is a hack
+ psynth3d_LDFLAGS = 
+ psynth3d_LDADD = $(BOOST_SIGNALS_LIB) $(BOOST_FILESYSTEM_LIB) \
+-      -lboost_system-mt $(SIGC_LIBS) $(OGRE_LIBS) $(CEGUI_LIBS) \
++      -lboost_system $(SIGC_LIBS) $(OGRE_LIBS) $(CEGUI_LIBS) \
+       $(CEGUIOGRE_LIBS) $(OIS_LIBS) ./psynth/libpsynth.la \
+       $(am__append_4) $(am__append_6) $(am__append_9)
+ psynth3d_SOURCES = gui3d/camera_controller_default.cpp \
+diff -x config.log -x config.status -ru 
work/psychosynth-0.3.0/src/psynth/Makefile.in 
work/psychosynth-0.3.0/src/psynth/Makefile.in
+--- work/psychosynth-0.3.0/src/psynth/Makefile.in      2012-02-05 
01:17:16.000000000 +0100
++++ work/psychosynth-0.3.0/src/psynth/Makefile.in      2013-01-05 
18:09:01.533062544 +0100
+@@ -692,7 +692,7 @@
+       $(am__append_19) $(am__append_23)
+ libpsynth_la_LDFLAGS = $(am__append_20)
+ libpsynth_la_LIBADD = $(BOOST_FILESYSTEM_LIB) $(BOOST_SIGNALS_LIB) \
+-      -lboost_system-mt $(am__append_2) $(am__append_6) \
++      -lboost_system $(am__append_2) $(am__append_6) \
+       $(am__append_10) $(am__append_14) $(am__append_24)
+ libpsynthincdir = $(PACKAGE_INCLUDE_DIR)
+ nobase_libpsynthinc_HEADERS = app/director.hpp app/defaults.hpp \
+diff -x config.log -x config.status -ru 
work/psychosynth-0.3.0/src/test/Makefile.in 
work/psychosynth-0.3.0/src/test/Makefile.in
+--- work/psychosynth-0.3.0/src/test/Makefile.in        2012-02-05 
01:17:16.000000000 +0100
++++ work/psychosynth-0.3.0/src/test/Makefile.in        2013-01-05 
18:08:41.096396546 +0100
+@@ -380,7 +380,7 @@
+ @address@hidden = \
+ @HAVE_BOOST_TEST_TRUE@        $(BOOST_FILESYSTEM_LIB) \
+ @HAVE_BOOST_TEST_TRUE@        $(BOOST_SIGNALS_LIB) \
address@hidden@ -lboost_system-mt \
address@hidden@ -lboost_system \
+ @HAVE_BOOST_TEST_TRUE@        ../psynth/libpsynth.la  
+ 
+ @address@hidden = examples/graph_scale.cpp
+@@ -428,7 +428,7 @@
+ @HAVE_BOOST_TEST_TRUE@        $(BOOST_UNIT_TEST_FRAMEWORK_LIB) \
+ @HAVE_BOOST_TEST_TRUE@        $(BOOST_FILESYSTEM_LIB) \
+ @HAVE_BOOST_TEST_TRUE@        $(BOOST_SIGNALS_LIB) \
address@hidden@ -lboost_system-mt \
address@hidden@ -lboost_system \
+ @HAVE_BOOST_TEST_TRUE@        ../psynth/libpsynth.la
+ 
+ all: all-am

=== added file 'gnu/psychosynth/sha256sums'
--- a/gnu/psychosynth/sha256sums        1970-01-01 00:00:00 +0000
+++ b/gnu/psychosynth/sha256sums        2013-01-05 17:18:11 +0000
@@ -0,0 +1,3 @@
+5993fa4a8c0b793456f43b18932684eab45ca708db270b9508ca300c6d85197e  
download/psychosynth-0.3.0.tar.gz
+ecc5f6d8dee46d7577a6b8ebe885f0d78e8058191a79212c14782d73a0aa69fe  
download/psychosynth-0.3.0-fix-boost-linking.diff
+64c2a1fa490a47935129dc2cd9edcaab2f9eebf4beb61e88aaa3843260ea44e3  
download/psychosynth-0.3.0.tar.gz.sig


reply via email to

[Prev in Thread] Current Thread [Next in Thread]