diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-09-15 18:17:23 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-09-15 18:17:23 +0000 |
commit | 1c0205620fad693b0922bf61e0b6084dad036185 (patch) | |
tree | 31d5230fbcd81ac5871c9cd9f255220f44e34b59 /media-libs/stk/files | |
parent | Fix bug #382673 (diff) | |
download | gentoo-2-1c0205620fad693b0922bf61e0b6084dad036185.tar.gz gentoo-2-1c0205620fad693b0922bf61e0b6084dad036185.tar.bz2 gentoo-2-1c0205620fad693b0922bf61e0b6084dad036185.zip |
version bump
(Portage version: 2.2.0_alpha58/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/stk/files')
3 files changed, 55 insertions, 0 deletions
diff --git a/media-libs/stk/files/stk-4.4.3/010_all_removeForcedFlags.patch b/media-libs/stk/files/stk-4.4.3/010_all_removeForcedFlags.patch new file mode 100644 index 000000000000..3fcc28fb763c --- /dev/null +++ b/media-libs/stk/files/stk-4.4.3/010_all_removeForcedFlags.patch @@ -0,0 +1,13 @@ +Index: stk-4.4.3/configure.ac +=================================================================== +--- stk-4.4.3.orig/configure.ac ++++ stk-4.4.3/configure.ac +@@ -65,7 +65,7 @@ if test "$debug" = "yes"; then + else + AC_SUBST( debug, [no] ) + AC_SUBST( cppflag, [] ) +- AC_SUBST( cxxflag, [-O3] ) ++ AC_SUBST( cxxflag, [] ) + AC_SUBST( object_path, [Release] ) + fi + AC_MSG_RESULT($debug) diff --git a/media-libs/stk/files/stk-4.4.3/020_all_noExamplesOrDemo.patch b/media-libs/stk/files/stk-4.4.3/020_all_noExamplesOrDemo.patch new file mode 100644 index 000000000000..ed522450fd2f --- /dev/null +++ b/media-libs/stk/files/stk-4.4.3/020_all_noExamplesOrDemo.patch @@ -0,0 +1,29 @@ +Index: stk-4.4.3/Makefile.in +=================================================================== +--- stk-4.4.3.orig/Makefile.in ++++ stk-4.4.3/Makefile.in +@@ -4,24 +4,12 @@ RM = /bin/rm + + all : + cd src && $(MAKE) +- cd projects/demo && $(MAKE) libdemo +- cd projects/effects && $(MAKE) libeffects +- cd projects/ragamatic && $(MAKE) libragamat +- cd projects/examples && $(MAKE) -f libMakefile + + clean : + $(RM) -f *~ + cd src && $(MAKE) clean +- cd projects/demo && $(MAKE) clean +- cd projects/effects && $(MAKE) clean +- cd projects/ragamatic && $(MAKE) clean +- cd projects/examples && $(MAKE) clean + + distclean: clean + $(RM) -rf config.log config.status autom4te.cache Makefile + cd src && $(MAKE) distclean +- cd projects/demo && $(MAKE) distclean +- cd projects/effects && $(MAKE) distclean +- cd projects/ragamatic && $(MAKE) distclean +- cd projects/examples && $(MAKE) distclean + diff --git a/media-libs/stk/files/stk-4.4.3/030_all_sharedlib.patch b/media-libs/stk/files/stk-4.4.3/030_all_sharedlib.patch new file mode 100644 index 000000000000..726847bc8a10 --- /dev/null +++ b/media-libs/stk/files/stk-4.4.3/030_all_sharedlib.patch @@ -0,0 +1,13 @@ +Index: stk-4.4.3/src/Makefile.in +=================================================================== +--- stk-4.4.3.orig/src/Makefile.in ++++ stk-4.4.3/src/Makefile.in +@@ -64,7 +64,7 @@ DEFS += -DRAWWAVE_PATH=\"$(RAWWAVES)\ + %.o : ../src/include/%.cpp + $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $(OBJECT_PATH)/$@ + +-all : $(STATICLIB) ++all : $(STATICLIB) $(SHAREDLIB) + + $(STATICLIB) : $(OBJECTS) + $(RM) -f $(STATICLIB) |