diff options
author | jmmv <jmmv@pkgsrc.org> | 2003-07-26 13:55:04 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2003-07-26 13:55:04 +0000 |
commit | 6a17f6b552f811a7d4091da1a9e81bf90da1a813 (patch) | |
tree | 15e7d8c97d754f58d22323a2ac875a0169caa151 /graphics/gmencoder/Makefile | |
parent | 738a46011eb4dc3f2ca7774b280edd6801956107 (diff) | |
download | pkgsrc-6a17f6b552f811a7d4091da1a9e81bf90da1a813.tar.gz |
Initial import of gmencoder, version 0.1.0:
Gmencoder is a GNOME2 frontend to mplayer/mencoder. It supports much of the
output codecs, as well as postprocesing, cropping, scaling, subtitles ripping,
and one, two or three passes for encoding.
Provided by Juan RP in pkgsrc-wip.
Diffstat (limited to 'graphics/gmencoder/Makefile')
-rw-r--r-- | graphics/gmencoder/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/graphics/gmencoder/Makefile b/graphics/gmencoder/Makefile new file mode 100644 index 00000000000..ad1f80fc77e --- /dev/null +++ b/graphics/gmencoder/Makefile @@ -0,0 +1,41 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/07/26 13:55:04 jmmv Exp $ +# + +DISTNAME= gmencoder-0.1.0 +CATEGORIES= graphics +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gmencoder/} +EXTRACT_SUFX= .tgz + +MAINTAINER= jrp@hispabsd.org +HOMEPAGE= http://gmencoder.sourceforge.net/ +COMMENT= GNOME2 frontend to mencoder + +BUILD_USES_MSGFMT= yes +DEPENDS+= gnome2-dirs>=1.2:../../misc/gnome2-dirs +DEPENDS+= mencoder>=0.90:../../graphics/mencoder +DEPENDS+= mplayer>=0.90:../../graphics/mplayer + +GNU_CONFIGURE= yes +USE_BUILDLINK2= yes +USE_GMAKE= yes +USE_PKGINSTALL= yes +USE_PKGLOCALEDIR= yes +USE_X11= yes + +CFLAGS+= -DPKG_SYSCONFDIR=\"\\\"${PKG_SYSCONFDIR}\\\"\" +EGDIR= ${PREFIX}/share/examples/gmencoder +CONF_FILES= ${EGDIR}/gmencoder_opts ${PKG_SYSCONFDIR}/gmencoder_opts + +post-build: + ${MV} ${WRKSRC}/etc/gmencoder_opts ${WRKSRC}/etc/gmencoder_opts.in + ${SED} -e 's|/usr/local|${PREFIX}|g' \ + < ${WRKSRC}/etc/gmencoder_opts.in > ${WRKSRC}/etc/gmencoder_opts + +post-install: + ${INSTALL_DATA_DIR} ${EGDIR} + ${INSTALL_DATA} ${WRKSRC}/etc/gmencoder_opts ${EGDIR} + +.include "../../devel/gettext-lib/buildlink2.mk" +.include "../../devel/libgnomeui/buildlink2.mk" +.include "../../mk/pthread.buildlink2.mk" +.include "../../mk/bsd.pkg.mk" |