c6542427d4
-Turn over maintainership -Bump ports that depend on libdvdread since shared lib version rolls back from .5 to .4 -Fix multimedia/ogle build with this version PR: 127849 Submitted by: Ganael LAPLANCHE <ganael.laplanche@martymac.com>
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# New ports collection makefile for: streamdvd
|
|
# Date created: Fri Jul 22 18:30:01 EDT 2005
|
|
# Whom: Serge Gagnon <serge.gagnon@b2b2c.ca>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= streamdvd
|
|
PORTVERSION= 0.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= ftp://quenix2.dyndns.org/FreeBSD/ports/distfiles/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A fast tool to backup Video DVDs 'on the fly'
|
|
|
|
LIB_DEPENDS= dvdread.4:${PORTSDIR}/multimedia/libdvdread
|
|
|
|
WRKSRC= ${WRKDIR}/StreamDVD-${PORTVERSION}
|
|
|
|
PLIST_FILES= bin/streamdvd
|
|
PORTDOCS= README
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|g++ -g -Wall|${CXX} ${CXXFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib|' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e 's|<getopt\.h>|<unistd.h>|' \
|
|
${WRKSRC}/mplex/mplex.cpp ${WRKSRC}/streamdvd.c
|
|
@${REINPLACE_CMD} -e 's|<stdint\.h>|<unistd.h>|' \
|
|
${WRKSRC}/mplex/mjpeg_types.h
|
|
@${REINPLACE_CMD} -e '48s|ZAlphaStream::||' ${WRKSRC}/mplex/zalphastrm.hpp
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/streamdvd ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|