Gentoo Archives: gentoo-commits

From: "Christoph Mende (angelos)" <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/oidentd: ChangeLog oidentd-2.0.8-r2.ebuild
Date: Sun, 27 Apr 2008 14:54:55
Message-Id: E1Jq8HF-00042p-6c@stork.gentoo.org
1 angelos 08/04/27 14:54:53
2
3 Modified: ChangeLog
4 Added: oidentd-2.0.8-r2.ebuild
5 Log:
6 Added a patch for masquerading on Linux 2.6.21
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.39 net-misc/oidentd/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/oidentd/ChangeLog?rev=1.39&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/oidentd/ChangeLog?rev=1.39&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/oidentd/ChangeLog?r1=1.38&r2=1.39
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/oidentd/ChangeLog,v
19 retrieving revision 1.38
20 retrieving revision 1.39
21 diff -u -r1.38 -r1.39
22 --- ChangeLog 24 Oct 2007 11:38:13 -0000 1.38
23 +++ ChangeLog 27 Apr 2008 14:54:52 -0000 1.39
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-misc/oidentd
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/oidentd/ChangeLog,v 1.38 2007/10/24 11:38:13 uberlord Exp $
28 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/oidentd/ChangeLog,v 1.39 2008/04/27 14:54:52 angelos Exp $
30 +
31 +*oidentd-2.0.8-r2 (27 Apr 2008)
32 +
33 + 27 Apr 2008; Christoph Mende <angelos@g.o>
34 + +files/oidentd-2.0.8-masquerading.patch, +oidentd-2.0.8-r2.ebuild:
35 + Added a patch for masquerading on Linux 2.6.21
36
37 24 Oct 2007; Roy Marples <uberlord@g.o> files/oidentd-2.0.7-init:
38 Check sysctl security.bsd.see_other_uids is not zero and error accordingly
39
40
41
42 1.1 net-misc/oidentd/oidentd-2.0.8-r2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/oidentd/oidentd-2.0.8-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/oidentd/oidentd-2.0.8-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: oidentd-2.0.8-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/oidentd/oidentd-2.0.8-r2.ebuild,v 1.1 2008/04/27 14:54:52 angelos Exp $
52
53 inherit eutils
54
55 DESCRIPTION="Another (RFC1413 compliant) ident daemon"
56 HOMEPAGE="http://dev.ojnk.net"
57 SRC_URI="mirror://sourceforge/ojnk/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd"
62 IUSE="debug ipv6 masquerade"
63
64 RDEPEND=""
65 DEPEND=""
66
67 src_unpack() {
68 unpack ${A}
69 cd "${S}"
70
71 epatch "${FILESDIR}/oidentd-2.0.8-masquerading.patch"
72 }
73
74 src_compile() {
75 econf \
76 $(use_enable debug) \
77 $(use_enable ipv6) \
78 $(use_enable masquerade masq) \
79 $(use_enable masquerade nat) \
80 || die "econf failed"
81 emake || die "emake failed"
82 }
83
84 src_install() {
85 make DESTDIR="${D}" install || die "make install failed!"
86
87 dodoc AUTHORS ChangeLog README TODO NEWS \
88 "${FILESDIR}"/${PN}_masq.conf "${FILESDIR}"/${PN}.conf
89
90 newinitd "${FILESDIR}"/oidentd-2.0.7-init ${PN}
91 newconfd "${FILESDIR}"/oidentd-2.0.7-confd ${PN}
92 }
93
94 pkg_postinst() {
95 echo
96 elog "Example configuration files are in /usr/share/doc/${PF}"
97 echo
98 }
99
100
101
102 --
103 gentoo-commits@l.g.o mailing list