4cc4990180
form specific optimization, ... (Disable asm code, thus make compilable with gcc 2.95 on 4.x so C++ programs on 4.x can link to the shared library).
39 lines
959 B
Makefile
39 lines
959 B
Makefile
# New ports collection makefile for: theora
|
|
# Date created: 09 februari 2003
|
|
# Whom: Koop Mast <kwm@rainbow-runner.nl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libtheora
|
|
DISTVERSION= 1.0alpha7
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://downloads.xiph.org/releases/theora/ \
|
|
http://distfiles.master.finkmirrors.net/
|
|
|
|
MAINTAINER= rainer.alves@gmail.com
|
|
COMMENT= Theora video codec for the Ogg multimedia streaming system
|
|
|
|
LIB_DEPENDS= vorbis.3:${PORTSDIR}/audio/libvorbis
|
|
|
|
USE_BZIP2= yes
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include " \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
LIBS="${PTHEAD_LIBS}"
|
|
CONFIGURE_ARGS+=--disable-sdltest \
|
|
--enable-shared
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500035
|
|
CONFIGURE_ARGS+=--disable-asm
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \
|
|
${WRKSRC}/examples/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|doc||g' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.post.mk>
|