freebsd-ports/multimedia/dvdauthor/Makefile
Rusmir Dusko e32eeb8bc9 These ports are no longer used or cared for.
comms/spandsp-devel

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Strip library
- Fix typo

deskutils/kupfer

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Change install, cosmetical changes

deskutils/rubrica

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Use tar:bzip2 instead of USE_BZIP2=yes
- Strip libraries
- Change REINPLACE and install, cosmetical changes

graphics/Hermes

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Use tar:bzip2 instead of USE_BZIP2=yes
- Don't silence warnings
- Remove TODO and TODO.conversion from DOCS
- Strip library

graphics/aoi

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@

graphics/autoq3d

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@

graphics/box

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Remove TODO from DOCS

graphics/boxer

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Cosmetical changes

graphics/cbrpager

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@

graphics/cbview

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@

graphics/cbviewer

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@

graphics/eos-movrec

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Change pkg-plist, remove mtree

graphics/evolvotron

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Break lines around 80 characters

graphics/fracplanet

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Remove TODO from DOCS
- Change Desktop entry file
- Break lines around 80 characters

graphics/gnofract4d

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@

graphics/icon-slicer

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Use the new format for LIB_DEPENDS
- Remove TODO from DOCS

graphics/lcdtest

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Simplify dependency for x11-fonts/liberation-fonts-ttf

graphics/multican

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Remove TODO from DOCS

graphics/photopc

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Cosmetical changes

graphics/pngcheck

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@

graphics/pngwriter

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@

graphics/pstoedit

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Strip libraries

graphics/skencil

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Cosmetical changes
- Strip libraries

misc/boxes

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Cosmetical changes
- Mute RM and MKDIR

misc/explosions

- Bump PORTREVISION for MAINTAINER change
- Remove FTP master site
- Reset maintainer to ports@

misc/wmweather+

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Use the new format for LIB_DEPENDS

multimedia/dvdauthor

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Remove TODO from DOCS

multimedia/dvdid

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Strip library

multimedia/freetuxtv

- Change Makefile header, use my name and @FreeBSD.org email
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@

multimedia/gtk-youtube-viewer

- Change Makefile header, use my name and @FreeBSD.org email
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Break lines around 80 characters

net/wlan2eth

- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Cosmetical changes
2014-04-28 21:31:31 +00:00

75 lines
1.7 KiB
Makefile

# Created by: pb@FreeBSD.org
# $FreeBSD$
PORTNAME= dvdauthor
PORTVERSION= 0.7.1
PORTREVISION= 3
CATEGORIES= multimedia
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Makes a DVD file structure from one or more MPEG2 streams
LICENSE= GPLv2
LIB_DEPENDS= libdvdread.so:${PORTSDIR}/multimedia/libdvdread \
libfribidi.so:${PORTSDIR}/converters/fribidi \
libfreetype.so:${PORTSDIR}/print/freetype2 \
libpng15.so:${PORTSDIR}/graphics/png \
libexpat.so:${PORTSDIR}/textproc/expat2 \
libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig
WRKSRC= ${WRKDIR}/${PORTNAME}
USES= gmake iconv pkgconfig
USE_GNOME= libxml2
GNU_CONFIGURE= yes
CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib
PORTDOCS= *
DOCSRCDIR1= ${WRKSRC}
DOC_FILES1= AUTHORS ChangeLog README
DOCSRCDIR2= ${WRKDIR}
DOC_FILES2= README.FreeBSD
OPTIONS_DEFINE= DOCS IMAGEMAGICK VIDEO-FORMAT
OPTIONS_SINGLE= VIDEO-FORMAT
OPTIONS_SINGLE_VIDEO-FORMAT= NTSC PAL
VIDEO-FORMAT_DESC= Use default video format
NTSC_DESC= Default video format NTSC
PAL_DESC= Default video format PAL
SUB_FILES= README.FreeBSD
IMAGEMAGICK_LIB_DEPENDS= libMagick++.so:${PORTSDIR}/graphics/ImageMagick
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNTSC}
.if ${PORT_OPTIONS:MVIDEO-FORMAT}
CONFIGURE_ENV+= --enable-default-video-format=NTSC
.endif
.endif
.if ${PORT_OPTIONS:MPAL}
.if ${PORT_OPTIONS:MVIDEO-FORMAT}
CONFIGURE_ENV+= --enable-default-video-format=PAL
.endif
.endif
pre-configure:
.if ! ${PORT_OPTIONS:MIMAGEMAGICK}
@${REINPLACE_CMD} 's|usemagick=1|usemagick=0|g' \
${WRKSRC}/configure
.endif
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>