1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00

- Use LATEST_LINK instead of defining the version in PORTNAME

- Fix LICENSE - it's LGPL21 not GPLv2
- Remove shlib version from LIB_DEPENDS

- while I'm here, respect LOCALBASE and thus remove needless dependency
  on pkg-config. pkg-config is often used by cmake as auxiliary tool
  to populate search paths. Until stuff is located at standard location,
  there is no need for pkg-config utility. [1]

PR:		ports/169573
Submitted by:	Jason E. Hale (maintainer)
Approved by:	maintainer via irc [1]
This commit is contained in:
Max Brazhnikov 2012-07-27 13:28:20 +00:00
parent 759f3158d1
commit 0887a68cc9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=301614

View File

@ -5,32 +5,33 @@
# $FreeBSD$
#
PORTNAME= libmusicbrainz3
PORTNAME= libmusicbrainz
PORTVERSION= 3.0.3
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= audio
MASTER_SITES= ftp://ftp.musicbrainz.org/pub/musicbrainz/ \
http://uk.musicbrainz.org/pub/musicbrainz/ \
http://ftp.osuosl.org/pub/musicbrainz/
DISTNAME= ${PORTNAME:S/3//}-${PORTVERSION}
MAINTAINER= bsdkaffee@gmail.com
COMMENT= MusicBrainz client library for audio metadata lookup
LICENSE= LGPL21
LIB_DEPENDS= discid:${PORTSDIR}/audio/libdiscid \
neon.27:${PORTSDIR}/www/neon29
neon:${PORTSDIR}/www/neon29
LATEST_LINK= ${PORTNAME}3
USE_CMAKE= yes
USE_GNOME= pkgconfig
USE_LDCONFIG= yes
MAKE_JOBS_SAFE= yes
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING.txt
post-patch:
${REINPLACE_CMD} -e '/pkgconfig/s|$${LIB_INSTALL_DIR}|libdata|' \
-e '/CppUnit/d' ${WRKSRC}/CMakeLists.txt
${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
${WRKSRC}/cmake/modules/*.cmake
.include <bsd.port.mk>