mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
20ab0e623a
This port was using an unecessary roll-your-own extraction to control where it was extracted. Just let the standard mechanisms extract the second tarball and move in the post-extract target. Also: * minor alignment * pet portlint * reset maintainer (MIA for 16 months)
75 lines
1.8 KiB
Makefile
75 lines
1.8 KiB
Makefile
# Created by: trevor
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= streamripper
|
|
PORTVERSION= 1.64.6
|
|
PORTREVISION= 4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20%28current%29/${PORTVERSION} \
|
|
http://gd.tuwien.ac.at/hci/cdk/:cdk
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:DEFAULT \
|
|
cdk-${CDK_VERSION}.tgz:cdk
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Splits SHOUTcast stream into tracks
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libmad.so:${PORTSDIR}/audio/libmad \
|
|
libtre.so:${PORTSDIR}/textproc/libtre
|
|
|
|
OPTIONS_DEFINE= FAAD VORBIS
|
|
OPTIONS_DEFAULT=FAAD VORBIS
|
|
|
|
USES= iconv pkgconfig
|
|
USE_GNOME= glib20
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --without-included-libmad \
|
|
--without-included-tre \
|
|
--with-included-argv \
|
|
--with-included-cdk
|
|
|
|
PLIST_FILES= bin/streamripper \
|
|
man/man1/streamripper.1.gz
|
|
|
|
CFLAGS+= -DANSI_PROTOTYPES
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -Lcdk-${CDK_VERSION} -L${LOCALBASE}/lib
|
|
|
|
CDK_VERSION= 5.0-20060507
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ! ${PORT_OPTIONS:MFAAD}
|
|
CONFIGURE_ARGS+=ac_cv_lib_faad_NeAACDecDecode2=no
|
|
.else
|
|
LIB_DEPENDS+= libfaad.so:${PORTSDIR}/audio/faad
|
|
.endif
|
|
|
|
.if ! ${PORT_OPTIONS:MVORBIS}
|
|
CONFIGURE_ARGS+=--without-ogg
|
|
.else
|
|
LIB_DEPENDS+= libvorbis.so:${PORTSDIR}/audio/libvorbis
|
|
.endif
|
|
|
|
post-extract:
|
|
${MV} ${WRKDIR}/cdk-${CDK_VERSION} ${WRKSRC}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/if test/s|==|=|g ; \
|
|
s|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC}/cdk-${CDK_VERSION} && ${SETENV} CC="${CC}" \
|
|
CFLAGS="${CFLAGS}" ${SH} ./configure
|
|
|
|
pre-build:
|
|
@cd ${WRKSRC}/cdk-${CDK_VERSION} && ${SETENV} ${MAKE_ENV} \
|
|
${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${ALL_TARGET}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/streamripper ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/streamripper.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|