diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-06-02 17:18:14 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-06-02 17:18:14 +0100 |
commit | 7b9f15840068dfaeea5684f8a1af1fe460dfa14c (patch) | |
tree | 112eea4497761c0227537330b58f9c7e0af3f9d8 /media-video/vobcopy | |
parent | 0bff53119f08d677db6c1a991bd30741682a8a08 (diff) |
gentoo resync : 02.06.2018
Diffstat (limited to 'media-video/vobcopy')
-rw-r--r-- | media-video/vobcopy/Manifest | 2 | ||||
-rw-r--r-- | media-video/vobcopy/vobcopy-1.2.0.ebuild | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/media-video/vobcopy/Manifest b/media-video/vobcopy/Manifest index 84a2d8ceb935..ebffeaf8bbb7 100644 --- a/media-video/vobcopy/Manifest +++ b/media-video/vobcopy/Manifest @@ -1,3 +1,3 @@ DIST vobcopy-1.2.0.tar.bz2 60102 BLAKE2B 7456ded4df8c001678b0c61fedd66ef8f71ac98280894e803b64fccb96d5ed5e6fc44ef207e861c2f5a019f692aafaf676d718b8c1646bbbc48c6cfcc37a1fe5 SHA512 442849e0e4d379d6289011baa9074b89d579323d1d01faa1531f642d5dd4d25bd76b0286741e79da6e13f71b13ae8f86795c67059b47067d108b00a7b77945a5 -EBUILD vobcopy-1.2.0.ebuild 665 BLAKE2B d4f34c9d198641e65cac68f089b0f508043d4315765ce6f7e2d9193e16262343e884fa4ff25ab9e95dd108d6236863b3a0adcd5943a1424082194676b4faa37f SHA512 c404d952748996a0a73c5c001f395e3cef860bb060dd7eaa9ec5827f8db7cff500d7de6ed0cf7e8cd26921e7ff49176bbf9d588cf3edaba4fcd354c25dffe62c +EBUILD vobcopy-1.2.0.ebuild 632 BLAKE2B 61219bb9a40f2b752ee0d4bc78cdb6c91a5372e80c680ea7c2ca5204529df0b4ce9ccc8fa4bef70461860ca52583845379717a952d9596352a1a41279ca19ec0 SHA512 5c6f2b40713c75694c37c7d5957d4f1cf5ba705169afb83c45de9b4063a438213b1635fdd23dbc5a52727a4d46712af6beca9b62922e85353064a31e605cb522 MISC metadata.xml 255 BLAKE2B 84855d12acedab301e8e709820ef74f658689209ce914cad2c71d11f4248a7d3356109d93573ed675698031eca1e0b6e0372a61c2a43a9f09840e295f94b74ef SHA512 92b56f4d9c86ad69341e67e8cc74db0bd068e45afdf2f3d3f9ea410fc5e64f3476143b656f2cb3d26b97ae01a967d71766952eba22e2278aab907c20b00ae0e9 diff --git a/media-video/vobcopy/vobcopy-1.2.0.ebuild b/media-video/vobcopy/vobcopy-1.2.0.ebuild index fe6ab57ce9e7..f51dff5679b7 100644 --- a/media-video/vobcopy/vobcopy-1.2.0.ebuild +++ b/media-video/vobcopy/vobcopy-1.2.0.ebuild @@ -1,10 +1,9 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 -inherit toolchain-funcs +EAPI=6 -IUSE="" +inherit toolchain-funcs DESCRIPTION="copies DVD .vob files to harddisk, decrypting them on the way" HOMEPAGE="http://lpn.rnbhq.org/" @@ -13,17 +12,18 @@ SRC_URI="http://lpn.rnbhq.org/download/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc ppc64 sparc x86" +IUSE="" DEPEND=">=media-libs/libdvdread-0.9.4" +RDEPEND="" src_configure() { tc-export CC - ./configure.sh --with-lfs + ./configure.sh --with-lfs || die "Configure 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" + dobin vobcopy + doman vobcopy.1 + dodoc Changelog README Release-Notes TODO alternative_programs.txt } |