Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/profxp: profxp-3_pre2-r2.ebuild ChangeLog profxp-3_pre2-r1.ebuild
Date: Wed, 29 Jan 2014 01:18:15
Message-Id: 20140129011809.EB18D2004C@flycatcher.gentoo.org
1 mrueg 14/01/29 01:18:09
2
3 Modified: ChangeLog
4 Added: profxp-3_pre2-r2.ebuild
5 Removed: profxp-3_pre2-r1.ebuild
6 Log:
7 Change some unquoted variables to quoted ones, add missing die.
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )
10
11 Revision Changes Path
12 1.11 net-ftp/profxp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/profxp/ChangeLog?rev=1.11&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/profxp/ChangeLog?rev=1.11&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/profxp/ChangeLog?r1=1.10&r2=1.11
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-ftp/profxp/ChangeLog,v
21 retrieving revision 1.10
22 retrieving revision 1.11
23 diff -u -r1.10 -r1.11
24 --- ChangeLog 3 Sep 2013 09:51:03 -0000 1.10
25 +++ ChangeLog 29 Jan 2014 01:18:09 -0000 1.11
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-ftp/profxp
28 -# Copyright 2000-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/profxp/ChangeLog,v 1.10 2013/09/03 09:51:03 idella4 Exp $
30 +# Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/profxp/ChangeLog,v 1.11 2014/01/29 01:18:09 mrueg Exp $
32 +
33 +*profxp-3_pre2-r2 (29 Jan 2014)
34 +
35 + 29 Jan 2014; Manuel RĂ¼ger <mrueg@g.o> +profxp-3_pre2-r2.ebuild,
36 + -profxp-3_pre2-r1.ebuild:
37 + Change some unquoted variables to quoted ones, add missing die.
38
39 *profxp-3_pre2-r1 (03 Sep 2013)
40
41
42
43
44 1.1 net-ftp/profxp/profxp-3_pre2-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/profxp/profxp-3_pre2-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/profxp/profxp-3_pre2-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: profxp-3_pre2-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-ftp/profxp/profxp-3_pre2-r2.ebuild,v 1.1 2014/01/29 01:18:09 mrueg Exp $
54
55 EAPI=5
56
57 inherit perl-module
58
59 DESCRIPTION="FXP (server-to-server FTP) commandline client written in Perl"
60 HOMEPAGE="http://duncanthrax.net/profxp/"
61 SRC_URI="http://duncanthrax.net/profxp/profxp-v${PV/_/-}-src.tar.gz
62 http://search.cpan.org/src/CLINTDW/SOCKS-0.03/lib/Net/SOCKS.pm"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~x86"
67 IUSE=""
68
69 DEPEND="virtual/perl-Time-HiRes
70 dev-perl/TermReadKey
71 dev-perl/Term-ReadLine-Perl"
72
73 S=${WORKDIR}/${PN}
74
75 src_unpack() {
76 unpack profxp-v${PV/_/-}-src.tar.gz
77 cp "${DISTDIR}"/SOCKS.pm "${S}"/
78 }
79
80 src_prepare() {
81 sed -i 's:/home/tom/ActivePerl-5\.6:/usr:' "${S}"/profxpv3.pl || die
82 }
83
84 src_compile() {
85 :;
86 }
87
88 src_install() {
89 perlinfo
90 newbin profxpv3.pl profxp.pl
91 dosym profxp.pl /usr/bin/profxp
92 insinto ${ARCH_LIB}/Net
93 doins SOCKS.pm
94 insinto ${ARCH_LIB}/${PN}
95 doins ${PN}/*.pm
96 }