diff options
author | ahze <ahze@FreeBSD.org> | 2005-02-28 22:16:10 +0000 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2005-02-28 22:16:10 +0000 |
commit | 67b0bcb755f8b2e738f1628212a462100010232d (patch) | |
tree | 66219c98689ff4395c07681f6494f6d4f242fc09 /audio/marlin | |
parent | aa4e4e91097b7da2ff4497ebcbbc802bddb95dc7 (diff) | |
download | FreeBSD-ports-67b0bcb755f8b2e738f1628212a462100010232d.zip FreeBSD-ports-67b0bcb755f8b2e738f1628212a462100010232d.tar.gz |
- split multimedia/gstreamer-plugins in to individual ports per
gstreamer plugin (52 new ports).
- Chase changes to ports that used USE_GNOME=gstreamerplugisn
to use new USE_GSTREAMER= macro, Bump PORTREVISION's
--
Examples of new USE_GSTREAMER macro:
USE_GSTREAMER= dvd lame flac
.include <bsd.port.mk>
If you want to use USE_GSTREAMER after <bsd.port.pre.mk>
you must follow one of the examples listed below
WANT_GSTREAMER= yes
.include <bsd.port.pre.mk>
.if defined(WITH_VORBIS)
USE_GSTREAMER+= vorbis
.endif
or
USE_GSTREAMER= yes
.include <bsd.port.pre.mk>
.if defined(WITH_FAAD)
USE_GSTREAMER+= faad
.endif
Note: USE_GSTREAMER=yes will always add a dependency to
ports/multimedia/gstreamer-plugins
--
Thanks to krion for runing this on pointyhat
Thanks to kwm for helping with this, and many bug fixes , and updates.
Diffstat (limited to 'audio/marlin')
-rw-r--r-- | audio/marlin/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/audio/marlin/Makefile b/audio/marlin/Makefile index abc814e..44da213 100644 --- a/audio/marlin/Makefile +++ b/audio/marlin/Makefile @@ -6,7 +6,7 @@ PORTNAME= marlin PORTVERSION= 0.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -19,7 +19,8 @@ LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ USE_X_PREFIX= yes USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack gnometarget gstreamerplugins intlhack libgnomeui +USE_GNOME= gnomeprefix gnomehack gnometarget intlhack libgnomeui +USE_GSTREAMER= flac mad vorbis INSTALLS_OMF= yes INSTALLS_SHLIB= yes USE_LIBTOOL_VER=15 @@ -28,4 +29,8 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ GCONF_SCHEMAS= marlin.schemas +.if !defined(PACKAGE_BUILDING) || defined(WITH_LAME) +USE_GSTREAMER+= lame +.endif + .include <bsd.port.mk> |