Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/oftpd: ChangeLog oftpd-0.3.7-r6.ebuild oftpd-0.3.7-r5.ebuild oftpd-0.3.7-r4.ebuild
Date: Sat, 06 Nov 2010 01:37:14
Message-Id: 20101106013710.66CA92003C@flycatcher.gentoo.org
1 xmw 10/11/06 01:37:10
2
3 Modified: ChangeLog
4 Added: oftpd-0.3.7-r6.ebuild
5 Removed: oftpd-0.3.7-r5.ebuild oftpd-0.3.7-r4.ebuild
6 Log:
7 fix config file
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.29 net-ftp/oftpd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/oftpd/ChangeLog?rev=1.29&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/oftpd/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/oftpd/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/oftpd/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 1 Sep 2010 10:00:39 -0000 1.28
24 +++ ChangeLog 6 Nov 2010 01:37:10 -0000 1.29
25 @@ -1,6 +1,14 @@
26 # ChangeLog for net-ftp/oftpd
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/oftpd/ChangeLog,v 1.28 2010/09/01 10:00:39 xmw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/oftpd/ChangeLog,v 1.29 2010/11/06 01:37:10 xmw Exp $
30 +
31 +*oftpd-0.3.7-r6 (06 Nov 2010)
32 +
33 + 06 Nov 2010; Michael Weber <xmw@g.o> -oftpd-0.3.7-r4.ebuild,
34 + -oftpd-0.3.7-r5.ebuild, +oftpd-0.3.7-r6.ebuild, -files/conf.d.oftpd-r1,
35 + +files/conf.d.oftpd-r6:
36 + Rev bump to fix default port and description in config file (bug #344169,
37 + thanks to Christohper Harrington <ironiridis@×××××.com>).
38
39 *oftpd-0.3.7-r5 (01 Sep 2010)
40
41
42
43
44 1.1 net-ftp/oftpd/oftpd-0.3.7-r6.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/oftpd/oftpd-0.3.7-r6.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/oftpd/oftpd-0.3.7-r6.ebuild?rev=1.1&content-type=text/plain
48
49 Index: oftpd-0.3.7-r6.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-ftp/oftpd/oftpd-0.3.7-r6.ebuild,v 1.1 2010/11/06 01:37:10 xmw Exp $
54
55 EAPI=2
56
57 inherit autotools eutils
58
59 DESCRIPTION="Secure, small, anonymous only ftpd"
60 HOMEPAGE="http://www.time-travellers.org/oftpd"
61 SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz
62 ftp://ftp.deepspace6.net/pub/ds6/sources/${PN}/${PN}-0.3.6-ipv6rel2.patch.gz"
63
64 LICENSE="as-is"
65 SLOT="0"
66 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sh ~sparc ~x86"
67 IUSE="ipv6"
68
69 DEPEND="net-ftp/ftpbase"
70 RDEPEND="${DEPEND}"
71
72 src_prepare() {
73 cd "${WORKDIR}" || die
74 epatch "${FILESDIR}"/oftpd-0.3.7-ipv6rel2-0.3.6-to-0.3.7.patch
75
76 cd "${S}" || die
77 epatch "${WORKDIR}"/${PN}-0.3.6-ipv6rel2.patch
78
79 # Don't crash when using an unsupported address family, #159178.
80 # updated in bug #157005
81 epatch "${FILESDIR}"/${P}-family-1.patch
82
83 eautoreconf
84 }
85
86 src_configure() {
87 econf --bindir=/usr/sbin $(use_enable ipv6)
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die
92 dodoc AUTHORS BUGS FAQ NEWS README TODO || die
93 keepdir /home/ftp
94 newinitd "${FILESDIR}"/init.d.oftpd-r1 oftpd || die
95 newconfd "${FILESDIR}"/conf.d.oftpd-r6 oftpd || die
96 }