diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2019-11-17 13:45:28 +0100 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2019-11-17 13:45:50 +0100 |
commit | b11c809675d56efce2d929a866d13347f8ce6e5d (patch) | |
tree | a6571a3a858a42b996bcad9d462cd9dcfa454ad1 /media-sound/aeolus/files | |
parent | media-libs/zita-alsa-pcmi-0.3.2: bump (diff) | |
download | gentoo-b11c809675d56efce2d929a866d13347f8ce6e5d.tar.gz gentoo-b11c809675d56efce2d929a866d13347f8ce6e5d.tar.bz2 gentoo-b11c809675d56efce2d929a866d13347f8ce6e5d.zip |
media-sound/aeolus-0.9.7: bump
1) updated to eapi 7 + updated
2) updated deps
3) updated changes to Makefile and moved them to patch file
4) added EPREFIX
5) added desktop file
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-sound/aeolus/files')
-rw-r--r-- | media-sound/aeolus/files/aeolus-0.9.7-fix-Makefile.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/media-sound/aeolus/files/aeolus-0.9.7-fix-Makefile.patch b/media-sound/aeolus/files/aeolus-0.9.7-fix-Makefile.patch new file mode 100644 index 000000000000..07619475eca1 --- /dev/null +++ b/media-sound/aeolus/files/aeolus-0.9.7-fix-Makefile.patch @@ -0,0 +1,31 @@ +diff --git a/source/Makefile b/source/Makefile +index f9e75bd..8390bd2 100644 +--- a/source/Makefile ++++ b/source/Makefile +@@ -24,7 +24,7 @@ LIBDIR ?= $(PREFIX)/lib$(SUFFIX) + + VERSION = 0.9.7 + CPPFLAGS += -MMD -MP -DVERSION=\"$(VERSION)\" -DLIBDIR=\"$(LIBDIR)\" +-CXXFLAGS += -O2 -Wall ++CXXFLAGS += -Wall + CXXFLAGS += -march=native + + +@@ -45,7 +45,7 @@ $(AEOLUS_O): + XIFACE_O = styles.o mainwin.o midiwin.o audiowin.o instrwin.o editwin.o \ + midimatrix.o multislider.o functionwin.o xiface.o addsynth.o + aeolus_x11.so: CPPFLAGS += -D_REENTRANT +-aeolus_x11.so: CPPFLAGS += $(shell pkgconf --cflags freetype2) ++aeolus_x11.so: CPPFLAGS += $(shell pkg-config --cflags freetype2) + aeolus_x11.so: CXXFLAGS += -shared -fPIC + aeolus_x11.so: LDFLAGS += -shared + aeolus_x11.so: LDLIBS += -lclthreads -lclxclient -lpthread -lXft -lX11 +@@ -74,7 +74,7 @@ install: aeolus aeolus_x11.so aeolus_txt.so + install -m 755 aeolus $(DESTDIR)$(BINDIR) + install -m 755 aeolus_x11.so $(DESTDIR)$(LIBDIR) + install -m 755 aeolus_txt.so $(DESTDIR)$(LIBDIR) +- ldconfig $(PREFIX)/$(LIBDIR) ++ true $(PREFIX)/$(LIBDIR) + + + clean: |