Gentoo Archives: gentoo-commits

From: "Christian Ruppert (idl0r)" <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-backup/amanda: ChangeLog amanda-3.2.1.ebuild
Date: Tue, 28 Dec 2010 22:06:43
Message-Id: 20101228220633.1C9CC20054@flycatcher.gentoo.org
1 idl0r 10/12/28 22:06:33
2
3 Modified: ChangeLog amanda-3.2.1.ebuild
4 Log:
5 Make curl and readline optional.
6
7 (Portage version: 2.1.9.25/cvs/Linux i686)
8
9 Revision Changes Path
10 1.75 app-backup/amanda/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/amanda/ChangeLog?rev=1.75&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/amanda/ChangeLog?rev=1.75&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/amanda/ChangeLog?r1=1.74&r2=1.75
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-backup/amanda/ChangeLog,v
19 retrieving revision 1.74
20 retrieving revision 1.75
21 diff -u -r1.74 -r1.75
22 --- ChangeLog 28 Dec 2010 00:16:10 -0000 1.74
23 +++ ChangeLog 28 Dec 2010 22:06:33 -0000 1.75
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-backup/amanda
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-backup/amanda/ChangeLog,v 1.74 2010/12/28 00:16:10 idl0r Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-backup/amanda/ChangeLog,v 1.75 2010/12/28 22:06:33 idl0r Exp $
29 +
30 + 28 Dec 2010; Christian Ruppert <idl0r@g.o> amanda-3.2.1.ebuild:
31 + Make curl and readline optional.
32
33 28 Dec 2010; Christian Ruppert <idl0r@g.o> amanda-3.2.1.ebuild:
34 Fix amandahomedir in amaddclient and amserverconfig to use /var/spool/amanda
35
36
37
38 1.3 app-backup/amanda/amanda-3.2.1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/amanda/amanda-3.2.1.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/amanda/amanda-3.2.1.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/amanda/amanda-3.2.1.ebuild?r1=1.2&r2=1.3
43
44 Index: amanda-3.2.1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-backup/amanda/amanda-3.2.1.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- amanda-3.2.1.ebuild 28 Dec 2010 00:16:10 -0000 1.2
51 +++ amanda-3.2.1.ebuild 28 Dec 2010 22:06:33 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-backup/amanda/amanda-3.2.1.ebuild,v 1.2 2010/12/28 00:16:10 idl0r Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-backup/amanda/amanda-3.2.1.ebuild,v 1.3 2010/12/28 22:06:33 idl0r Exp $
57
58 EAPI=3
59 inherit autotools eutils perl-module
60 @@ -21,10 +21,11 @@
61 net-misc/openssh
62 >=dev-libs/glib-2.26.0
63 nls? ( virtual/libintl )
64 - s3? ( >=net-misc/curl-7.10.0 )
65 + curl? ( >=net-misc/curl-7.10.0 )
66 samba? ( net-fs/samba )
67 kerberos? ( app-crypt/mit-krb5 )
68 xfs? ( sys-fs/xfsdump )
69 + readline? ( sys-libs/readline )
70 !minimal? (
71 virtual/mailx
72 app-arch/mt-st
73 @@ -41,7 +42,7 @@
74 app-text/docbook-xml-dtd
75 "
76
77 -IUSE="gnuplot ipv6 kerberos minimal nls s3 samba xfs"
78 +IUSE="curl gnuplot ipv6 kerberos minimal nls readline s3 samba xfs"
79
80 S="${WORKDIR}/${MY_P}"
81
82 @@ -267,7 +268,10 @@
83 # build manpages
84 myconf="${myconf} --enable-manpage-build"
85
86 - econf ${myconf} || die "econf failed!"
87 + econf \
88 + $(use_with readline) \
89 + $(use_with curl libcurl) \
90 + ${myconf}
91 }
92
93 src_compile() {