diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-01-06 11:39:14 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-01-06 11:39:14 +0000 |
commit | 961c72acc0e4c76b7d54a6ae937f85ee1da8d385 (patch) | |
tree | cd3b36374e0c07c5dbcf94ea62db4977ccf5f3f0 /net-proxy/pingtunnel | |
parent | Call eautomake, not eautoconf. (diff) | |
download | gentoo-2-961c72acc0e4c76b7d54a6ae937f85ee1da8d385.tar.gz gentoo-2-961c72acc0e4c76b7d54a6ae937f85ee1da8d385.tar.bz2 gentoo-2-961c72acc0e4c76b7d54a6ae937f85ee1da8d385.zip |
Add suplementary documentation depending on doc useflag (#117528); merge our CFLAGS instead of deleting the original ones
(Portage version: 2.0.53)
Diffstat (limited to 'net-proxy/pingtunnel')
-rw-r--r-- | net-proxy/pingtunnel/ChangeLog | 7 | ||||
-rw-r--r-- | net-proxy/pingtunnel/Manifest | 2 | ||||
-rw-r--r-- | net-proxy/pingtunnel/pingtunnel-0.61.ebuild | 18 |
3 files changed, 19 insertions, 8 deletions
diff --git a/net-proxy/pingtunnel/ChangeLog b/net-proxy/pingtunnel/ChangeLog index f2611720995e..43d05240f182 100644 --- a/net-proxy/pingtunnel/ChangeLog +++ b/net-proxy/pingtunnel/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-proxy/pingtunnel -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/pingtunnel/ChangeLog,v 1.2 2005/07/17 18:49:33 dholm Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/pingtunnel/ChangeLog,v 1.3 2006/01/06 11:39:14 mrness Exp $ + + 06 Jan 2006; Alin Nastac <mrness@gentoo.org> pingtunnel-0.61.ebuild: + Add suplementary documentation depending on doc useflag (#117528). 17 Jul 2005; David Holm <dholm@gentoo.org> pingtunnel-0.61.ebuild: Added to ~ppc. diff --git a/net-proxy/pingtunnel/Manifest b/net-proxy/pingtunnel/Manifest index bb772e4fc1ac..a38f9f60a17f 100644 --- a/net-proxy/pingtunnel/Manifest +++ b/net-proxy/pingtunnel/Manifest @@ -1,4 +1,6 @@ MD5 ebe54b5f82c3d9775c58f4dfa8f6772a ChangeLog 455 MD5 bed1580dc780e5e8ee7dc4f7d2fb3f19 metadata.xml 380 MD5 ec8238270690bcc9327065244db84d58 pingtunnel-0.61.ebuild 704 +MD5 c176cd0fc612f040efa2daff99e88296 pingtunnel-0.61-r1.ebuild 803 MD5 a8109fce1f0342daf3ddd3fb377cacd3 files/digest-pingtunnel-0.61 66 +MD5 a8109fce1f0342daf3ddd3fb377cacd3 files/digest-pingtunnel-0.61-r1 66 diff --git a/net-proxy/pingtunnel/pingtunnel-0.61.ebuild b/net-proxy/pingtunnel/pingtunnel-0.61.ebuild index 5771cb8f5549..c0516918004f 100644 --- a/net-proxy/pingtunnel/pingtunnel-0.61.ebuild +++ b/net-proxy/pingtunnel/pingtunnel-0.61.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/pingtunnel/pingtunnel-0.61.ebuild,v 1.2 2005/07/17 18:49:33 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/pingtunnel/pingtunnel-0.61.ebuild,v 1.3 2006/01/06 11:39:14 mrness Exp $ DESCRIPTION="Tunnel TCP over ICMP" HOMEPAGE="http://www.cs.uit.no/~daniels/PingTunnel" @@ -9,20 +9,26 @@ SRC_URI="http://www.cs.uit.no/~daniels/PingTunnel/PingTunnel-${PV}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~ppc ~x86" -IUSE="" +IUSE="doc" -RDEPEND="net-libs/libpcap" -DEPEND="${RDEPEND}" +DEPEND="net-libs/libpcap" S="${WORKDIR}/PingTunnel" src_unpack() { unpack ${A} - sed -r -i -e 's:^(CFLAGS|CC):#&:' ${S}/Makefile + #Don't force CC to gcc and use our CFLAGS + sed -r -i \ + -e 's:^CC[ \t]+=:#&:' \ + -e 's:^(CFLAGS[ \t]+)=:\1+=:' \ + ${S}/Makefile } src_install() { make prefix="${D}/usr" install || die "make install has failed" dodoc CHANGELOG README + if use doc ; then + dohtml web/* + fi } |