summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-10-30 08:52:06 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-10-30 08:52:06 +0000
commit1f6dd3274b5e4bd92256cf8f998d4cd8aeee7cf9 (patch)
treec70b85ca5b775cc09d27a6b9d4f7095b2526a6ec /media-video/vobcopy
parentVersion bump, thanks to Triffid Hunter <triffid_hunter@funkmunch.net> for the... (diff)
downloadgentoo-2-1f6dd3274b5e4bd92256cf8f998d4cd8aeee7cf9.tar.gz
gentoo-2-1f6dd3274b5e4bd92256cf8f998d4cd8aeee7cf9.tar.bz2
gentoo-2-1f6dd3274b5e4bd92256cf8f998d4cd8aeee7cf9.zip
Version bump, thanks to Yang Zhao <yangman@gmail.com> for the notice, bug #244855
(Portage version: 2.2_rc12/cvs/Linux 2.6.27.3 x86_64)
Diffstat (limited to 'media-video/vobcopy')
-rw-r--r--media-video/vobcopy/ChangeLog8
-rw-r--r--media-video/vobcopy/vobcopy-1.1.2.ebuild30
2 files changed, 37 insertions, 1 deletions
diff --git a/media-video/vobcopy/ChangeLog b/media-video/vobcopy/ChangeLog
index 906db28ea07c..e97042fed607 100644
--- a/media-video/vobcopy/ChangeLog
+++ b/media-video/vobcopy/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-video/vobcopy
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/vobcopy/ChangeLog,v 1.38 2008/08/17 08:42:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vobcopy/ChangeLog,v 1.39 2008/10/30 08:52:06 aballier Exp $
+
+*vobcopy-1.1.2 (30 Oct 2008)
+
+ 30 Oct 2008; Alexis Ballier <aballier@gentoo.org> +vobcopy-1.1.2.ebuild:
+ Version bump, thanks to Yang Zhao <yangman@gmail.com> for the notice, bug
+ #244855
*vobcopy-1.1.1 (17 Aug 2008)
diff --git a/media-video/vobcopy/vobcopy-1.1.2.ebuild b/media-video/vobcopy/vobcopy-1.1.2.ebuild
new file mode 100644
index 000000000000..8c37e3d2a0db
--- /dev/null
+++ b/media-video/vobcopy/vobcopy-1.1.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-video/vobcopy/vobcopy-1.1.2.ebuild,v 1.1 2008/10/30 08:52:06 aballier Exp $
+
+inherit toolchain-funcs
+
+IUSE=""
+
+DESCRIPTION="copies DVD .vob files to harddisk, decrypting them on the way"
+HOMEPAGE="http://lpn.rnbhq.org/"
+SRC_URI="http://lpn.rnbhq.org/download/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND=">=media-libs/libdvdread-0.9.4"
+
+src_compile() {
+ tc-export CC
+ ./configure.sh --with-lfs
+ emake || die "emake failed"
+}
+
+src_install() {
+ dobin vobcopy || die "dobin failed"
+ doman vobcopy.1 || die "doman failed"
+ dodoc Changelog README Release-Notes TODO alternative_programs.txt \
+ || die "dodoc failed"
+}