ba072d1713
Approved by: miwi (mentor)
40 lines
824 B
Makefile
40 lines
824 B
Makefile
# New ports collection makefile for: cmp3
|
|
# Date created: 10 April 1999
|
|
# Whom: Chris Piazza <cpiazza@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cmp3
|
|
PORTVERSION= 2.0.p6
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/2.0-pre6
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.p/pre/}
|
|
|
|
MAINTAINER= sylvio@FreeBSD.org
|
|
COMMENT= An ncurses based frontend to mpg123
|
|
|
|
RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-kenrevs
|
|
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTDOCS= README sample.cmp3rc
|
|
PLIST_FILES= bin/cmp3 bin/rnmp3
|
|
|
|
.if !defined(WITHOUT_VORBIS)
|
|
RUN_DEPENDS+= ogg123:${PORTSDIR}/audio/vorbis-tools
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for docs in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|