d7f303acf2
- Some Makefile changes in favor to use USE_CDRTOOLS and USE_GETTEXT. PR: ports/138323 Submitted by: Sylvio Cesar <scjamorim@bsd.com.br> Approved by: maintainer timeout (more than 2 weeks)
44 lines
982 B
Makefile
44 lines
982 B
Makefile
# New ports collection makefile for: mp3c
|
|
# Date created: 11 Jul 2002
|
|
# Whom: Joris Vandalon <joris@vandalon.nl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mp3c
|
|
PORTVERSION= 0.31
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ftp://ftp.wspse.de/linux/wspse/:src
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:src \
|
|
cdrip.sh
|
|
EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= joris@vandalon.nl
|
|
COMMENT= A CD to mp3c converter with a console frontend
|
|
|
|
RUN_DEPENDS= mp3info:${PORTSDIR}/audio/mp3info
|
|
|
|
USE_CDRTOOLS= yes
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= "--prefix=${PREFIX}"
|
|
|
|
MAN1= mp3c.1
|
|
MANCOMPRESSED= no
|
|
|
|
.if defined(WITHOUT_NLS)
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.else
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|rcd0d|acd0|g' ${WRKSRC}/src/conf.c
|
|
@${REINPLACE_CMD} -e 's|/dev/cdrom|/dev/acd0|g' ${WRKSRC}/src/conf.c
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${DISTDIR}/cdrip.sh ${LOCALBASE}/bin
|
|
|
|
.include <bsd.port.mk>
|