Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/tftp-hpa: ChangeLog tftp-hpa-0.49-r1.ebuild tftp-hpa-0.49.ebuild
Date: Fri, 27 Feb 2009 14:21:04
Message-Id: E1Ld3aI-0007bP-Cx@stork.gentoo.org
1 armin76 09/02/27 14:21:02
2
3 Modified: ChangeLog
4 Added: tftp-hpa-0.49-r1.ebuild
5 Removed: tftp-hpa-0.49.ebuild
6 Log:
7 Revbump to add ipv6 USE-flag, bug #253422
8 (Portage version: 2.1.6.7/cvs/Linux i686)
9
10 Revision Changes Path
11 1.36 net-ftp/tftp-hpa/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/tftp-hpa/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/tftp-hpa/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/tftp-hpa/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/tftp-hpa/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 1 Nov 2008 06:58:21 -0000 1.35
24 +++ ChangeLog 27 Feb 2009 14:21:02 -0000 1.36
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-ftp/tftp-hpa
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/tftp-hpa/ChangeLog,v 1.35 2008/11/01 06:58:21 robbat2 Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/tftp-hpa/ChangeLog,v 1.36 2009/02/27 14:21:02 armin76 Exp $
31 +
32 +*tftp-hpa-0.49-r1 (27 Feb 2009)
33 +
34 + 27 Feb 2009; Raúl Porcel <armin76@g.o> -tftp-hpa-0.49.ebuild,
35 + +tftp-hpa-0.49-r1.ebuild:
36 + Revbump to add ipv6 USE-flag, bug #253422
37
38 *tftp-hpa-0.49 (01 Nov 2008)
39
40
41
42
43 1.1 net-ftp/tftp-hpa/tftp-hpa-0.49-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/tftp-hpa/tftp-hpa-0.49-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/tftp-hpa/tftp-hpa-0.49-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tftp-hpa-0.49-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-ftp/tftp-hpa/tftp-hpa-0.49-r1.ebuild,v 1.1 2009/02/27 14:21:02 armin76 Exp $
53
54 DESCRIPTION="port of the OpenBSD TFTP server"
55 HOMEPAGE="http://www.kernel.org/pub/software/network/tftp/"
56 SRC_URI="mirror://kernel/software/network/tftp/${P}.tar.bz2"
57
58 LICENSE="BSD"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
61 IUSE="ipv6 readline selinux tcpd"
62
63 DEPEND="readline? ( sys-libs/readline )
64 tcpd? ( sys-apps/tcp-wrappers )
65 selinux? ( sec-policy/selinux-tftpd )
66 !virtual/tftp"
67 PROVIDE="virtual/tftp"
68
69 src_compile() {
70 econf \
71 $(use_with ipv6) \
72 $(use_with tcpd tcpwrappers) \
73 $(use_with readline) \
74 || die
75 emake || die
76 }
77
78 src_install() {
79 emake INSTALLROOT="${D}" install || die
80 dodoc README* CHANGES tftpd/sample.rules
81
82 # iputils installs this
83 rm -f "${D}"/usr/share/man/man8/tftpd.8
84
85 newconfd "${FILESDIR}"/in.tftpd.confd-0.44 in.tftpd
86 newinitd "${FILESDIR}"/in.tftpd.rc6 in.tftpd
87 }
88
89 pkg_postinst() {
90 ewarn "After installation, please ensure you look at"
91 ewarn "/etc/conf.d/in.tftpd and set the correct path"
92 ewarn "for your application."
93 }