diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-08-07 04:43:19 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-08-07 04:43:19 +0800 |
commit | 0b084bcd09a6dda9e71db7da2b802e18c6bd55ab (patch) | |
tree | 0e16b8350c1e3a2c0ef149566a0bf336475af419 /sysutils/graveman/Makefile | |
parent | 664243d83ec44a146d7cfa4b00f8426084630860 (diff) | |
download | marcuscom-ports-0b084bcd09a6dda9e71db7da2b802e18c6bd55ab.tar marcuscom-ports-0b084bcd09a6dda9e71db7da2b802e18c6bd55ab.tar.gz marcuscom-ports-0b084bcd09a6dda9e71db7da2b802e18c6bd55ab.tar.bz2 marcuscom-ports-0b084bcd09a6dda9e71db7da2b802e18c6bd55ab.tar.lz marcuscom-ports-0b084bcd09a6dda9e71db7da2b802e18c6bd55ab.tar.xz marcuscom-ports-0b084bcd09a6dda9e71db7da2b802e18c6bd55ab.tar.zst marcuscom-ports-0b084bcd09a6dda9e71db7da2b802e18c6bd55ab.zip |
share/gnome/ -> share/.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9363 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'sysutils/graveman/Makefile')
-rw-r--r-- | sysutils/graveman/Makefile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/sysutils/graveman/Makefile b/sysutils/graveman/Makefile new file mode 100644 index 000000000..f29b22f57 --- /dev/null +++ b/sysutils/graveman/Makefile @@ -0,0 +1,57 @@ +# New ports collection makefile for: graveman +# Date created: 2005-02-01 +# Whom: Anton Karpov <toxa@toxahost.ru> +# +# $FreeBSD$ +# + +PORTNAME= graveman +PORTVERSION= 0.3.12.5 +PORTREVISION= 3 +CATEGORIES= sysutils +MASTER_SITES= http://graveman.tuxfamily.org/sources/ +DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(.)$/-\1/} + +MAINTAINER= toxa@toxahost.ru +COMMENT= Another GTK2 frontend for cdrecord, mkisofs, readcd and sox + +LIB_DEPENDS= mng.1:${PORTSDIR}/graphics/libmng + +USE_BZIP2= yes +USE_GMAKE= yes +USE_GETTEXT= yes +GNU_CONFIGURE= yes +USE_X_PREFIX= yes +USE_CDRTOOLS= yes +USE_GNOME= libglade2 intlhack gnomehack gnomeprefix +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ + LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" + +MAN1= graveman.1 + +OPTIONS= MP3 "MP3 Support" off \ + OGG "OGG Support" off \ + DVD "DVD+RW Support" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_MP3) +LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad \ + id3tag.0:${PORTSDIR}/audio/libid3tag +RUN_DEPENDS+= sox:${PORTSDIR}/audio/sox +.else +CONFIGURE_ARGS+=--disable-mp3 +.endif + +.if defined(WITH_OGG) +LIB_DEPENDS+= ogg.5:${PORTSDIR}/audio/libogg \ + vorbis.4:${PORTSDIR}/audio/libvorbis +.else +CONFIGURE_ARGS+=--disable-ogg +.endif + +.if defined(WITH_DVD) +RUN_DEPENDS+= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools +.endif + +.include <bsd.port.post.mk> |