1e5186ff94
- fixes a bug in shared memory handling where SYSVSHM segments wouldn't be destroyed on program exit, - prefers memory sharing by mmap() over SYSVSHM, - bumps PORTREVISION due to the fix above, - contains miscellaneous clean-ups and autoconf-related changes. PR: 25942 Submitted by: Christian Weisgerber <naddy@mips.inka.de> Approved by: Theo van Klaveren <t.vanklaveren@student.utwente.nl>
33 lines
810 B
Makefile
33 lines
810 B
Makefile
# New ports collection makefile for: vorbis-tools
|
|
# Date created: 18 October 2000
|
|
# Whom: t.vanklaveren@student.utwente.nl
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vorbis-tools
|
|
PORTVERSION= 1.0b4
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.vorbis.com/files/beta4/unix/ \
|
|
http://home.student.utwente.nl/t.vanklaveren/distfiles/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/b/beta/}
|
|
|
|
MAINTAINER= naddy@mips.inka.de
|
|
|
|
LIB_DEPENDS= ao.1:${PORTSDIR}/audio/libao \
|
|
ogg.1:${PORTSDIR}/audio/libogg \
|
|
vorbis.0:${PORTSDIR}/audio/libvorbis
|
|
|
|
USE_AUTOCONF= yes
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --with-ao=${LOCALBASE} \
|
|
--with-ogg=${LOCALBASE} \
|
|
--with-vorbis=${LOCALBASE}
|
|
|
|
MAN1= ogg123.1 oggenc.1
|
|
|
|
.include <bsd.port.mk>
|