From owner-svn-ports-all@FreeBSD.ORG Sat Oct 27 16:01:05 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D94A86D6; Sat, 27 Oct 2012 16:01:05 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B3BE28FC17; Sat, 27 Oct 2012 16:01:05 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9RG15IZ008538; Sat, 27 Oct 2012 16:01:05 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9RG15QW008532; Sat, 27 Oct 2012 16:01:05 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210271601.q9RG15QW008532@svn.freebsd.org> From: "Jason E. Hale" Date: Sat, 27 Oct 2012 16:01:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306506 - in head/audio: . acoustid-fingerprinter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Oct 2012 16:01:06 -0000 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@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 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 +@dirrmtry share/icons/hicolor/scalable/apps +@dirrmtry share/icons/hicolor/scalable +@dirrmtry share/icons/hicolor/48x48/apps +@dirrmtry share/icons/hicolor/48x48 +@dirrmtry share/icons/hicolor/32x32/apps +@dirrmtry share/icons/hicolor/32x32 +@dirrmtry share/icons/hicolor/256x256/apps +@dirrmtry share/icons/hicolor/256x256 +@dirrmtry share/icons/hicolor/24x24/apps +@dirrmtry share/icons/hicolor/24x24 +@dirrmtry share/icons/hicolor/16x16/apps +@dirrmtry share/icons/hicolor/16x16 +@dirrmtry share/icons/hicolor/128x128/apps +@dirrmtry share/icons/hicolor/128x128 +@dirrmtry share/icons/hicolor +@dirrmtry share/icons +@dirrmtry share/applications