Gentoo Archives: gentoo-commits

From: "Daniel Pielmeier (billie)" <billie@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/dvdbackup: dvdbackup-0.4.1.ebuild ChangeLog
Date: Wed, 01 Sep 2010 19:41:49
Message-Id: 20100901194140.1D84320051@flycatcher.gentoo.org
1 billie 10/09/01 19:41:40
2
3 Modified: dvdbackup-0.4.1.ebuild ChangeLog
4 Log:
5 Fix dependencies and configuration.
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.4 media-video/dvdbackup/dvdbackup-0.4.1.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdbackup/dvdbackup-0.4.1.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdbackup/dvdbackup-0.4.1.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdbackup/dvdbackup-0.4.1.ebuild?r1=1.3&r2=1.4
14
15 Index: dvdbackup-0.4.1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-video/dvdbackup/dvdbackup-0.4.1.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- dvdbackup-0.4.1.ebuild 1 Sep 2010 18:58:21 -0000 1.3
22 +++ dvdbackup-0.4.1.ebuild 1 Sep 2010 19:41:40 -0000 1.4
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdbackup/dvdbackup-0.4.1.ebuild,v 1.3 2010/09/01 18:58:21 sping Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdbackup/dvdbackup-0.4.1.ebuild,v 1.4 2010/09/01 19:41:40 billie Exp $
28
29 EAPI="2"
30
31 @@ -11,16 +11,21 @@
32 LICENSE="GPL-3"
33 SLOT="0"
34 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
35 -IUSE=""
36 +IUSE="nls"
37
38 DEPEND=">=media-libs/libdvdread-4.1.3_p1217
39 - virtual/libintl"
40 -RDEPEND="${RDEPEND}"
41 + nls? ( virtual/libintl )"
42 +RDEPEND="${DEPEND}"
43
44 src_configure() {
45 - econf --docdir="/usr/share/doc/${PF}"
46 + econf \
47 + $(use_enable nls) \
48 + --disable-dependency-tracking \
49 + --disable-rpath \
50 + --docdir="/usr/share/doc/${PF}"
51 }
52
53 src_install() {
54 emake DESTDIR="${D}" install || die 'emake install failed'
55 + dodoc AUTHORS ChangeLog NEWS README || die 'dodoc failed'
56 }
57
58
59
60 1.26 media-video/dvdbackup/ChangeLog
61
62 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdbackup/ChangeLog?rev=1.26&view=markup
63 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdbackup/ChangeLog?rev=1.26&content-type=text/plain
64 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdbackup/ChangeLog?r1=1.25&r2=1.26
65
66 Index: ChangeLog
67 ===================================================================
68 RCS file: /var/cvsroot/gentoo-x86/media-video/dvdbackup/ChangeLog,v
69 retrieving revision 1.25
70 retrieving revision 1.26
71 diff -u -r1.25 -r1.26
72 --- ChangeLog 1 Sep 2010 18:58:21 -0000 1.25
73 +++ ChangeLog 1 Sep 2010 19:41:40 -0000 1.26
74 @@ -1,6 +1,9 @@
75 # ChangeLog for media-video/dvdbackup
76 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
77 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdbackup/ChangeLog,v 1.25 2010/09/01 18:58:21 sping Exp $
78 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdbackup/ChangeLog,v 1.26 2010/09/01 19:41:40 billie Exp $
79 +
80 + 01 Sep 2010; Daniel Pielmeier <billie@g.o> dvdbackup-0.4.1.ebuild:
81 + Fix dependencies and configuration.
82
83 01 Sep 2010; Sebastian Pipping <sping@g.o> dvdbackup-0.4.1.ebuild:
84 Add virtual/libintl to deps of 0.4.1. Caught by billie.