mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
f440390503
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
33 lines
706 B
Makefile
33 lines
706 B
Makefile
# New ports collection makefile for: libao
|
|
# Date created: 18 October 2000
|
|
# Whom: t.vanklaveren@student.utwente.nl
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libao
|
|
PORTVERSION= 20001018
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://home.student.utwente.nl/t.vanklaveren/distfiles/
|
|
DISTNAME= ao-${PORTVERSION}
|
|
|
|
MAINTAINER= t.vanklaveren@student.utwente.nl
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_AUTOMAKE= yes
|
|
WRKSRC= ${WRKDIR}/ao
|
|
|
|
ACLOCAL?= ${LOCALBASE}/bin/aclocal
|
|
AUTOHEADER?= ${LOCALBASE}/bin/autoheader
|
|
AUTOMAKE_ARGS= --add-missing
|
|
|
|
post-patch:
|
|
cd ${WRKSRC} && ${ACLOCAL}
|
|
cd ${WRKSRC} && ${AUTOHEADER}
|
|
cd ${WRKSRC} && ${AUTOMAKE} --add-missing
|
|
cd ${WRKSRC} && ${AUTOCONF}
|
|
|
|
.include <bsd.port.mk>
|