Date: Thu, 14 Nov 2013 01:23:48 +0000 (UTC) From: "Vanilla I. Shu" <vanilla@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333735 - head/sysutils/graveman Message-ID: <201311140123.rAE1NmZd082959@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vanilla Date: Thu Nov 14 01:23:48 2013 New Revision: 333735 URL: http://svnweb.freebsd.org/changeset/ports/333735 Log: 1: Suppport STAGEDIR. 2: change to new LIB_DEPENDS format. 3: change to latest OPTIONS framework. Modified: head/sysutils/graveman/Makefile head/sysutils/graveman/pkg-plist Modified: head/sysutils/graveman/Makefile ============================================================================== --- head/sysutils/graveman/Makefile Thu Nov 14 01:21:37 2013 (r333734) +++ head/sysutils/graveman/Makefile Thu Nov 14 01:23:48 2013 (r333735) @@ -11,43 +11,26 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:C/\. MAINTAINER= ports@FreeBSD.org COMMENT= Another GTK2 frontend for cdrecord, mkisofs, readcd, and sox -LIB_DEPENDS= mng:${PORTSDIR}/graphics/libmng +LIB_DEPENDS= libmng.so:${PORTSDIR}/graphics/libmng BUILD_DEPENDS= cdrecord:${PORTSDIR}/sysutils/cdrtools -RUN_DEPENDS= cdrecord:${PORTSDIR}/sysutils/cdrtools +RUN_DEPENDS:= ${BUILD_DEPENDS} USE_BZIP2= yes -USE_GMAKE= yes GNU_CONFIGURE= yes -USES= pathfix pkgconfig gettext +USES= pathfix pkgconfig gettext gmake USE_GNOME= libglade2 intlhack gnomeprefix CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" CPPFLAGS+= -I${LOCALBASE}/include -MAN1= graveman.1 - OPTIONS_DEFINE= MP3 OGG DVD DVD_DESC= DVD+RW support - -NO_STAGE= yes -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MMP3} -LIB_DEPENDS+= mad:${PORTSDIR}/audio/libmad \ - id3tag:${PORTSDIR}/audio/libid3tag -RUN_DEPENDS+= sox:${PORTSDIR}/audio/sox -.else -CONFIGURE_ARGS+=--disable-mp3 -.endif - -.if ${PORT_OPTIONS:MOGG} -LIB_DEPENDS+= ogg:${PORTSDIR}/audio/libogg \ - vorbis:${PORTSDIR}/audio/libvorbis -.else -CONFIGURE_ARGS+=--disable-ogg -.endif - -.if ${PORT_OPTIONS:MDVD} -RUN_DEPENDS+= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools -.endif +MP3_LIB_DEPENDS= libmad.so:${PORTSDIR}/audio/libmad \ + libid3tag.so:${PORTSDIR}/audio/libid3tag +MP3_RUN_DEPENDS= sox:${PORTSDIR}/audio/sox +MP3_CONFIGURE_OFF= --disable-mp3 +OGG_LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg \ + libvorbis.so:${PORTSDIR}/audio/libvorbis +OGG_CONFIGURE_OFF= --disable-ogg +DVD_RUN_DEPENDS= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools .include <bsd.port.mk> Modified: head/sysutils/graveman/pkg-plist ============================================================================== --- head/sysutils/graveman/pkg-plist Thu Nov 14 01:21:37 2013 (r333734) +++ head/sysutils/graveman/pkg-plist Thu Nov 14 01:23:48 2013 (r333735) @@ -1,4 +1,5 @@ bin/graveman +man/man1/graveman.1.gz share/applications/graveman.desktop share/pixmaps/graveman48.png share/graveman/dialog-question3.png
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311140123.rAE1NmZd082959>