summaryrefslogtreecommitdiffstats
path: root/audio/libcanberra/Makefile
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-12-01 23:23:45 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-12-01 23:23:45 +0800
commit5a88a8ba186cd8b622dcb6368943fb89db3facb1 (patch)
tree5e72fae261b7dc120756e5e69bd62dff690c6a43 /audio/libcanberra/Makefile
parent846f06692045aa093a2e20c14e561b47d11540c7 (diff)
downloadmarcuscom-ports-5a88a8ba186cd8b622dcb6368943fb89db3facb1.tar
marcuscom-ports-5a88a8ba186cd8b622dcb6368943fb89db3facb1.tar.gz
marcuscom-ports-5a88a8ba186cd8b622dcb6368943fb89db3facb1.tar.bz2
marcuscom-ports-5a88a8ba186cd8b622dcb6368943fb89db3facb1.tar.lz
marcuscom-ports-5a88a8ba186cd8b622dcb6368943fb89db3facb1.tar.xz
marcuscom-ports-5a88a8ba186cd8b622dcb6368943fb89db3facb1.tar.zst
marcuscom-ports-5a88a8ba186cd8b622dcb6368943fb89db3facb1.zip
Enable gtk3 module.
Maybe it is a idea to split off the gtk2 module from the main libcanberra port? git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14926 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio/libcanberra/Makefile')
-rw-r--r--audio/libcanberra/Makefile68
1 files changed, 68 insertions, 0 deletions
diff --git a/audio/libcanberra/Makefile b/audio/libcanberra/Makefile
new file mode 100644
index 000000000..4fed30fff
--- /dev/null
+++ b/audio/libcanberra/Makefile
@@ -0,0 +1,68 @@
+# New ports collection makefile for: libcanberra
+# Date created: 05 August 2008
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD: ports/audio/libcanberra/Makefile,v 1.20 2010/11/21 23:48:16 marcus Exp $
+# $MCom$
+
+PORTNAME= libcanberra
+PORTVERSION= 0.26
+CATEGORIES= audio devel
+MASTER_SITES= http://0pointer.de/lennart/projects/libcanberra/
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Implementation of the Freedesktop sound theme spec
+
+LIB_DEPENDS= vorbisfile.6:${PORTSDIR}/audio/libvorbis
+
+LICENSE= LGPL21
+LICENSE_FILE= ${WRKSRC}/LGPL
+USE_GMAKE= yes
+USE_GNOME= gnomeprefix gnomehack gtk20 ltverhack gconf2
+USE_LDCONFIG= yes
+USE_AUTOTOOLS= libtool:22 libltdl:22
+CONFIGURE_ARGS= --disable-lynx --disable-tdb
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+.if !defined(SLAVEPORT)
+GCONF_SCHEMAS= libcanberra.schemas
+
+OPTIONS= PULSE "Enable Pulse Audio support" off \
+ GSTREAMER "Enable GStreamer audio support" off
+.endif
+
+PLIST_SUB= VERSION=${PORTVERSION}
+
+.include <bsd.port.pre.mk>
+
+.if defined(SLAVEPORT)
+USE_GNOME+= gtk30
+LIB_DEPENDS+= canberra.0:${PORTSDIR}/audio/libcanberra
+CONFIGURE_ARGS+=--enable-gtk3
+.else
+CONFIGURE_ARGS+=--disable-gtk3
+
+.if !defined(WITHOUT_PULSE)
+LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio
+PLIST_SUB+= PULSE=""
+.else
+CONFIGURE_ARGS+=--disable-pulse
+PLIST_SUB+= PULSE="@comment "
+.endif
+
+.if !defined(WITHOUT_GSTREAMER)
+USE_GSTREAMER= yes
+PLIST_SUB+= GSTREAMER=""
+.else
+CONFIGURE_ARGS+=--disable-gstreamer
+PLIST_SUB+= GSTREAMER="@comment "
+.endif
+
+.endif # end slaveport
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g' \
+ ${WRKSRC}/configure
+
+.include <bsd.port.post.mk>