Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-fs/am-utils: ChangeLog am-utils-6.1.5.ebuild
Date: Tue, 01 Apr 2008 17:54:26
Message-Id: E1Jgkgh-0004Xg-DX@stork.gentoo.org
1 rbu 08/04/01 17:54:23
2
3 Modified: ChangeLog
4 Added: am-utils-6.1.5.ebuild
5 Log:
6 Non-maintainer-commit: Version bump (bug #181683), build properly on Kernels
7 >=2.6.18 (bug #190842) and fix insecure temporary file creation in expn (bug
8 #210158).
9 (Portage version: 2.1.4.4)
10
11 Revision Changes Path
12 1.28 net-fs/am-utils/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/am-utils/ChangeLog?rev=1.28&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/am-utils/ChangeLog?rev=1.28&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/am-utils/ChangeLog?r1=1.27&r2=1.28
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-fs/am-utils/ChangeLog,v
21 retrieving revision 1.27
22 retrieving revision 1.28
23 diff -u -r1.27 -r1.28
24 --- ChangeLog 6 Apr 2007 22:23:39 -0000 1.27
25 +++ ChangeLog 1 Apr 2008 17:54:22 -0000 1.28
26 @@ -1,6 +1,15 @@
27 # ChangeLog for net-fs/am-utils
28 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-fs/am-utils/ChangeLog,v 1.27 2007/04/06 22:23:39 betelgeuse Exp $
30 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/net-fs/am-utils/ChangeLog,v 1.28 2008/04/01 17:54:22 rbu Exp $
32 +
33 +*am-utils-6.1.5 (01 Apr 2008)
34 +
35 + 01 Apr 2008; Robert Buchholz <rbu@g.o>
36 + +files/am-utils-6.1.5-CVE-2008-1078.patch,
37 + +files/am-utils-6.1.5-uts_release.patch, +am-utils-6.1.5.ebuild:
38 + Non-maintainer-commit: Version bump (bug #181683), build properly on Kernels
39 + >=2.6.18 (bug #190842) and fix insecure temporary file creation in expn (bug
40 + #210158).
41
42 06 Apr 2007; Petteri Räty <betelgeuse@g.o>
43 -am-utils-6.0.9-r1.ebuild, -am-utils-6.0.10.ebuild:
44
45
46
47 1.1 net-fs/am-utils/am-utils-6.1.5.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/am-utils/am-utils-6.1.5.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/am-utils/am-utils-6.1.5.ebuild?rev=1.1&content-type=text/plain
51
52 Index: am-utils-6.1.5.ebuild
53 ===================================================================
54 # Copyright 1999-2008 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/net-fs/am-utils/am-utils-6.1.5.ebuild,v 1.1 2008/04/01 17:54:22 rbu Exp $
57
58 WANT_AUTOCONF="latest"
59 WANT_AUTOMAKE="latest"
60
61 inherit eutils autotools
62
63 DESCRIPTION="amd automounter and utilities"
64 HOMEPAGE="http://www.am-utils.org/"
65 SRC_URI="ftp://ftp.am-utils.org/pub/am-utils/${P}.tar.gz"
66
67 LICENSE="BSD"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86 ~x86-fbsd"
70 IUSE="ldap"
71
72 RDEPEND="ldap? ( >=net-nds/openldap-1.2 )"
73 DEPEND="${RDEPEND}"
74
75 src_unpack() {
76 unpack ${A}
77 cd "${S}"
78
79 epatch "${FILESDIR}/${PN}-6.1.4-dbm_open-libc.patch"
80 epatch "${FILESDIR}/${P}-uts_release.patch" #190842
81 epatch "${FILESDIR}/${P}-CVE-2008-1078.patch" #210158
82 eautoreconf
83 }
84
85 src_compile() {
86 econf \
87 $(use_with ldap) \
88 --sysconfdir=/etc/amd \
89 || die "configure failed"
90 emake || die "make failed"
91 }
92
93 src_install() {
94 make DESTDIR="${D}" install || die "make install failed"
95
96 insinto /etc/amd
97 doins "${FILESDIR}"/amd.{conf,net}
98 newinitd "${FILESDIR}/amd.rc" amd
99 }
100
101
102
103 --
104 gentoo-commits@l.g.o mailing list