diff options
author | Guy Martin <gmsoft@gentoo.org> | 2004-01-08 23:41:36 +0000 |
---|---|---|
committer | Guy Martin <gmsoft@gentoo.org> | 2004-01-08 23:41:36 +0000 |
commit | b51d4196a31f0e47be57dcf7f6e50717f6b24376 (patch) | |
tree | 66919ce93704df78cbf4ca2c59d5cc2ff7e619e3 /net-analyzer | |
parent | disabling python languages. Closes 34727 (diff) | |
download | gentoo-2-b51d4196a31f0e47be57dcf7f6e50717f6b24376.tar.gz gentoo-2-b51d4196a31f0e47be57dcf7f6e50717f6b24376.tar.bz2 gentoo-2-b51d4196a31f0e47be57dcf7f6e50717f6b24376.zip |
Added -fPIC for zlib and libpng on hppa. Marked stable on hppa.
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/ntop/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/ntop/Manifest | 6 | ||||
-rw-r--r-- | net-analyzer/ntop/ntop-2.2c.ebuild | 9 |
3 files changed, 13 insertions, 7 deletions
diff --git a/net-analyzer/ntop/ChangeLog b/net-analyzer/ntop/ChangeLog index 55c89edd76ba..02d48dbefc44 100644 --- a/net-analyzer/ntop/ChangeLog +++ b/net-analyzer/ntop/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for net-analyzer/ntop # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ChangeLog,v 1.14 2003/09/25 18:35:11 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ChangeLog,v 1.15 2004/01/08 23:41:21 gmsoft Exp $ 26 Sep 2003; Martin Holzer <mholzer@gentoo.org> ntop-2.2.ebuild, ntop-2.2c.ebuild: @@ -11,6 +11,9 @@ *ntop-2.2c (12 Jul 2003) + 09 Jan 2004; Guy Martin <gmsoft@gentoo.org> ntop-2.2c.ebuild : + Added -fPIC for zlib and libpng on hppa. Marked stable on hppa. + 12 Jul 2003; Martin Holzer <mholzer@gentoo.org> ntop-2.2c.ebuild: Version bumped. diff --git a/net-analyzer/ntop/Manifest b/net-analyzer/ntop/Manifest index a8231c038146..7351b95bfd20 100644 --- a/net-analyzer/ntop/Manifest +++ b/net-analyzer/ntop/Manifest @@ -1,10 +1,10 @@ -MD5 466ac3316b2074dd52241ad42140c2d5 ChangeLog 1544 +MD5 488e7109d4c104ae74634bb61c4f20ee ntop-2.2c.ebuild 2278 +MD5 34501935cd0ac6027cb07650a77dcabf ChangeLog 1675 MD5 2621f553b7a2f6208843e605463b97e0 ntop-2.0.99_rc2-r2.ebuild 2686 MD5 91398a1805029e6551a1099a2e282bab ntop-2.2.ebuild 2113 -MD5 fe3a9aa3d41dadc30ae4b70bef3b7d24 ntop-2.2c.ebuild 2116 -MD5 c4aa8efff06387c497036191b144f9b4 files/digest-ntop-2.2c 59 MD5 e8f42646f3226a9ad43cac51773512f0 files/digest-ntop-2.0.99_rc2-r2 65 MD5 b7642cd2d05562431a2af66604275657 files/digest-ntop-2.2 58 +MD5 c4aa8efff06387c497036191b144f9b4 files/digest-ntop-2.2c 59 MD5 a9cad5851ac81cbd8589f60287f3e497 files/ntop-confd 131 MD5 9e6b1e20779d7fb6699c956adf6b8b05 files/ntop-init 294 MD5 a54569fa0dac85ba1b47df0f3963bed2 files/tcpwrap.patch 407 diff --git a/net-analyzer/ntop/ntop-2.2c.ebuild b/net-analyzer/ntop/ntop-2.2c.ebuild index 540038cfe906..4aeb2db9d81a 100644 --- a/net-analyzer/ntop/ntop-2.2c.ebuild +++ b/net-analyzer/ntop/ntop-2.2c.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ntop-2.2c.ebuild,v 1.2 2003/09/25 18:35:11 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ntop-2.2c.ebuild,v 1.3 2004/01/08 23:41:21 gmsoft Exp $ IUSE="ssl readline tcpd ncurses" @@ -11,7 +11,7 @@ HOMEPAGE="http://www.ntop.org/ntop.html" SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86 ~ppc ~sparc" +KEYWORDS="x86 ~ppc ~sparc hppa" DEPEND=">=sys-libs/gdbm-1.8.0 >=net-libs/libpcap-0.5.2 @@ -22,6 +22,7 @@ DEPEND=">=sys-libs/gdbm-1.8.0 src_compile() { cd ${S} + local myconf use readline || myconf="${myconf} --without-readline" @@ -39,11 +40,13 @@ src_compile() { # subtree #1 cd gd-1.8.3/libpng-1.2.4 + [ "${ARCH}" = "hppa" ] && sed -i scripts/makefile.linux -e "/^CFLAGS/s/-O3/-O3 -fPIC/" make -f scripts/makefile.linux || die "libpng compile problem" # subtree #2 cd ../../zlib-1.1.4/ ./configure || die "zlib configure problem" + [ "${ARCH}" = "hppa" ] && sed -i Makefile -e "/^CFLAGS/s/$/ -fPIC/" make || die "zlib compile problem" # gdchart make |