freebsd-ports/multimedia/gstreamer-plugins-core/Makefile
Joe Marcus Clarke e18151212d Presenting GNOME 2.12 for FreeBSD. The release is chock full of bug fixes
and new features.  Don't believe me?  Then see for yourself at
http://www.gnome.org/start/2.12/notes/en/.

DO NOT USE portupgrade by itself to upgrade to GNOME 2.12.  Instead, use
the gnome_upgrade.sh script from
http://www.marcuscom.com/downloads/gnome_upgrade212.sh.  This script will
circumvent some potential pitfalls users can see if they use portupgrade
by itself.

In keeping with tradition, GNOME 2.12 for FreeBSD comes with a special
splash screen.  The winner of this release's contest is
Dominique Goncalves <dominique.goncalves@gmail.com>.  His splash screen
was inspired by http://art.gnome.org/contests/2.12-splash/83.

The FreeBSD GNOME Team would lank to thank the following users for
their contributions to this release:

Matthew Luckie <mjl@luckie.org.nz>
ade
sajd on #freebsd-gnome
Caelian on #freebsd-gnome
mnag
Yasuda Keisuke <kysd@po.harenet.ne.jp>
Mark Hobden <markhobden@gmail.com>
Sergey Akifyev <asa@agava.com>
Andreas Kohn

For more information on GNOME on FreeBSD, checkout
http://www.FreeBSD.org/gnome/.  The 2.12 documentation will be
posted shortly.
2005-11-05 04:53:48 +00:00

69 lines
1.4 KiB
Makefile

# New ports collection makefile for: gstreamer-plugins-core
# Date created: 2004-11-15
# Whom: Michael Johnson <ahze@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/multimedia/gstreamer-plugins-core/Makefile,v 1.8 2005/07/13 06:48:22 ahze Exp $
#
PORTNAME= gstreamer-plugins-core
PORTVERSION= 0.8
PORTREVISION= 6
CATEGORIES= multimedia audio
MASTER_SITES= # empty
DISTFILES= # empty
EXTRACT_ONLY= # empty
MAINTAINER= gnome@FreeBSD.org
COMMENT= Core set of typical audio and video gstreamer-plugins
USE_X_PREFIX= yes
NO_BUILD= yes
GST_DIR= lib/gstreamer-${PORTVERSION}
PLIST_FILES= ${GST_DIR}/.gstreamer-plugins-core.keep
WANT_GSTREAMER= yes
.include <bsd.port.pre.mk>
# Audio plugins
USE_GSTREAMER+= mad vorbis
# Graphics plugins
USE_GSTREAMER+= libpng
# Misc plugins
USE_GSTREAMER+= pango
# Multimedia plugins
USE_GSTREAMER+= ffmpeg
.if ${OSVERSION} > 500035 || defined(WITH_XVID)
USE_GSTREAMER+= xvid
.endif
.if !defined(WITHOUT_DVD)
# Audio plugins
USE_GSTREAMER+= a52dec
# Multimedia plugins
USE_GSTREAMER+= dts dvd
.endif
pre-everything::
@${ECHO_MSG} ""
@${ECHO_MSG} " Disable DVD plugins by defining WITHOUT_DVD"
@${ECHO_MSG} ""
.if ${OSVERSION} < 500035 && !defined(WITH_XVID)
@${ECHO_MSG} " Enable XVID plugins by defining WITH_XVID"
@${ECHO_MSG} ""
.endif
do-install:
if [ ! -d ${PREFIX}/${GST_DIR} ]; then \
${MKDIR} ${PREFIX}/${GST_DIR} ; \
fi
${TOUCH} -f ${PREFIX}/${GST_DIR}/.gstreamer-plugins-core.keep
.include <bsd.port.post.mk>