diff options
author | alexbl <alexbl@FreeBSD.org> | 2007-01-01 10:27:54 +0800 |
---|---|---|
committer | alexbl <alexbl@FreeBSD.org> | 2007-01-01 10:27:54 +0800 |
commit | 13c225414b4b59698108d4295de7493177bc5aed (patch) | |
tree | f278511eb3bfd415e063959383f2e2e6863b2211 /multimedia | |
parent | a55383752553c300ef9b624f9e3fe0fa161d510d (diff) | |
download | freebsd-ports-graphics-13c225414b4b59698108d4295de7493177bc5aed.tar.gz freebsd-ports-graphics-13c225414b4b59698108d4295de7493177bc5aed.tar.zst freebsd-ports-graphics-13c225414b4b59698108d4295de7493177bc5aed.zip |
- add iso2mkv 0.8.3
iso2mkv is software for automated DVD to XviD/vorbis MKV video conversion.
Gives almost total control on the process of video compression at maximum
quality, while being simple and straightforward to use (a kind of
'life-hack'). The intended audience is advanced end-users and the script is
not user-error-proof.
Based on mplayer, mencoder, oggenc or lame, and mkvmerge (if not properly
installed, won't work). This is only a shell script that wraps the other
programs. If you can watch the DVD with MPlayer, you can compress it with
iso2mkv. Other used programs (hopefully included in most GNU/Linux
distributions as well a FreeBSD :) ) are basename, bc, nice, stat.
WWW: http://5ko.free.fr/en/iso2mkv.html
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/Makefile | 1 | ||||
-rw-r--r-- | multimedia/iso2mkv/Makefile | 40 | ||||
-rw-r--r-- | multimedia/iso2mkv/distinfo | 3 | ||||
-rw-r--r-- | multimedia/iso2mkv/pkg-descr | 13 |
4 files changed, 57 insertions, 0 deletions
diff --git a/multimedia/Makefile b/multimedia/Makefile index ab319cc5d64..7f3a2873337 100644 --- a/multimedia/Makefile +++ b/multimedia/Makefile @@ -94,6 +94,7 @@ SUBDIR += hayes SUBDIR += helixplayer SUBDIR += iriverter + SUBDIR += iso2mkv SUBDIR += istanbul SUBDIR += jahshaka SUBDIR += k9copy diff --git a/multimedia/iso2mkv/Makefile b/multimedia/iso2mkv/Makefile new file mode 100644 index 00000000000..56d21106aa6 --- /dev/null +++ b/multimedia/iso2mkv/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: iso2mkv +# Date created: 31 Dec 2006 +# Whom: Alexander Botero-Lowry <alexbl@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= iso2mkv +PORTVERSION= 0.8.3 +CATEGORIES= multimedia +MASTER_SITES= http://5ko.free.fr/dl/ +DISTNAME= ${PORTNAME} + +MAINTAINER= alexbl@FreeBSD.org +COMMENT= Front-end shell script to convert DVD image, device, or VIDEO_TS to mkv with xvid and ogg or mp3 audio + +RUN_DEPENDS= mencoder:${PORTSDIR}/mutlimedia/mplayer \ + bash:${PORTSDIR}/shells/bash \ + mkvmerge:${PORTSDIR}/multimedia/mkvtoolnix \ + lame:${PORTSDIR}/audio/lame \ + oggenc:${PORTSDIR}/audio/vorbis-tools \ + normalize:${PORTSDIR}/audio/normalize + +USE_BZIP2= yes +NO_BUILD= yes + +PLIST_FILES= bin/iso2mkv + +post-patch: + @${REINPLACE_CMD} -e 's|stat -c %s|stat -f %z|g' \ + ${WRKSRC}/iso2mkv + @${REINPLACE_CMD} -e 's|/bin/bash|${LOCALBASE}/bin/bash|g' \ + ${WRKSRC}/iso2mkv + @${REINPLACE_CMD} -e 's|normalize-audio|normalize|g' \ + ${WRKSRC}/iso2mkv + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/iso2mkv ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/multimedia/iso2mkv/distinfo b/multimedia/iso2mkv/distinfo new file mode 100644 index 00000000000..af8fd9908c8 --- /dev/null +++ b/multimedia/iso2mkv/distinfo @@ -0,0 +1,3 @@ +MD5 (iso2mkv.tar.bz2) = 883554bda38173e072b30893a18980b5 +SHA256 (iso2mkv.tar.bz2) = ca1dfd54b8841123bca9f8168e08673a0707a409f9c0ffbb0ef39d84e4ae6b6a +SIZE (iso2mkv.tar.bz2) = 6296 diff --git a/multimedia/iso2mkv/pkg-descr b/multimedia/iso2mkv/pkg-descr new file mode 100644 index 00000000000..d74584375d9 --- /dev/null +++ b/multimedia/iso2mkv/pkg-descr @@ -0,0 +1,13 @@ +iso2mkv is software for automated DVD to XviD/vorbis MKV video conversion. +Gives almost total control on the process of video compression at maximum +quality, while being simple and straightforward to use (a kind of +'life-hack'). The intended audience is advanced end-users and the script is +not user-error-proof. + +Based on mplayer, mencoder, oggenc or lame, and mkvmerge (if not properly +installed, won't work). This is only a shell script that wraps the other +programs. If you can watch the DVD with MPlayer, you can compress it with +iso2mkv. Other used programs (hopefully included in most GNU/Linux +distributions as well a FreeBSD :) ) are basename, bc, nice, stat. + +WWW: http://5ko.free.fr/en/iso2mkv.html |