diff options
author | naddy <naddy@FreeBSD.org> | 2002-02-04 06:07:46 +0800 |
---|---|---|
committer | naddy <naddy@FreeBSD.org> | 2002-02-04 06:07:46 +0800 |
commit | 280dc68b5ce3353c8ca61e651ccaa08f569f7b64 (patch) | |
tree | 8a26e84d3368392d90d20115e28242de86385d6d /audio/vorbis-tools | |
parent | 962e9f881f62f7e02e759bca8afa6b0ef4d1b183 (diff) | |
download | freebsd-ports-gnome-280dc68b5ce3353c8ca61e651ccaa08f569f7b64.tar.gz freebsd-ports-gnome-280dc68b5ce3353c8ca61e651ccaa08f569f7b64.tar.zst freebsd-ports-gnome-280dc68b5ce3353c8ca61e651ccaa08f569f7b64.zip |
* remove libogg dependency already implied by libvorbis one
* add iconv dependency
* simplify configure call
Diffstat (limited to 'audio/vorbis-tools')
-rw-r--r-- | audio/vorbis-tools/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/audio/vorbis-tools/Makefile b/audio/vorbis-tools/Makefile index 03db2bd17328..35428c0f959f 100644 --- a/audio/vorbis-tools/Makefile +++ b/audio/vorbis-tools/Makefile @@ -7,6 +7,7 @@ PORTNAME= vorbis-tools PORTVERSION= 1.0.r3 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= audio MASTER_SITES= http://www.xiph.org/ogg/vorbis/download/ \ @@ -17,15 +18,13 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/rc/} MAINTAINER= naddy@FreeBSD.org LIB_DEPENDS= ao.3:${PORTSDIR}/audio/libao \ - ogg.3:${PORTSDIR}/audio/libogg \ - vorbis.1:${PORTSDIR}/audio/libvorbis \ - curl.2:${PORTSDIR}/ftp/curl + curl.2:${PORTSDIR}/ftp/curl \ + iconv.2:${PORTSDIR}/converters/iconv \ + vorbis.1:${PORTSDIR}/audio/libvorbis GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-ao=${LOCALBASE} \ - --with-ogg=${LOCALBASE} \ - --with-vorbis=${LOCALBASE} \ - --with-curl=${LOCALBASE} +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" MAN1= ogg123.1 oggenc.1 ogginfo.1 vcut.1 vorbiscomment.1 |