55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
# New ports collection makefile for: gstreamer ffmpeg
|
|
# Date created: Thu Feb 26 20:10:39 CET 2004
|
|
# Whom: Koop Mast <kwm@rainbow-runner.nl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gstreamer
|
|
PORTVERSION= 0.8.5
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-ffmpeg/
|
|
PKGNAMESUFFIX= -ffmpeg
|
|
DISTNAME= gst-ffmpeg-${PORTVERSION}
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= GStreamer plug-in for manipulating MPEG video streams
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_BZIP2= yes
|
|
USE_REINPLACE= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack \
|
|
gnometarget \
|
|
gnomeprefix
|
|
USE_GSTREAMER= yes
|
|
USE_LIBTOOL_VER=15
|
|
CONFIGURE_ENV= PKG_CONFIG=${PKG_CONFIG} \
|
|
CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
|
|
CFLAGS="${CFLAGS} -fno-force-addr" \
|
|
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
|
|
PLIST_SUB= \
|
|
VERSION="${GST_VERSION}"
|
|
WITHOUT_CPU_CFLAGS= yes
|
|
|
|
PKG_CONFIG?="${LOCALBASE}/bin/pkg-config"
|
|
GST_VERSION=${PORTVERSION:C/..$//}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|make|${GMAKE}|' \
|
|
${WRKSRC}/gst-libs/ext/Makefile.in
|
|
|
|
post-install:
|
|
# register plugins
|
|
-@${X11BASE}/bin/gst-register-${GST_VERSION} \
|
|
--gst-registry=${PREFIX}/share/gnome/cache/gstreamer-${GST_VERSION}/registry.xml 2>/dev/null
|
|
|
|
.include <bsd.port.post.mk>
|