diff options
author | Gustavo Felisberto <humpback@gentoo.org> | 2005-06-07 23:10:19 +0000 |
---|---|---|
committer | Gustavo Felisberto <humpback@gentoo.org> | 2005-06-07 23:10:19 +0000 |
commit | a26438715a227a14416f794c07eb0473b71ec744 (patch) | |
tree | c72646b9f6cb95343e34520dcfff9036b4a5ccb2 /net-ftp | |
parent | punted old versions (diff) | |
download | gentoo-2-a26438715a227a14416f794c07eb0473b71ec744.tar.gz gentoo-2-a26438715a227a14416f794c07eb0473b71ec744.tar.bz2 gentoo-2-a26438715a227a14416f794c07eb0473b71ec744.zip |
fixed authunix problem
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/proftpd/ChangeLog | 8 | ||||
-rw-r--r-- | net-ftp/proftpd/files/digest-proftpd-1.2.10-r5 (renamed from net-ftp/proftpd/files/digest-proftpd-1.2.10-r4) | 0 | ||||
-rw-r--r-- | net-ftp/proftpd/proftpd-1.2.10-r5.ebuild (renamed from net-ftp/proftpd/proftpd-1.2.10-r4.ebuild) | 9 |
3 files changed, 14 insertions, 3 deletions
diff --git a/net-ftp/proftpd/ChangeLog b/net-ftp/proftpd/ChangeLog index cbf02d7019b1..ba2881e90b3c 100644 --- a/net-ftp/proftpd/ChangeLog +++ b/net-ftp/proftpd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-ftp/proftpd # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/ChangeLog,v 1.92 2005/06/06 20:06:41 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/ChangeLog,v 1.93 2005/06/07 23:10:19 humpback Exp $ + +*proftpd-1.2.10-r5 (08 Jun 2005) + + 08 Jun 2005; Gustavo Felisberto <humpback@gentoo.org>; + -proftpd-1.2.10-r4.ebuild, +proftpd-1.2.10-r5.ebuild: + Fixed problem with noauthunix flag. Thanks uberloard. 06 Jun 2005; Markus Rothe <corsair@gentoo.org> proftpd-1.2.10-r3.ebuild: Stable on ppc64; bug #93484 diff --git a/net-ftp/proftpd/files/digest-proftpd-1.2.10-r4 b/net-ftp/proftpd/files/digest-proftpd-1.2.10-r5 index 211d52a3fca3..211d52a3fca3 100644 --- a/net-ftp/proftpd/files/digest-proftpd-1.2.10-r4 +++ b/net-ftp/proftpd/files/digest-proftpd-1.2.10-r5 diff --git a/net-ftp/proftpd/proftpd-1.2.10-r4.ebuild b/net-ftp/proftpd/proftpd-1.2.10-r5.ebuild index 88aac70b8fe1..8ca088e7ecea 100644 --- a/net-ftp/proftpd/proftpd-1.2.10-r4.ebuild +++ b/net-ftp/proftpd/proftpd-1.2.10-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/proftpd-1.2.10-r4.ebuild,v 1.3 2005/06/06 11:05:38 humpback Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/proftpd-1.2.10-r5.ebuild,v 1.1 2005/06/07 23:10:19 humpback Exp $ inherit flag-o-matic eutils @@ -101,6 +101,12 @@ src_compile() { use hardened && echo > lib/libcap/cap_sys.c has_pic && echo > lib/libcap/cap_sys.c + if use noauthunix ; then + myconf="${myconf} --disable-auth-unix" + else + myconf="${myconf} --enable-auth-unix" + fi + econf \ --sbindir=/usr/sbin \ --localstatedir=/var/run \ @@ -109,7 +115,6 @@ src_compile() { --enable-autoshadow \ --enable-ctrls \ --with-modules=${modules} \ - $(use_enable noauthunix auth-unix) \ $(use_enable authfile auth-file) \ $(use_enable ncurses) \ $(use_enable ipv6) \ |