Gentoo Archives: gentoo-commits

From: "Alin Nastac (mrness)" <mrness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/lrzsz: ChangeLog lrzsz-0.12.20-r3.ebuild
Date: Thu, 09 Jul 2009 23:46:23
Message-Id: E1MP3Jm-000096-5T@stork.gentoo.org
1 mrness 09/07/09 23:46:22
2
3 Modified: ChangeLog
4 Added: lrzsz-0.12.20-r3.ebuild
5 Log:
6 Use eautoreconf (#226789).
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 net-dialup/lrzsz/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/lrzsz/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/lrzsz/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/lrzsz/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dialup/lrzsz/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 9 May 2009 13:27:07 -0000 1.19
23 +++ ChangeLog 9 Jul 2009 23:46:22 -0000 1.20
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-dialup/lrzsz
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/lrzsz/ChangeLog,v 1.19 2009/05/09 13:27:07 mrness Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/lrzsz/ChangeLog,v 1.20 2009/07/09 23:46:22 mrness Exp $
29 +
30 +*lrzsz-0.12.20-r3 (09 Jul 2009)
31 +
32 + 09 Jul 2009; Alin Năstac <mrness@g.o>
33 + +files/lrzsz-autotools.patch, +lrzsz-0.12.20-r3.ebuild:
34 + Use eautoreconf (#226789).
35
36 09 May 2009; Alin Năstac <mrness@g.o> -lrzsz-0.12.20-r1.ebuild:
37 Remove obsolete revision.
38
39
40
41 1.1 net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lrzsz-0.12.20-r3.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild,v 1.1 2009/07/09 23:46:22 mrness Exp $
51
52 EAPI="2"
53
54 inherit autotools flag-o-matic eutils toolchain-funcs
55
56 DESCRIPTION="Communication package providing the X, Y, and ZMODEM file transfer protocols"
57 HOMEPAGE="http://www.ohse.de/uwe/software/lrzsz.html"
58 SRC_URI="http://www.ohse.de/uwe/releases/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
63 IUSE="nls"
64
65 DEPEND="nls? ( virtual/libintl )"
66 RDEPEND="${DEPEND}"
67
68 src_prepare() {
69 epatch "${FILESDIR}"/${PN}-autotools.patch
70 epatch "${FILESDIR}"/${PN}-implicit-decl.patch
71
72 # automake is unhappy if this is missing
73 >> config.rpath
74 # This is too old. Remove it so automake puts in a newer copy.
75 rm -f missing
76 # Autoheader does not like seeing this file.
77 rm -f acconfig.h
78
79 eautoreconf
80 }
81
82 src_configure() {
83 tc-export CC
84 append-flags -Wstrict-prototypes
85 econf $(use_enable nls) || die "econf failed"
86 }
87
88 src_test() {
89 #Don't use check target.
90 #See bug #120748 before changing this function.
91 make vcheck || die "tests failed"
92 }
93
94 src_install() {
95 emake \
96 DESTDIR="${D}" \
97 install || die "make install failed"
98
99 local x
100 for x in {r,s}{b,x,z} ; do
101 dosym l${x} /usr/bin/${x}
102 dosym l${x:0:1}z.1 /usr/share/man/man1/${x}.1
103 [ "${x:1:1}" = "z" ] || dosym l${x:0:1}z.1 /usr/share/man/man1/l${x}.1
104 done
105
106 dodoc AUTHORS COMPATABILITY ChangeLog NEWS README* THANKS TODO
107 }