diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-08 14:15:31 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-08 14:15:31 +0000 |
commit | a143e720cb3e2e068d9d159243c82955a08f95bd (patch) | |
tree | f2315eac54a680e7c24f32b2d5c237090e4dfccb /audio/trm/Makefile | |
parent | 475424df69e5093be56efd491fbf514ea398a65b (diff) |
Notes
Diffstat (limited to 'audio/trm/Makefile')
-rw-r--r-- | audio/trm/Makefile | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/audio/trm/Makefile b/audio/trm/Makefile index 5cb891da0081..13d12e5e6713 100644 --- a/audio/trm/Makefile +++ b/audio/trm/Makefile @@ -7,7 +7,7 @@ PORTNAME= trm PORTVERSION= 0.2.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MASTER_SITES= ftp://ftp.musicbrainz.org/pub/musicbrainz/ \ ftp://ftp.nl.musicbrainz.org/ \ @@ -16,17 +16,24 @@ MASTER_SITES= ftp://ftp.musicbrainz.org/pub/musicbrainz/ \ MAINTAINER= ports@FreeBSD.org COMMENT= TRM generator to generate acoustic fingerprints -BUILD_DEPENDS= madplay:${PORTSDIR}/audio/mad -LIB_DEPENDS= musicbrainz.3:${PORTSDIR}/audio/libmusicbrainz \ +BUILD_DEPENDS= madplay:${PORTSDIR}/audio/madplay +LIB_DEPENDS= id3-3.8.3:${PORTSDIR}/audio/id3lib \ + musicbrainz.3:${PORTSDIR}/audio/libmusicbrainz \ vorbisfile.4:${PORTSDIR}/audio/libvorbis -USE_GMAKE= yes USE_REINPLACE= yes +USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + PLIST_FILES= bin/trm post-patch: @${REINPLACE_CMD} -e 's,-ldl,,g' ${WRKSRC}/configure +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/trm ${PREFIX}/bin + .include <bsd.port.mk> |