diff options
author | dillo <dillo@pkgsrc.org> | 2002-10-02 18:13:16 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2002-10-02 18:13:16 +0000 |
commit | a3cb029db92f6332913849f52ad154c4855caca7 (patch) | |
tree | f1f4f93621a6c1e5db560b38bc3986840703aff3 /audio/tremor/Makefile | |
parent | 40b7a0920f3d2943430553e6f39fe1a0f2cadd69 (diff) | |
download | pkgsrc-a3cb029db92f6332913849f52ad154c4855caca7.tar.gz |
make use of new automake.mk
Diffstat (limited to 'audio/tremor/Makefile')
-rw-r--r-- | audio/tremor/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/audio/tremor/Makefile b/audio/tremor/Makefile index ca6d62a5209..906d38e91a5 100644 --- a/audio/tremor/Makefile +++ b/audio/tremor/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2002/09/24 09:49:03 chris Exp $ +# $NetBSD: Makefile,v 1.3 2002/10/02 18:13:16 dillo Exp $ DISTNAME= tremor_snapshot_020923 PKGNAME= tremor-1.0.2 @@ -11,16 +11,19 @@ MAINTAINER= chris@netbsd.org HOMEPAGE= http://www.xiph.org/ogg/vorbis/ COMMENT= Fixed point decoding library for the Ogg Vorbis audio encoding format -BUILD_DEPENDS= autoconf>=2.13:../../devel/autoconf - +AUTOMAKE_REQD= 1.4 GNU_CONFIGURE= yes USE_GMAKE= yes USE_LIBTOOL= yes -LIBTOOL_OVERRIDE= ${WRKSRC}/libtool +#LIBTOOL_OVERRIDE= ${WRKSRC}/libtool PLIST_SUBST+= DISTNAME=${DISTNAME} pre-configure: - cd ${WRKSRC} && ${SH} ./autogen.sh + cd ${WRKSRC} && ${ACLOCAL} + cd ${WRKSRC} && ${LOCALBASE}/bin/libtoolize --automake + cd ${WRKSRC} && ${AUTOMAKE} --add-missing + cd ${WRKSRC} && ${AUTOCONF} +.include "../../mk/automake.mk" .include "../../mk/bsd.pkg.mk" |