Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-proxy/tinyproxy: tinyproxy-1.8.1-r1.ebuild
Date: Fri, 31 Dec 2010 00:59:46
Message-Id: 20101231005937.44F552004E@flycatcher.gentoo.org
1 vapier 10/12/31 00:59:37
2
3 Modified: tinyproxy-1.8.1-r1.ebuild
4 Log:
5 econf doesnt need `die`; tweak style in a few places
6
7 (Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 net-proxy/tinyproxy/tinyproxy-1.8.1-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/tinyproxy/tinyproxy-1.8.1-r1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/tinyproxy/tinyproxy-1.8.1-r1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/tinyproxy/tinyproxy-1.8.1-r1.ebuild?r1=1.3&r2=1.4
15
16 Index: tinyproxy-1.8.1-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-proxy/tinyproxy/tinyproxy-1.8.1-r1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- tinyproxy-1.8.1-r1.ebuild 4 Jun 2010 05:28:04 -0000 1.3
23 +++ tinyproxy-1.8.1-r1.ebuild 31 Dec 2010 00:59:37 -0000 1.4
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/tinyproxy/tinyproxy-1.8.1-r1.ebuild,v 1.3 2010/06/04 05:28:04 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/tinyproxy/tinyproxy-1.8.1-r1.ebuild,v 1.4 2010/12/31 00:59:37 vapier Exp $
29
30 EAPI="2"
31
32 @@ -29,8 +29,8 @@
33 use minimal && epatch "${FILESDIR}/${P}-minimal.patch"
34 sed -i etc/${PN}.conf.in -e "s|nobody|${PN}|g" || die "sed failed"
35 sed \
36 - "${FILESDIR}/${PN}.initd" \
37 -e "/CONFFILE/s:${PN}/::g" \
38 + "${FILESDIR}/${PN}.initd" \
39 > "${WORKDIR}"/${PN}.initd \
40 || die "sed failed"
41 eautoreconf
42 @@ -48,8 +48,7 @@
43 $(use_enable transparent-proxy transparent) \
44 $(use_enable upstream-proxy upstream) \
45 $(use_enable xtinyproxy-header xtinyproxy) \
46 - $(use_enable debug) \
47 - || die "econf failed"
48 + $(use_enable debug)
49 }
50
51 src_install() {
52 @@ -70,6 +69,6 @@
53 }
54
55 pkg_postinst() {
56 - einfo "For filtering domains and URLs, enable filter option in the configuration file"
57 - einfo "and add them to the filter file (one domain or URL per line)."
58 + einfo "For filtering domains and URLs, enable filter option in the configuration"
59 + einfo "file and add them to the filter file (one domain or URL per line)."
60 }