diff options
author | dillo <dillo> | 2002-10-02 18:13:16 +0000 |
---|---|---|
committer | dillo <dillo> | 2002-10-02 18:13:16 +0000 |
commit | c674aaa7d88d606a2970f881c2693296f47135bf (patch) | |
tree | f1f4f93621a6c1e5db560b38bc3986840703aff3 /audio/tremor | |
parent | 90e9b26ac3fbc6d7aa7712e8f615e6f5da07328b (diff) | |
download | pkgsrc-c674aaa7d88d606a2970f881c2693296f47135bf.tar.gz |
make use of new automake.mk
Diffstat (limited to 'audio/tremor')
-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" |