diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-25 00:13:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-25 00:13:06 +0000 |
commit | d733aefc5e85870b88cfcd55b67a42775cffa345 (patch) | |
tree | 93987cdaffb00b433ea14372729aa27e518f7fbf /media-video/streamdvd | |
parent | Stable on sparc. (Manifest recommit) (diff) | |
download | gentoo-2-d733aefc5e85870b88cfcd55b67a42775cffa345.tar.gz gentoo-2-d733aefc5e85870b88cfcd55b67a42775cffa345.tar.bz2 gentoo-2-d733aefc5e85870b88cfcd55b67a42775cffa345.zip |
initial ebuild
Diffstat (limited to 'media-video/streamdvd')
-rw-r--r-- | media-video/streamdvd/ChangeLog | 8 | ||||
-rw-r--r-- | media-video/streamdvd/files/digest-streamdvd-0.3 | 1 | ||||
-rw-r--r-- | media-video/streamdvd/metadata.xml | 12 | ||||
-rw-r--r-- | media-video/streamdvd/streamdvd-0.3.ebuild | 30 |
4 files changed, 51 insertions, 0 deletions
diff --git a/media-video/streamdvd/ChangeLog b/media-video/streamdvd/ChangeLog new file mode 100644 index 000000000000..a9c95038ddb9 --- /dev/null +++ b/media-video/streamdvd/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for media-video/streamdvd +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/streamdvd/ChangeLog,v 1.1 2004/02/25 00:13:06 vapier Exp $ + +*streamdvd-0.3 (24 Feb 2004) + + 24 Feb 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/media-video/streamdvd/files/digest-streamdvd-0.3 b/media-video/streamdvd/files/digest-streamdvd-0.3 new file mode 100644 index 000000000000..e153cce82fe9 --- /dev/null +++ b/media-video/streamdvd/files/digest-streamdvd-0.3 @@ -0,0 +1 @@ +MD5 78e29078b1cee9494a7386ab4ad82c85 streamdvd-0.3.tar.gz 22063 diff --git a/media-video/streamdvd/metadata.xml b/media-video/streamdvd/metadata.xml new file mode 100644 index 000000000000..9ebd17a10b62 --- /dev/null +++ b/media-video/streamdvd/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>media-video</herd> +<longdescription> +StreamDVD is a fast tool to backup Video DVDs 'on the fly', there will +be no ripping, demultiplexing, recoding, remultiplexing .... You can +select the wanted title, chapters, video, audio and subpicture streams +and also a resize factor and StreamDVD will write a 'ready to author' +vob file to stdout. +</longdescription> +</pkgmetadata> diff --git a/media-video/streamdvd/streamdvd-0.3.ebuild b/media-video/streamdvd/streamdvd-0.3.ebuild new file mode 100644 index 000000000000..b05aeb8b8011 --- /dev/null +++ b/media-video/streamdvd/streamdvd-0.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/streamdvd/streamdvd-0.3.ebuild,v 1.1 2004/02/25 00:13:06 vapier Exp $ + +DESCRIPTION="fast tool to backup Video DVDs 'on the fly'" +HOMEPAGE="http://www.badabum.de/streamdvd.html" +SRC_URI="http://www.badabum.de/down/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="media-libs/libdvdread" + +S=${WORKDIR}/StreamDVD-${PV} + +src_unpack() { + unpack ${A} + cd ${S} + sed -i "s: -g : ${CFLAGS} :" Makefile +} + +src_compile() { + emake || die +} + +src_install() { + dobin streamdvd || die + dodoc README +} |