Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/talloc: ChangeLog talloc-2.0.1.ebuild
Date: Tue, 26 Jan 2010 22:04:12
Message-Id: E1NZtW4-0004UZ-Mn@stork.gentoo.org
1 patrick 10/01/26 22:04:08
2
3 Modified: ChangeLog
4 Added: talloc-2.0.1.ebuild
5 Log:
6 Bump
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 sys-libs/talloc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/talloc/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/talloc/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/talloc/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/talloc/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 6 Dec 2009 17:14:48 -0000 1.10
23 +++ ChangeLog 26 Jan 2010 22:04:08 -0000 1.11
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-libs/talloc
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/talloc/ChangeLog,v 1.10 2009/12/06 17:14:48 flameeyes Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/talloc/ChangeLog,v 1.11 2010/01/26 22:04:08 patrick Exp $
30 +
31 +*talloc-2.0.1 (26 Jan 2010)
32 +
33 + 26 Jan 2010; Patrick Lauer <patrick@g.o> +talloc-2.0.1.ebuild:
34 + Bump
35
36 06 Dec 2009; Diego E. Pettenò <flameeyes@g.o>
37 talloc-2.0.0-r1.ebuild:
38
39
40
41 1.1 sys-libs/talloc/talloc-2.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/talloc/talloc-2.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/talloc/talloc-2.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: talloc-2.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-libs/talloc/talloc-2.0.1.ebuild,v 1.1 2010/01/26 22:04:08 patrick Exp $
51
52 EAPI="2"
53
54 inherit confutils eutils autotools
55
56 DESCRIPTION="Samba talloc library"
57 HOMEPAGE="http://talloc.samba.org/"
58 SRC_URI="http://samba.org/ftp/talloc/${P}.tar.gz"
59 LICENSE="GPL-3"
60 IUSE="compat doc"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
63
64 DEPEND="!<net-fs/samba-3.3
65 doc? ( app-text/docbook-xml-dtd:4.2 )
66 !<net-fs/samba-libs-3.4
67 "
68 RDEPEND="${DEPEND}"
69
70 src_prepare() {
71
72 epatch "${FILESDIR}"/${PN}-2.0.0-without-doc.patch
73 eautoconf -Ilibreplace
74 sed -e 's:$(SHLD_FLAGS) :$(SHLD_FLAGS) $(LDFLAGS) :' -i Makefile.in
75 }
76
77 src_configure() {
78
79 econf \
80 --sysconfdir=/etc/samba \
81 --localstatedir=/var \
82 $(use_enable compat talloc-compat1) \
83 $(use_with doc) \
84 || die "econf failed"
85
86 }
87
88 src_compile() {
89
90 emake showflags || die "emake showflags failed"
91 emake shared-build || die "emake shared-build failed"
92
93 }
94
95 src_install() {
96
97 emake install DESTDIR="${D}" || die "emake install failed"
98 dolib.a sharedbuild/lib/libtalloc.a
99 dolib.so sharedbuild/lib/libtalloc.so
100
101 }