diff options
author | Alexander Gabert <pappy@gentoo.org> | 2003-10-05 10:05:59 +0000 |
---|---|---|
committer | Alexander Gabert <pappy@gentoo.org> | 2003-10-05 10:05:59 +0000 |
commit | a538da67e869ebc2d110637cb7069d8957f26808 (patch) | |
tree | 34fa4c3fb007466d2ddcae8cd2da747d5d20e287 /net-ftp | |
parent | added yet_exec flags for configure run, otherwise build failure due to broken... (diff) | |
download | historical-a538da67e869ebc2d110637cb7069d8957f26808.tar.gz historical-a538da67e869ebc2d110637cb7069d8957f26808.tar.bz2 historical-a538da67e869ebc2d110637cb7069d8957f26808.zip |
added yet_exec flags for configure run, otherwise build failure due to broken assembler syscall in cap module building
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/proftpd/Manifest | 4 | ||||
-rw-r--r-- | net-ftp/proftpd/proftpd-1.2.9_rc2.ebuild | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/net-ftp/proftpd/Manifest b/net-ftp/proftpd/Manifest index a526001374c9..7ec0336ada0e 100644 --- a/net-ftp/proftpd/Manifest +++ b/net-ftp/proftpd/Manifest @@ -1,9 +1,9 @@ -MD5 5b3064b5438ab2c953e0a11d08fbc1f7 proftpd-1.2.9_rc2.ebuild 3066 +MD5 48254d103a8fa63e6ff0f828f6095963 proftpd-1.2.9_rc2.ebuild 3066 MD5 3ae04eafb730c36ccc8984f86799af79 proftpd-1.2.8.ebuild 2739 MD5 6af0a703972bb7f858aabcc18896454b proftpd-1.2.5-r1.ebuild 2487 MD5 ed644dbda898814d27dbf3b8b8775fef proftpd-1.2.9_rc1.ebuild 2911 MD5 bef00204f7097fbe4c9cc00c6f638e93 proftpd-1.2.7.ebuild 3670 -MD5 bec943d0afe0958b136072e5c161f3db ChangeLog 5874 +MD5 5741325bcd08c181158d3d647b1e7f2e ChangeLog 5870 MD5 305b9ec34f3caa3722cf5a7dc1a59880 files/proftpd.rc6 743 MD5 b338504ed873219e368abab7df6c276d files/proftpd.conf 1704 MD5 c1dc1d9278d5b77f53ea44ee848dafc6 files/digest-proftpd-1.2.7 211 diff --git a/net-ftp/proftpd/proftpd-1.2.9_rc2.ebuild b/net-ftp/proftpd/proftpd-1.2.9_rc2.ebuild index f45ff2f7ad72..655ae053daf2 100644 --- a/net-ftp/proftpd/proftpd-1.2.9_rc2.ebuild +++ b/net-ftp/proftpd/proftpd-1.2.9_rc2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/proftpd-1.2.9_rc2.ebuild,v 1.4 2003/09/30 08:25:51 joker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/proftpd-1.2.9_rc2.ebuild,v 1.5 2003/10/05 10:05:42 pappy Exp $ IUSE="ldap pam postgres mysql ssl tcpd ipv6" @@ -58,6 +58,8 @@ src_compile() { # modules="${modules}:mod_radius" # modules="${modules}:mod_rewrite" + has_version sys-devel/hardened-gcc && append-flags "-yet_exec" + econf \ --sbindir=/usr/sbin \ --localstatedir=/var/run \ @@ -68,6 +70,8 @@ src_compile() { --with-modules=${modules} \ ${myconf} $( use_enable ipv6 ) || die "bad ./configure" + has_version "sys-devel/hardened-gcc" && find ${WORKDIR} -name Makefile -type f -exec sed -i "s,-yet_exec,," {} \; + make || die "compile problem" } |