- Convert to new options framework

- Remove ABI version from LIB_DEPENDS
- Use bsd.port.options.mk

Approved by:	eadler, bapt (mentors, implicit)
This commit is contained in:
Bryan Drewery 2012-08-30 14:38:11 +00:00
parent 72e4b80c71
commit e72582bcad
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=303376
2 changed files with 12 additions and 12 deletions

View File

@ -198,6 +198,7 @@ NTLM_DESC?= NTLM authentication support
NUMPY_DESC?= NumPy mathematical computing support
ODBC_DESC?= ODBC backend
ODF_DESC?= ODF file support
OGG_DESC?= OGG support
OPENAL_DESC?= OpenAL support
OPENCV_DESC?= OpenCV support
OPENEXR_DESC?= HDR support via OpenEXR

View File

@ -15,7 +15,7 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(.)$/-\1/}
MAINTAINER= ports@FreeBSD.org
COMMENT= Another GTK2 frontend for cdrecord, mkisofs, readcd, and sox
LIB_DEPENDS= mng.1:${PORTSDIR}/graphics/libmng
LIB_DEPENDS= mng:${PORTSDIR}/graphics/libmng
USE_BZIP2= yes
USE_GMAKE= yes
@ -29,29 +29,28 @@ CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
MAN1= graveman.1
OPTIONS= MP3 "MP3 Support" off \
OGG "OGG Support" off \
DVD "DVD+RW Support" off
OPTIONS_DEFINE= MP3 OGG DVD
DVD_DESC= DVD+RW support
.include <bsd.port.pre.mk>
.include <bsd.port.options.mk>
.if defined(WITH_MP3)
LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad \
id3tag.0:${PORTSDIR}/audio/libid3tag
.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 defined(WITH_OGG)
.if ${PORT_OPTIONS:MOGG}
LIB_DEPENDS+= ogg:${PORTSDIR}/audio/libogg \
vorbis.4:${PORTSDIR}/audio/libvorbis
vorbis:${PORTSDIR}/audio/libvorbis
.else
CONFIGURE_ARGS+=--disable-ogg
.endif
.if defined(WITH_DVD)
.if ${PORT_OPTIONS:MDVD}
RUN_DEPENDS+= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>