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 | e0dad2bade8f5b847ed1cd93585b282e6bf41046 (patch) | |
tree | 4efc90d5446ae8c93dd6360dbc1bb130905ad3ea /net-ftp/proftpd | |
parent | added yet_exec flags for configure run, otherwise build failure due to broken... (diff) | |
download | gentoo-2-e0dad2bade8f5b847ed1cd93585b282e6bf41046.tar.gz gentoo-2-e0dad2bade8f5b847ed1cd93585b282e6bf41046.tar.bz2 gentoo-2-e0dad2bade8f5b847ed1cd93585b282e6bf41046.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/proftpd')
-rw-r--r-- | net-ftp/proftpd/ChangeLog | 6 | ||||
-rw-r--r-- | net-ftp/proftpd/Manifest | 4 | ||||
-rw-r--r-- | net-ftp/proftpd/proftpd-1.2.9_rc2.ebuild | 6 |
3 files changed, 12 insertions, 4 deletions
diff --git a/net-ftp/proftpd/ChangeLog b/net-ftp/proftpd/ChangeLog index 785dd89fd61a..6473a0482036 100644 --- a/net-ftp/proftpd/ChangeLog +++ b/net-ftp/proftpd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-ftp/proftpd # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/ChangeLog,v 1.37 2003/10/02 18:19:12 brad_mssw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/ChangeLog,v 1.38 2003/10/05 10:05:42 pappy Exp $ + + 05 Oct 2003; Alexander Gabert <pappy@gentoo.org> proftpd-1.2.9_rc2.ebuild: + added yet_exec flags for configure run, otherwise build failure due to broken + assembler syscall in cap module building 02 Oct 2003; Brad House <brad_mssw@gentoo.org> proftpd-1.2.8.ebuild: add ~amd64 flag 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" } |