0bfc6d90d1
The dvdauthor package is a simple set of tools for DVD authoring. The idea is to be able to create menus, buttons, chapters, etc. For now functionality is mostly limited to creating DVD filesystems from mpeg streams that were created by mplex -f 8 from mjpegtools 1.6.0 or newer. testing and ok jolan@
38 lines
989 B
Makefile
38 lines
989 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/09/28 06:52:55 jakemsr Exp $
|
|
|
|
COMMENT= creates DVD file structures
|
|
DISTNAME= dvdauthor-0.6.11
|
|
CATEGORIES= multimedia
|
|
|
|
HOMEPAGE= http://dvdauthor.sourceforge.net/
|
|
|
|
MAINTAINER= Jacob Meuser <jakemsr@jakemsr.com>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dvdauthor/}
|
|
|
|
LIB_DEPENDS= dvdread.3::devel/libdvdread \
|
|
fribidi.0::devel/fribidi \
|
|
xml2.5::textproc/libxml \
|
|
Magick.6::graphics/ImageMagick
|
|
|
|
WANTLIB= ICE SM X11 Xext Xt bz2 c freetype iconv jasper jbig \
|
|
jpeg lcms m png tiff z
|
|
|
|
USE_GMAKE= yes
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib" \
|
|
CFLAGS="${CFLAGS} -I${LOCALBASE}/include/libpng"
|
|
MAKE_FLAGS+= BISON="yacc" LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dvdauthor
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/dvdauthor
|
|
|
|
.include <bsd.port.mk>
|