diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-06-08 09:14:31 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-06-08 09:14:31 +0800 |
commit | ebacf85bbfff328b70b054809d30cb6198ac4e29 (patch) | |
tree | 2710738ca26b8bdceb145eb2518af64f092ec0a2 /multimedia/gstreamer-plugins-ugly/Makefile | |
parent | 7709d01d13ae152c0679c1bcfd54e32c575eff28 (diff) | |
download | marcuscom-ports-ebacf85bbfff328b70b054809d30cb6198ac4e29.tar marcuscom-ports-ebacf85bbfff328b70b054809d30cb6198ac4e29.tar.gz marcuscom-ports-ebacf85bbfff328b70b054809d30cb6198ac4e29.tar.bz2 marcuscom-ports-ebacf85bbfff328b70b054809d30cb6198ac4e29.tar.lz marcuscom-ports-ebacf85bbfff328b70b054809d30cb6198ac4e29.tar.xz marcuscom-ports-ebacf85bbfff328b70b054809d30cb6198ac4e29.tar.zst marcuscom-ports-ebacf85bbfff328b70b054809d30cb6198ac4e29.zip |
- Make PORTVERSION right for each plugin. I had to bump PORTEPOCH so I'm going
to wait until the next release of gstreamer-plugins before I move to ports.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6378 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/gstreamer-plugins-ugly/Makefile')
-rw-r--r-- | multimedia/gstreamer-plugins-ugly/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/multimedia/gstreamer-plugins-ugly/Makefile b/multimedia/gstreamer-plugins-ugly/Makefile new file mode 100644 index 000000000..e40ea553b --- /dev/null +++ b/multimedia/gstreamer-plugins-ugly/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: gstreamer-plugins-ugly +# Date created: 20 Jan 2006 +# Whom: Michael Johnson <ahze@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/multimedia/gstreamer-plugins-ugly/Makefile,v 1.3 2006/04/16 08:42:06 marcus Exp $ +# + +PORTREVISION= 2 +CATEGORIES= multimedia + +COMMENT= Ugly gstreamer-plugins + +GST_PLUGIN= ugly +GST_PLUGIN_SUFFIX= -ugly + +MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins + +BUILD_DEPENDS+= gstreamer-plugins>=${GST_VERSION}${GST_MINOR_VERSION}:${PORTSDIR}/multimedia/gstreamer-plugins +RUN_DEPENDS+= gstreamer-plugins>=${GST_VERSION}${GST_MINOR_VERSION}:${PORTSDIR}/multimedia/gstreamer-plugins + +DIST= ugly +UGLY_GST_DIRS= gst +PLIST_SUB= VERSION="${GST_VERSION}" +NO_GSTREAMER_COMMON= yes +PLIST= ${.CURDIR}/pkg-plist + +do-build: +.for dir in ${UGLY_GST_DIRS} + @(cd ${BUILD_WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) +.endfor + +do-install: +.for dir in ${UGLY_GST_DIRS} + @(cd ${INSTALL_WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) + +.endfor + +.include "${MASTERDIR}/Makefile" |