mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
38 lines
719 B
Makefile
38 lines
719 B
Makefile
# Created by: t.vanklaveren@student.utwente.nl
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libvorbis
|
|
PORTVERSION= 1.3.3
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://downloads.xiph.org/releases/vorbis/
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
COMMENT= Audio compression codec library
|
|
|
|
LIB_DEPENDS= ogg:${PORTSDIR}/audio/libogg
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
USE_GNOME= gnomehack
|
|
USE_LDCONFIG= yes
|
|
USE_XZ= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-ogg=${LOCALBASE} \
|
|
--disable-docs # don't rebuild
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
MAKE_ENV= DOC=doc
|
|
.else
|
|
MAKE_ENV= DOC=""
|
|
.endif
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check
|
|
|
|
.include <bsd.port.mk>
|