1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00
Michael Johnson daf4cc81e4 - 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.
2005-02-28 22:16:10 +00:00

49 lines
1.2 KiB
Makefile

# New ports collection makefile for: gnomemedia2
# Date created: 06 May 2002
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= gnomemedia2
PORTVERSION= 2.8.0
PORTREVISION= 3
CATEGORIES= audio gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/gnome-media/2.8
DISTNAME= gnome-media-${PORTVERSION}
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT= Multimedia applications for the GNOME 2 desktop
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_LIBTOOL_VER=15
INSTALLS_OMF= yes
INSTALLS_SHLIB= yes
USE_REINPLACE= yes
GNOME_DESKTOP_VERSION=2
USE_GNOME= gnomeprefix gnomehack intlhack gnomehier gnomedesktop \
gail
USE_GSTREAMER= esound cdparanoia
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
GCONF_SCHEMAS= CDDB-Slave2.schemas gnome-audio-profiles.schemas \
gnome-cd.schemas gnome-sound-recorder.schemas
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e 's|[$$][(]CDROM_HOST[)]|freebsd|g' \
${WRKSRC}/gnome-cd/Makefile.in
.if ${OSVERSION} > 501107
@${REINPLACE_CMD} -e 's|%%CDROM%%|acd0|' ${WRKSRC}/configure
.else
@${REINPLACE_CMD} -e 's|%%CDROM%%|acd0c|' ${WRKSRC}/configure
.endif
.include <bsd.port.post.mk>