diff options
author | swills <swills@FreeBSD.org> | 2017-08-18 22:15:45 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2017-08-18 22:15:45 +0800 |
commit | 66f2bea4ba7109edc660e766c499b965c3c9b1d6 (patch) | |
tree | 0db780aa4d57c4a2360f88e75b08d0e106ab5383 /audio | |
parent | e29c06fe69f69d3d86b2c86b5d85f565efd5471e (diff) | |
download | freebsd-ports-gnome-66f2bea4ba7109edc660e766c499b965c3c9b1d6.tar.gz freebsd-ports-gnome-66f2bea4ba7109edc660e766c499b965c3c9b1d6.tar.zst freebsd-ports-gnome-66f2bea4ba7109edc660e766c499b965c3c9b1d6.zip |
audio/lash: Fixed.pc file: removed Requires line, added missing USE statements
* Removed Requires in .pc because it causes pkg-config to pass jack libraries
to users that users don't need
* Add needed USE_GNOME=gdkpixbuf2 cairo
* PYTHON_CONFIGURE_ENABLE=pylash - pylash is still broken as before.
PR: 220956
Submitted by: Yuri Victorovich <yuri@rawbw.com>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/lash/Makefile | 8 | ||||
-rw-r--r-- | audio/lash/files/patch-lash-1.0.pc.in | 10 |
2 files changed, 15 insertions, 3 deletions
diff --git a/audio/lash/Makefile b/audio/lash/Makefile index b3a0a23b5c0d..733157213ef5 100644 --- a/audio/lash/Makefile +++ b/audio/lash/Makefile @@ -3,7 +3,7 @@ PORTNAME= lash PORTVERSION= 0.5.4 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= audio MASTER_SITES= SAVANNAH @@ -15,10 +15,12 @@ LICENSE_COMB= dual LIB_DEPENDS= libjack.so:audio/jack \ libdssialsacompat.so:audio/libdssialsacompat \ + libfreetype.so:print/freetype2 \ + libfontconfig.so:x11-fonts/fontconfig \ libuuid.so:misc/e2fsprogs-libuuid USES= gmake pathfix pkgconfig libtool -USE_GNOME= gtk20 libxml2 +USE_GNOME= gtk20 libxml2 gdkpixbuf2 cairo GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-alsa-midi USE_LDCONFIG= yes @@ -35,7 +37,7 @@ OPTIONS_SUB= yes PYTHON_DESC= Build pylash PYTHON_USES= python PYTHON_BUILD_DEPENDS= swig:devel/swig13 -PYTHON_CONFIGURE_OFF= --disable-pylash +PYTHON_CONFIGURE_ENABLE=pylash READLINE_USES= readline READLINE_CONFIGURE_ENV_OFF= vl_cv_lib_readline=no diff --git a/audio/lash/files/patch-lash-1.0.pc.in b/audio/lash/files/patch-lash-1.0.pc.in new file mode 100644 index 000000000000..df35b06e82b3 --- /dev/null +++ b/audio/lash/files/patch-lash-1.0.pc.in @@ -0,0 +1,10 @@ +--- lash-1.0.pc.in.orig 2007-01-13 20:44:09 UTC ++++ lash-1.0.pc.in +@@ -5,7 +5,6 @@ includedir=@includedir@ + + Name: LASH + Description: Audio session management +-Requires: @PC_REQUIRES@ + Version: @PACKAGE_VERSION@ + Libs: -llash + Libs.static: -lpthread -luuid |