freebsd-ports/multimedia/streamanalyze/Makefile
Jean-Yves Lefort 6137272f61 Add streamanalyze.
StreamAnalyze is a little helper for people using StreamDVD to backup movies.
Giving the video/audio/subpicture tracks you want to save, StreamAnalyze will
calculate if the backup would fit on a dvd-r and, if not, print a shrink
factor to reduce the video size.

Before using StreamAnalyze you should call 'lsdvd' or 'tcprobe' to get an
overview of what is available on the video DVD you want to backup.

WWW: http://www.badabum.de/streamdvd.html

PR:		ports/88248
Submitted by:	Heiner Eichmann <h.eichmann@gmx.de>
2005-11-01 13:02:13 +00:00

35 lines
878 B
Makefile

# New ports collection makefile for: streamanalyze
# Date created: 2005-10-30
# Whom: Heiner Eichmann
#
# $FreeBSD$
#
PORTNAME= streamanalyze
PORTVERSION= 0.4
CATEGORIES= multimedia
MASTER_SITES= http://www.badabum.de/down/
MAINTAINER= h.eichmann@gmx.de
COMMENT= Shrink-factor calculator for StreamDVD
LIB_DEPENDS= dvdread:${PORTSDIR}/multimedia/libdvdread
WRKSRC= ${WRKDIR}/StreamAnalyze
USE_REINPLACE= yes
PLIST_FILES= bin/streamanalyze
PORTDOCS= README
post-patch:
@${REINPLACE_CMD} -e 's|gcc -g -Wall|${CC} ${CFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib|' ${WRKSRC}/Makefile
@${REINPLACE_CMD} -e '/#include <getopt\.h>/ d' ${WRKSRC}/streamanalyze.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/streamanalyze ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.include <bsd.port.mk>