mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
eca78ec61b
Requested by: edwin
55 lines
1.1 KiB
Makefile
55 lines
1.1 KiB
Makefile
# New ports collection makefile for: asunder
|
|
# Date created: 14 September 2007
|
|
# Whom: frase@frase.id.au
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= asunder
|
|
PORTVERSION= 1.6.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://littlesvr.ca/asunder/releases/
|
|
|
|
MAINTAINER= frase@frase.id.au
|
|
COMMENT= A lightweight GTK+ CD ripper
|
|
|
|
LIB_DEPENDS= cddb.4:${PORTSDIR}/audio/libcddb
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/cdparanoia:${PORTSDIR}/audio/cdparanoia
|
|
|
|
OPTIONS= LAME "lame support" on \
|
|
OGG "ogg-vorbis support" on \
|
|
FLAC "FLAC support" on \
|
|
WAVPACK "WavPack support" off
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gtk20
|
|
|
|
PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_LAME)
|
|
RUN_DEPENDS+= lame:${PORTSDIR}/audio/lame
|
|
.endif
|
|
|
|
.if defined(WITH_OGG)
|
|
RUN_DEPENDS+= oggenc:${PORTSDIR}/audio/vorbis-tools
|
|
.endif
|
|
|
|
.if defined(WITH_FLAC)
|
|
RUN_DEPENDS+= flac:${PORTSDIR}/audio/flac
|
|
.endif
|
|
|
|
.if defined(WITH_WAVPACK)
|
|
RUN_DEPENDS+= wavpack:${PORTSDIR}/audio/wavpack
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|