Date: Thu, 18 Oct 2012 12:40:03 +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: r306067 - in head/audio: . libcoverart Message-ID: <201210181240.q9ICe3Ll036697@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhale Date: Thu Oct 18 12:40:02 2012 New Revision: 306067 URL: http://svn.freebsd.org/changeset/ports/306067 Log: Libcoverart is a client library for accessing the MusicBrainz cover art archive. WWW: http://coverartarchive.org/ Approved by: makc (mentor) Feature safe: yes Added: head/audio/libcoverart/ head/audio/libcoverart/Makefile (contents, props changed) head/audio/libcoverart/distinfo (contents, props changed) head/audio/libcoverart/pkg-descr (contents, props changed) head/audio/libcoverart/pkg-plist (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Thu Oct 18 12:31:16 2012 (r306066) +++ head/audio/Makefile Thu Oct 18 12:40:02 2012 (r306067) @@ -356,6 +356,7 @@ SUBDIR += libcddb SUBDIR += libcddb-doc SUBDIR += libconvolve + SUBDIR += libcoverart SUBDIR += libdiscid SUBDIR += libdssialsacompat SUBDIR += libfishsound Added: head/audio/libcoverart/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libcoverart/Makefile Thu Oct 18 12:40:02 2012 (r306067) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= libcoverart +PORTVERSION= 1.0.0 +CATEGORIES= audio +MASTER_SITES= https://cloud.github.com/downloads/metabrainz/${PORTNAME}/ + +MAINTAINER= jhale@FreeBSD.org +COMMENT= Library for accessing the MusicBrainz cover art archive + +LICENSE= LGPL20 + +LIB_DEPENDS= jansson:${PORTSDIR}/devel/jansson \ + neon:${PORTSDIR}/www/neon29 + +USE_CMAKE= yes +USE_LDCONFIG= yes + +MAKE_JOBS_SAFE= yes + +# {PROJECT_VERSION} is not a variable nor a typo, just part of the directory name +WRKSRC= ${WRKDIR}/${PORTNAME}-{PROJECT_VERSION} + +post-patch: + ${REINPLACE_CMD} -e '/pkgconfig/s|$${LIB_INSTALL_DIR}|libdata|' \ + ${WRKSRC}/CMakeLists.txt + ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ + ${WRKSRC}/cmake/modules/*.cmake + +.include <bsd.port.mk> Added: head/audio/libcoverart/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libcoverart/distinfo Thu Oct 18 12:40:02 2012 (r306067) @@ -0,0 +1,2 @@ +SHA256 (libcoverart-1.0.0.tar.gz) = e4cb78939003a4b5e5c4db68e42e86fbbbea5e69d3166b43ca01a7065916a121 +SIZE (libcoverart-1.0.0.tar.gz) = 57950 Added: head/audio/libcoverart/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libcoverart/pkg-descr Thu Oct 18 12:40:02 2012 (r306067) @@ -0,0 +1,4 @@ +Libcoverart is a client library for accessing the MusicBrainz cover +art archive. + +WWW: http://coverartarchive.org/ Added: head/audio/libcoverart/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libcoverart/pkg-plist Thu Oct 18 12:40:02 2012 (r306067) @@ -0,0 +1,15 @@ +include/coverart/CoverArt.h +include/coverart/HTTPFetch.h +include/coverart/Image.h +include/coverart/ImageList.h +include/coverart/ReleaseInfo.h +include/coverart/Thumbnails.h +include/coverart/Type.h +include/coverart/TypeList.h +include/coverart/caa_c.h +include/coverart/defines.h +lib/libcoverart.so +lib/libcoverart.so.0 +lib/libcoverart.so.0.0.1 +libdata/pkgconfig/libcoverart.pc +@dirrm include/coverart
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210181240.q9ICe3Ll036697>