74 lines
2.0 KiB
Makefile
74 lines
2.0 KiB
Makefile
# New ports collection makefile for: libdv
|
|
# Date created: Sun Nov 18 19:42:02 BRST 2001
|
|
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libdv
|
|
PORTVERSION= 1.0.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= baptiste.daroussin@gmail.com
|
|
COMMENT= Quasar DV codec (libdv): software codec for DV video encoding format
|
|
|
|
LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \
|
|
popt.0:${PORTSDIR}/devel/popt
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-gtk
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
|
|
LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \
|
|
PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:${LOCALBASE}/libdata/pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= dubdv.1 dvconnect.1 encodedv.1
|
|
|
|
PORTDOCS= AUTHORS COPYING COPYRIGHT ChangeLog NEWS README \
|
|
README.dvconnect README.encoder TODO
|
|
|
|
OPTIONS+= SDL "Add SDL support" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# XXX - work around compiler bug
|
|
# Optimizations -O{1,s,2,3} work
|
|
# However, lack of -O{1,s,2,3} or -O0 BREAK the build
|
|
# Therefore, make sure we have AT LEAST -O and avoid -O0
|
|
CONFIGURE_ENV+= CFLAGS="-O ${CFLAGS:N-O0}"
|
|
|
|
.if defined(WITH_SDL)
|
|
USE_SDL= sdl
|
|
CONFIGURE_ARGS+= --enable-sdl
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E \
|
|
-e 's|(pkgconfigdir =).+(/pkgconfig)|\1 ${PREFIX}/libdata\2|' \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|stdint.h|sys/types.h|' \
|
|
${WRKSRC}/libdv/dv.h \
|
|
${WRKSRC}/libdv/dv_types.h \
|
|
${WRKSRC}/libdv/headers.c \
|
|
${WRKSRC}/libdv/encode.c
|
|
@${REINPLACE_CMD} -E -e 's|^void swab.+$$||' ${WRKSRC}/libdv/encode.c
|
|
@${REINPLACE_CMD} -e 's|SDL/||' ${WRKSRC}/playdv/display.h
|
|
@${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' ${WRKSRC}/encodedv/dvavi.c \
|
|
${WRKSRC}/encodedv/dvconnect.c
|
|
# XXX - revise at every port update
|
|
# protect popt from prefix changes
|
|
@${REINPLACE_CMD} -E -e 's|(@REQUIRES_NOPKGCONFIG@)|-L${LOCALBASE}/include \1|' \
|
|
${WRKSRC}/libdv.pc.in
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for doc in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|