diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-10 19:44:00 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-10 19:44:00 +0000 |
commit | e64464461b2448857e917bced492982966c44cfd (patch) | |
tree | 0081d926d8071755f4b90813f377f82250ad3bf2 /media-video | |
parent | Drop .la files, bug #386665 by Ago. Drop old. (diff) | |
download | gentoo-2-e64464461b2448857e917bced492982966c44cfd.tar.gz gentoo-2-e64464461b2448857e917bced492982966c44cfd.tar.bz2 gentoo-2-e64464461b2448857e917bced492982966c44cfd.zip |
Use more recent ebuild API.
(Portage version: 2.2.0_alpha64/cvs/Linux x86_64)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/dvdbackup/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/dvdbackup/dvdbackup-0.4.1.ebuild | 23 |
2 files changed, 15 insertions, 15 deletions
diff --git a/media-video/dvdbackup/ChangeLog b/media-video/dvdbackup/ChangeLog index 9c6832820504..9b557b6a1c9d 100644 --- a/media-video/dvdbackup/ChangeLog +++ b/media-video/dvdbackup/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/dvdbackup -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdbackup/ChangeLog,v 1.26 2010/09/01 19:41:40 billie Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdbackup/ChangeLog,v 1.27 2011/10/10 19:44:00 ssuominen Exp $ + + 10 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> dvdbackup-0.4.1.ebuild: + Use more recent ebuild API. 01 Sep 2010; Daniel Pielmeier <billie@gentoo.org> dvdbackup-0.4.1.ebuild: Fix dependencies and configuration. diff --git a/media-video/dvdbackup/dvdbackup-0.4.1.ebuild b/media-video/dvdbackup/dvdbackup-0.4.1.ebuild index 0035ea6675db..e52b370536c1 100644 --- a/media-video/dvdbackup/dvdbackup-0.4.1.ebuild +++ b/media-video/dvdbackup/dvdbackup-0.4.1.ebuild @@ -1,31 +1,28 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdbackup/dvdbackup-0.4.1.ebuild,v 1.4 2010/09/01 19:41:40 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdbackup/dvdbackup-0.4.1.ebuild,v 1.5 2011/10/10 19:44:00 ssuominen Exp $ -EAPI="2" +EAPI=4 DESCRIPTION="Backup content from DVD to hard disk" HOMEPAGE="http://dvdbackup.sourceforge.net/" -SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.bz2" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" IUSE="nls" -DEPEND=">=media-libs/libdvdread-4.1.3_p1217 +RDEPEND=">=media-libs/libdvdread-4.2.0_pre nls? ( virtual/libintl )" -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +DOCS=( AUTHORS ChangeLog NEWS README ) src_configure() { econf \ $(use_enable nls) \ - --disable-dependency-tracking \ --disable-rpath \ - --docdir="/usr/share/doc/${PF}" -} - -src_install() { - emake DESTDIR="${D}" install || die 'emake install failed' - dodoc AUTHORS ChangeLog NEWS README || die 'dodoc failed' + --docdir=/usr/share/doc/${PF} } |