Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Oct 2013 06:35:44 +0000 (UTC)
From:      "Jason E. Hale" <jhale@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r329865 - head/audio/acoustid-fingerprinter
Message-ID:  <201310090635.r996ZitS069103@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhale
Date: Wed Oct  9 06:35:43 2013
New Revision: 329865
URL: http://svnweb.freebsd.org/changeset/ports/329865

Log:
  - Support staging
  - Convert LIB_DEPENDS to new syntax
  - Update MASTER_SITES

Modified:
  head/audio/acoustid-fingerprinter/Makefile

Modified: head/audio/acoustid-fingerprinter/Makefile
==============================================================================
--- head/audio/acoustid-fingerprinter/Makefile	Wed Oct  9 06:26:00 2013	(r329864)
+++ head/audio/acoustid-fingerprinter/Makefile	Wed Oct  9 06:35:43 2013	(r329865)
@@ -4,23 +4,24 @@ PORTNAME=	acoustid-fingerprinter
 PORTVERSION=	0.6
 PORTREVISION=	1
 CATEGORIES=	audio
-MASTER_SITES=	http://cloud.github.com/downloads/lalinsky/${PORTNAME}/
+MASTER_SITES=	http://bitbucket.org/acoustid/${PORTNAME}/downloads/ \
+		http://cloud.github.com/downloads/lalinsky/${PORTNAME}/
 
 MAINTAINER=	jhale@FreeBSD.org
 COMMENT=	AcoustID audio fingerprint submission tool
 
 LICENSE=	GPLv2
 
-LIB_DEPENDS=	chromaprint:${PORTSDIR}/audio/chromaprint \
-		tag:${PORTSDIR}/audio/taglib \
-		avcodec${FFMPEG_SUFFIX}:${PORTSDIR}/multimedia/ffmpeg${FFMPEG_SUFFIX}
+LIB_DEPENDS=	libchromaprint.so:${PORTSDIR}/audio/chromaprint \
+		libtag.so:${PORTSDIR}/audio/taglib \
+		libavcodec${FFMPEG_SUFFIX}.so:${PORTSDIR}/multimedia/ffmpeg${FFMPEG_SUFFIX}
 
-NO_STAGE=	yes
 USES=		cmake
 USE_QT4=	gui network \
 		qmake_build moc_build rcc_build uic_build
 INSTALLS_ICONS=	yes
 
+FETCH_ARGS=	-Fpr
 CMAKE_ARGS=	-DFFMPEG_SUFFIX:STRING=${FFMPEG_SUFFIX}
 FFMPEG_SUFFIX?=	1
 
@@ -30,10 +31,10 @@ post-patch:
 
 post-install:
 .for i in 16 24 32 48 128 256
-	@${MKDIR} ${PREFIX}/share/icons/hicolor/${i}x${i}/apps
-	${INSTALL_DATA} ${WRKSRC}/images/acoustid-fp-${i}.png ${PREFIX}/share/icons/hicolor/${i}x${i}/apps/acoustid-fingerprinter.png
+	@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps
+	${INSTALL_DATA} ${WRKSRC}/images/acoustid-fp-${i}.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps/acoustid-fingerprinter.png
 .endfor
-	@${MKDIR} ${PREFIX}/share/icons/hicolor/scalable/apps
-	${INSTALL_DATA} ${WRKSRC}/images/acoustid-fingerprinter.svg ${PREFIX}/share/icons/hicolor/scalable/apps
+	@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps
+	${INSTALL_DATA} ${WRKSRC}/images/acoustid-fingerprinter.svg ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps
 
 .include <bsd.port.mk>



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