mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
f4716ba607
* Improve description.
33 lines
570 B
Makefile
33 lines
570 B
Makefile
# Created by: t.vanklaveren@student.utwente.nl
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libogg
|
|
PORTVERSION= 1.3.1
|
|
PORTEPOCH= 4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://downloads.xiph.org/releases/ogg/
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
COMMENT= Ogg bitstream library
|
|
|
|
USES= pathfix
|
|
USE_AUTOTOOLS= libtool
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.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>
|