1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/audio/vorbis-tools/Makefile
Satoshi Asami f440390503 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
2000-11-16 13:06:29 +00:00

51 lines
1.4 KiB
Makefile

# New ports collection makefile for: vorbis-tools
# Date created: 18 October 2000
# Whom: t.vanklaveren@student.utwente.nl
#
# $FreeBSD$
#
PORTNAME= vorbis-tools
PORTVERSION= 20001018
CATEGORIES= audio
MASTER_SITES= http://home.student.utwente.nl/t.vanklaveren/distfiles/
DISTNAME= vorbis-tools-${PORTVERSION}
MAINTAINER= t.vanklaveren@student.utwente.nl
LIB_DEPENDS= ao.0:${PORTSDIR}/audio/libao \
ogg.0:${PORTSDIR}/audio/libogg \
vorbis.0:${PORTSDIR}/audio/libvorbis
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_LIBTOOL= yes
USE_AUTOMAKE= yes
WRKSRC= ${WRKDIR}/vorbis-tools
ACLOCAL?= ${LOCALBASE}/bin/aclocal
AUTOHEADER?= ${LOCALBASE}/bin/autoheader
CFLAGS+= -I${LOCALBASE}/include
CONFIGURE_ARGS= --with-ogg=${LOCALBASE} \
--with-ao=${LOCALBASE}
AUTOMAKE_ARGS= --add-missing
MAN1= ogg123.1
post-build:
# This is probably evil, and should be in a Makefile.
cd ${WRKSRC}/oggenc && ${CC} ${CFLAGS} -c getopt1.c
cd ${WRKSRC}/ogg123 && ${CC} ${CFLAGS} -c ogg123.c -I../oggenc -I${LOCALBASE}/include
cd ${WRKSRC}/ogg123 && ${CC} ${LDFLAGS} -o ogg123 ogg123.o ../oggenc/getopt.o ../oggenc/getopt1.o -L${LOCALBASE}/lib -logg -lvorbis -lao -lvorbisfile
post-install:
${INSTALL_PROGRAM} ${WRKSRC}/ogg123/ogg123 ${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/ogg123/ogg123.1 ${PREFIX}/man/man1/
post-patch:
cd ${WRKSRC} && ${ACLOCAL}
cd ${WRKSRC} && ${AUTOHEADER}
cd ${WRKSRC} && ${AUTOMAKE} --add-missing
cd ${WRKSRC} && ${AUTOCONF}
.include <bsd.port.mk>