diff options
author | asami <asami@FreeBSD.org> | 2000-11-16 13:06:29 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 2000-11-16 13:06:29 +0000 |
commit | 97813f2e4b6086b07dddd1d7060ce9094fddfed3 (patch) | |
tree | f1976e7d678ba30bc7fc74dc0a206baeb478df04 /audio | |
parent | e241ea065727dff3bbede0b7e8b6ee4f8f757201 (diff) | |
download | FreeBSD-ports-97813f2e4b6086b07dddd1d7060ce9094fddfed3.zip FreeBSD-ports-97813f2e4b6086b07dddd1d7060ce9094fddfed3.tar.gz |
Add AUTO{CONF,MAKE}_{ENV,ARGS}. Among other things, this will fix
audio/libao, audio/libogg, audio/libvorbis and audio/vorbis-tools
which need --add-missing to be passed to automake.
PR: 22610
Submitted by: Theo van Klaveren <t.vanklaveren@student.utwente.nl>, roger, sobomax
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libao/Makefile | 1 | ||||
-rw-r--r-- | audio/libogg/Makefile | 1 | ||||
-rw-r--r-- | audio/libvorbis/Makefile | 3 | ||||
-rw-r--r-- | audio/vorbis-tools/Makefile | 5 |
4 files changed, 7 insertions, 3 deletions
diff --git a/audio/libao/Makefile b/audio/libao/Makefile index cd5d535..8278952 100644 --- a/audio/libao/Makefile +++ b/audio/libao/Makefile @@ -21,6 +21,7 @@ WRKSRC= ${WRKDIR}/ao ACLOCAL?= ${LOCALBASE}/bin/aclocal AUTOHEADER?= ${LOCALBASE}/bin/autoheader +AUTOMAKE_ARGS= --add-missing post-patch: cd ${WRKSRC} && ${ACLOCAL} diff --git a/audio/libogg/Makefile b/audio/libogg/Makefile index 09f1780..e98e31d 100644 --- a/audio/libogg/Makefile +++ b/audio/libogg/Makefile @@ -21,6 +21,7 @@ WRKSRC= ${WRKDIR}/ogg ACLOCAL?= ${LOCALBASE}/bin/aclocal AUTOHEADER?= ${LOCALBASE}/bin/autoheader +AUTOMAKE_ARGS= --add-missing post-patch: cd ${WRKSRC} && ${ACLOCAL} diff --git a/audio/libvorbis/Makefile b/audio/libvorbis/Makefile index 4a07df6..c3ede23 100644 --- a/audio/libvorbis/Makefile +++ b/audio/libvorbis/Makefile @@ -24,7 +24,8 @@ WRKSRC= ${WRKDIR}/vorbis ACLOCAL?= ${LOCALBASE}/bin/aclocal AUTOHEADER?= ${LOCALBASE}/bin/autoheader CFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ARGS+= --with-ogg=${LOCALBASE} +CONFIGURE_ARGS= --with-ogg=${LOCALBASE} +AUTOMAKE_ARGS= --add-missing post-patch: cd ${WRKSRC} && ${ACLOCAL} diff --git a/audio/vorbis-tools/Makefile b/audio/vorbis-tools/Makefile index 73826a8..18b146e 100644 --- a/audio/vorbis-tools/Makefile +++ b/audio/vorbis-tools/Makefile @@ -25,8 +25,9 @@ WRKSRC= ${WRKDIR}/vorbis-tools ACLOCAL?= ${LOCALBASE}/bin/aclocal AUTOHEADER?= ${LOCALBASE}/bin/autoheader CFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ARGS+= --with-ogg=${LOCALBASE} \ - --with-ao=${LOCALBASE} +CONFIGURE_ARGS= --with-ogg=${LOCALBASE} \ + --with-ao=${LOCALBASE} +AUTOMAKE_ARGS= --add-missing MAN1= ogg123.1 |