07dd3147c6
and to support the "inet6" option instead. Remaining usage of USE_INET6 was solely for the benefit of the scripts that generate the README.html files. Replace: BUILD_DEFS+= USE_INET6 with BUILD_DEFS+= IPV6_READY and teach the README-generation tools to look for that instead. This nukes USE_INET6 from pkgsrc proper. We leave a tiny bit of code to continue to support USE_INET6 for pkgsrc-wip until it has been nuked from there as well.
38 lines
1,003 B
Makefile
38 lines
1,003 B
Makefile
# $NetBSD: Makefile,v 1.21 2007/09/07 22:12:10 jlam Exp $
|
|
|
|
DISTNAME= vorbis-tools-1.0
|
|
PKGNAME= tremor-tools-1.0.0.8
|
|
PKGREVISION= 8
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.vorbis.com/files/1.0/unix/
|
|
|
|
MAINTAINER= chris@NetBSD.org
|
|
HOMEPAGE= http://www.vorbis.com/
|
|
COMMENT= Ogg Vorbis encoder and player
|
|
|
|
BUILD_DEFS+= IPV6_READY
|
|
|
|
CONFLICTS= vorbis-[0-9]*
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= automake14 gmake
|
|
CONFIGURE_ARGS+= --with-ogg-prefix=${BUILDLINK_PREFIX.libogg} \
|
|
--with-vorbis-prefix=${BUILDLINK_PREFIX.libvorbis} \
|
|
--with-ao-prefix=${BUILDLINK_PREFIX.libao}
|
|
|
|
PLIST_SUBST+= DISTNAME=${DISTNAME:Q}
|
|
|
|
PTHREAD_OPTS+= require
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && automake && autoconf
|
|
|
|
.include "../../audio/libao/buildlink3.mk"
|
|
.include "../../audio/libvorbis/buildlink3.mk"
|
|
.include "../../audio/tremor/buildlink3.mk"
|
|
.include "../../multimedia/libogg/buildlink3.mk"
|
|
.include "../../www/curl/buildlink3.mk"
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|