diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-01-11 21:19:12 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-01-11 21:19:12 +0000 |
commit | a4e89451572a25f821d13d8f757c4cd8516a5735 (patch) | |
tree | e75ac74d41e0cc147d1c31894e1467f802f24c43 /media-video/vobcopy | |
parent | stable x86, bug 300241 (diff) | |
download | gentoo-2-a4e89451572a25f821d13d8f757c4cd8516a5735.tar.gz gentoo-2-a4e89451572a25f821d13d8f757c4cd8516a5735.tar.bz2 gentoo-2-a4e89451572a25f821d13d8f757c4cd8516a5735.zip |
non-maintainer version bump (ack'd by aballier)
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'media-video/vobcopy')
-rw-r--r-- | media-video/vobcopy/ChangeLog | 10 | ||||
-rw-r--r-- | media-video/vobcopy/vobcopy-1.2.0.ebuild | 30 |
2 files changed, 38 insertions, 2 deletions
diff --git a/media-video/vobcopy/ChangeLog b/media-video/vobcopy/ChangeLog index d334ba75454b..70168c13fb91 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.44 2008/12/30 16:16:13 bluebird Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/vobcopy/ChangeLog,v 1.45 2010/01/11 21:19:12 mr_bones_ Exp $ + +*vobcopy-1.2.0 (11 Jan 2010) + + 11 Jan 2010; Michael Sterrett <mr_bones_@gentoo.org> + +vobcopy-1.2.0.ebuild: + non-maintainer version bump (ack'd by aballier) 30 Dec 2008; Friedrich Oslage <bluebird@gentoo.org> vobcopy-1.1.2.ebuild: Stable on sparc, bug #251309 diff --git a/media-video/vobcopy/vobcopy-1.2.0.ebuild b/media-video/vobcopy/vobcopy-1.2.0.ebuild new file mode 100644 index 000000000000..6ba24bfd53b0 --- /dev/null +++ b/media-video/vobcopy/vobcopy-1.2.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/vobcopy/vobcopy-1.2.0.ebuild,v 1.1 2010/01/11 21:19:12 mr_bones_ Exp $ + +EAPI=2 +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_configure() { + tc-export CC + ./configure.sh --with-lfs +} + +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" +} |