mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
57 lines
1.5 KiB
Makefile
57 lines
1.5 KiB
Makefile
# Created by: thierry@pompo.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xvidcap
|
|
DISTVERSION= 1.1.4p1
|
|
PORTREVISION= 11
|
|
PORTEPOCH= 1
|
|
CATEGORIES= sysutils multimedia
|
|
MASTER_SITES= SF/${PORTNAME}/OldFiles
|
|
|
|
MAINTAINER= thierry@FreeBSD.org
|
|
COMMENT= Capture your X display to individual frames or MPEG video
|
|
|
|
BUILD_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian \
|
|
xml2po:${PORTSDIR}/textproc/gnome-doc-utils \
|
|
texi2html:${PORTSDIR}/textproc/texi2html
|
|
# To be reactivated when ffmpeg-devel will install libswscale.
|
|
#LIB_DEPENDS= avutil.1:${PORTSDIR}/multimedia/ffmpeg-devel
|
|
LIB_DEPENDS= mp3lame.0:${PORTSDIR}/audio/lame
|
|
RUN_DEPENDS= animate:${PORTSDIR}/graphics/ImageMagick
|
|
|
|
GNU_CONFIGURE= yes
|
|
# Remove MAKE="${GMAKE}" after ffmpeg-devel's upgrade
|
|
CONFIGURE_ENV= LOCALBASE="${LOCALBASE}" \
|
|
MAKE="${GMAKE}"
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
CONFIGURE_ARGS= --with-forced-embedded-ffmpeg # To be removed after ffmpeg-devel's upgrade
|
|
|
|
USE_GMAKE= yes # To be removed after ffmpeg-devel's upgrade
|
|
USE_GNOME= glib20 libglade2
|
|
USES= gettext pkgconfig
|
|
USE_XORG= x11 xmu
|
|
INSTALLS_OMF= yes
|
|
|
|
.if !defined(CFLAGS) || ${CFLAGS:M-fno-strict-aliasing*} == ""
|
|
CFLAGS+= -O2 -fno-strict-aliasing
|
|
.endif
|
|
|
|
PORTDOCS= AUTHORS ChangeLog README
|
|
NULLDOCS= COPYING
|
|
|
|
MAN1= xvidcap.1
|
|
|
|
NO_STAGE= yes
|
|
pre-configure:
|
|
.if defined(NOPORTDOCS)
|
|
${REINPLACE_CMD} -e 's|pkgdataDATA install-xvidcapdocDATA|pkgdataDATA|' \
|
|
${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${RM} ${NULLDOCS:S|^|${DOCSDIR}/|}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|