mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
03b8d4a69d
* Tolerate single-entry codebooks. * Fix decoder crash with invalid input. * Fix encoder crash with non-positive sample rates. * Fix issues in vorbisfile's seek bisection code. * Spec errata. * Reject multiple headers of the same type.
33 lines
792 B
Makefile
33 lines
792 B
Makefile
# Created by: t.vanklaveren@student.utwente.nl
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libvorbis
|
|
PORTVERSION= 1.3.5
|
|
PORTEPOCH= 3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://downloads.xiph.org/releases/vorbis/
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
COMMENT= Audio compression codec library
|
|
|
|
LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg
|
|
|
|
USES= libtool pathfix tar:xz
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-ogg=${LOCALBASE}
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-stage:
|
|
cd ${STAGEDIR}${PREFIX}/share/doc && ${MV} ${DISTNAME} libvorbis
|
|
${LN} -s libvorbis.so.0 ${STAGEDIR}${PREFIX}/lib/libvorbis.so.4
|
|
${LN} -s libvorbisfile.so.3 ${STAGEDIR}${PREFIX}/lib/libvorbisfile.so.6
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check
|
|
|
|
.include <bsd.port.mk>
|