mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
9a5867f166
Use pathfix instead manually patching
31 lines
806 B
Makefile
31 lines
806 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= liboggz
|
|
DISTVERSION= 1.1.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://downloads.xiph.org/releases/liboggz/ \
|
|
http://wickedmachine.net/mirror/
|
|
|
|
MAINTAINER= jsa@FreeBSD.org
|
|
COMMENT= Simple Ogg API
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
USES= pkgconfig pathfix
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-ogg=${LOCALBASE} --program-transform-name=""
|
|
CONFIGURE_ENV= HAVE_DOCBOOK2HTML=false DOCBOOKTOMAN=false HAVE_DOXYGEN=false HAVE_VALGRIND=false
|
|
|
|
# First REINPLACE_CMD line makes all timestimes relative to localtime, crude hack
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/timezone/0/' \
|
|
${WRKSRC}/src/tools/oggz-chop/httpdate.c \
|
|
${WRKSRC}/src/tools/oggz-chop/httpdate_test.c
|
|
|
|
.include <bsd.port.mk>
|