svn commit: r306506 - in head/audio: . acoustid-fingerprinter
Jason E. Hale
jhale at FreeBSD.org
Sat Oct 27 16:01:06 UTC 2012
Author: jhale
Date: Sat Oct 27 16:01:04 2012
New Revision: 306506
URL: http://svn.freebsd.org/changeset/ports/306506
Log:
AcoustID fingerprinter is a cross-platform GUI application that
uses Chromaprint to submit audio fingerprints from your music
collection to the AcoustID database. Only tagged audio files are
submitted. Files tagged by MusicBrainz applications such as Picard
or Jaikoz are preferred, but it will submit fingerprints for any
files that have tags such as track title, artist name, album name,
etc.
WWW: http://acoustid.org/fingerprinter
Approved by: makc, avilla (mentors, implicit)
Feature safe: yes
Added:
head/audio/acoustid-fingerprinter/
head/audio/acoustid-fingerprinter/Makefile (contents, props changed)
head/audio/acoustid-fingerprinter/distinfo (contents, props changed)
head/audio/acoustid-fingerprinter/pkg-descr (contents, props changed)
head/audio/acoustid-fingerprinter/pkg-plist (contents, props changed)
Modified:
head/audio/Makefile
Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile Sat Oct 27 15:48:57 2012 (r306505)
+++ head/audio/Makefile Sat Oct 27 16:01:04 2012 (r306506)
@@ -11,6 +11,7 @@
SUBDIR += abcmidi
SUBDIR += abcselect
SUBDIR += abraca
+ SUBDIR += acoustid-fingerprinter
SUBDIR += adplay
SUBDIR += afsp
SUBDIR += aften
Added: head/audio/acoustid-fingerprinter/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/acoustid-fingerprinter/Makefile Sat Oct 27 16:01:04 2012 (r306506)
@@ -0,0 +1,35 @@
+# $FreeBSD$
+
+PORTNAME= acoustid-fingerprinter
+PORTVERSION= 0.6
+CATEGORIES= audio
+MASTER_SITES= http://cloud.github.com/downloads/lalinsky/${PORTNAME}/
+
+MAINTAINER= jhale at FreeBSD.org
+COMMENT= AcoustID audio fingerprint submission tool
+
+LICENSE= GPLv2
+
+LIB_DEPENDS= chromaprint:${PORTSDIR}/audio/chromaprint \
+ tag:${PORTSDIR}/audio/taglib \
+ avcodec:${PORTSDIR}/multimedia/ffmpeg
+
+USE_CMAKE= yes
+USE_QT4= gui network \
+ qmake_build moc_build rcc_build uic_build
+INSTALLS_ICONS= yes
+MAKE_JOBS_SAFE= yes
+
+post-patch:
+ ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
+ ${WRKSRC}/cmake/modules/*.cmake
+
+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
+.endfor
+ @${MKDIR} ${PREFIX}/share/icons/hicolor/scalable/apps
+ ${INSTALL_DATA} ${WRKSRC}/images/acoustid-fingerprinter.svg ${PREFIX}/share/icons/hicolor/scalable/apps
+
+.include <bsd.port.mk>
Added: head/audio/acoustid-fingerprinter/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/acoustid-fingerprinter/distinfo Sat Oct 27 16:01:04 2012 (r306506)
@@ -0,0 +1,2 @@
+SHA256 (acoustid-fingerprinter-0.6.tar.gz) = c0165d4210a181b2baa5e72159bf3f1a9b76398da8794305ddf8e1923ca76f32
+SIZE (acoustid-fingerprinter-0.6.tar.gz) = 93897
Added: head/audio/acoustid-fingerprinter/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/acoustid-fingerprinter/pkg-descr Sat Oct 27 16:01:04 2012 (r306506)
@@ -0,0 +1,9 @@
+AcoustID fingerprinter is a cross-platform GUI application that
+uses Chromaprint to submit audio fingerprints from your music
+collection to the AcoustID database. Only tagged audio files are
+submitted. Files tagged by MusicBrainz applications such as Picard
+or Jaikoz are preferred, but it will submit fingerprints for any
+files that have tags such as track title, artist name, album name,
+etc.
+
+WWW: http://acoustid.org/fingerprinter
Added: head/audio/acoustid-fingerprinter/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/acoustid-fingerprinter/pkg-plist Sat Oct 27 16:01:04 2012 (r306506)
@@ -0,0 +1,26 @@
+bin/acoustid-fingerprinter
+share/applications/acoustid-fingerprinter.desktop
+share/icons/hicolor/128x128/apps/acoustid-fingerprinter.png
+share/icons/hicolor/16x16/apps/acoustid-fingerprinter.png
+share/icons/hicolor/24x24/apps/acoustid-fingerprinter.png
+share/icons/hicolor/256x256/apps/acoustid-fingerprinter.png
+share/icons/hicolor/32x32/apps/acoustid-fingerprinter.png
+share/icons/hicolor/48x48/apps/acoustid-fingerprinter.png
+share/icons/hicolor/scalable/apps/acoustid-fingerprinter.svg
+ at dirrmtry share/icons/hicolor/scalable/apps
+ at dirrmtry share/icons/hicolor/scalable
+ at dirrmtry share/icons/hicolor/48x48/apps
+ at dirrmtry share/icons/hicolor/48x48
+ at dirrmtry share/icons/hicolor/32x32/apps
+ at dirrmtry share/icons/hicolor/32x32
+ at dirrmtry share/icons/hicolor/256x256/apps
+ at dirrmtry share/icons/hicolor/256x256
+ at dirrmtry share/icons/hicolor/24x24/apps
+ at dirrmtry share/icons/hicolor/24x24
+ at dirrmtry share/icons/hicolor/16x16/apps
+ at dirrmtry share/icons/hicolor/16x16
+ at dirrmtry share/icons/hicolor/128x128/apps
+ at dirrmtry share/icons/hicolor/128x128
+ at dirrmtry share/icons/hicolor
+ at dirrmtry share/icons
+ at dirrmtry share/applications
More information about the svn-ports-head
mailing list