Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 May 2014 17:48:24 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r355883 - head/audio/streamripper
Message-ID:  <201405301748.s4UHmOGj086985@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Fri May 30 17:48:24 2014
New Revision: 355883
URL: http://svnweb.freebsd.org/changeset/ports/355883
QAT: https://qat.redports.org/buildarchive/r355883/

Log:
  audio/streamripper: Simplify port, reset maintainer, pet portlint
  
  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)

Modified:
  head/audio/streamripper/Makefile
  head/audio/streamripper/pkg-descr

Modified: head/audio/streamripper/Makefile
==============================================================================
--- head/audio/streamripper/Makefile	Fri May 30 17:47:44 2014	(r355882)
+++ head/audio/streamripper/Makefile	Fri May 30 17:48:24 2014	(r355883)
@@ -9,18 +9,17 @@ MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
 		http://gd.tuwien.ac.at/hci/cdk/:cdk
 DISTFILES=	${DISTNAME}${EXTRACT_SUFX}:DEFAULT \
 		cdk-${CDK_VERSION}.tgz:cdk
-EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
 
-MAINTAINER=	sylvio@FreeBSD.org
+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
-
-LICENSE=	GPLv2
+OPTIONS_DEFAULT=FAAD VORBIS
 
 USES=		iconv pkgconfig
 USE_GNOME=	glib20
@@ -42,20 +41,19 @@ CDK_VERSION=	5.0-20060507
 .include <bsd.port.options.mk>
 
 .if ! ${PORT_OPTIONS:MFAAD}
-CONFIGURE_ARGS+=	ac_cv_lib_faad_NeAACDecDecode2=no
+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
+CONFIGURE_ARGS+=--without-ogg
 .else
 LIB_DEPENDS+=	libvorbis.so:${PORTSDIR}/audio/libvorbis
 .endif
 
 post-extract:
-	@cd ${WRKSRC} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \
-		${DISTDIR}/cdk-${CDK_VERSION}.tgz ${EXTRACT_AFTER_ARGS}
+	${MV} ${WRKDIR}/cdk-${CDK_VERSION} ${WRKSRC}
 
 post-patch:
 	@${REINPLACE_CMD} -e '/if test/s|==|=|g ; \

Modified: head/audio/streamripper/pkg-descr
==============================================================================
--- head/audio/streamripper/pkg-descr	Fri May 30 17:47:44 2014	(r355882)
+++ head/audio/streamripper/pkg-descr	Fri May 30 17:48:24 2014	(r355883)
@@ -4,4 +4,4 @@ separate files as they arrive, and names
 ".mp3" to the name of the track.  The tracks can be listened to at
 the user's leisure with an MPEG Layer 3 audio player.
 
-WWW:  http://streamripper.sourceforge.net
+WWW: http://streamripper.sourceforge.net



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405301748.s4UHmOGj086985>