diff options
author | Christian Weisgerber <naddy@FreeBSD.org> | 2002-02-03 22:07:46 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@FreeBSD.org> | 2002-02-03 22:07:46 +0000 |
commit | d086779181723133cc6bb973fb5d247ee0ac2481 (patch) | |
tree | ff32e9b450f776e4b4d1c0b11b4eccfbb998b2bf /audio/vorbis-tools | |
parent | 33d6650dcc9cfb8551fdd2632ee6aa2a89c0d1e4 (diff) | |
download | ports-d086779181723133cc6bb973fb5d247ee0ac2481.tar.gz ports-d086779181723133cc6bb973fb5d247ee0ac2481.zip |
* remove libogg dependency already implied by libvorbis one
* add iconv dependency
* simplify configure call
Notes
Notes:
svn path=/head/; revision=54176
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 |