diff options
author | 2004-07-23 02:38:29 +0000 | |
---|---|---|
committer | 2004-07-23 02:38:29 +0000 | |
commit | 88276eda67d4d46f8dcc9e808e0bee1172a56aa8 (patch) | |
tree | fe52d2cb43e1a0578e575cb7a58d77dabf1035a4 /net-misc/netkit-rsh | |
parent | Bump. See bug #57780. (Manifest recommit) (diff) | |
download | gentoo-2-88276eda67d4d46f8dcc9e808e0bee1172a56aa8.tar.gz gentoo-2-88276eda67d4d46f8dcc9e808e0bee1172a56aa8.tar.bz2 gentoo-2-88276eda67d4d46f8dcc9e808e0bee1172a56aa8.zip |
Optional PAM support from Christer Ekholm, bug 56503
Diffstat (limited to 'net-misc/netkit-rsh')
-rw-r--r-- | net-misc/netkit-rsh/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/netkit-rsh/netkit-rsh-0.17-r5.ebuild | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/net-misc/netkit-rsh/ChangeLog b/net-misc/netkit-rsh/ChangeLog index 04617cd39373..a0d2f9af8b4a 100644 --- a/net-misc/netkit-rsh/ChangeLog +++ b/net-misc/netkit-rsh/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/netkit-rsh # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-rsh/ChangeLog,v 1.15 2004/06/24 23:58:39 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-rsh/ChangeLog,v 1.16 2004/07/23 02:38:29 avenj Exp $ + + 22 Jul 2004; Jon Portnoy <avenj@gentoo.org> netkit-rsh-0.17-r5.ebuild : + Optional PAM support from Christer Ekholm in bug #56503. 24 Apr 2004; Tom Gall <tgall@gentoo.org> netkit-rsh-0.17-r5.ebuild: marked stable on ppc64 diff --git a/net-misc/netkit-rsh/netkit-rsh-0.17-r5.ebuild b/net-misc/netkit-rsh/netkit-rsh-0.17-r5.ebuild index 92c8dd275175..9cf937de2f27 100644 --- a/net-misc/netkit-rsh/netkit-rsh-0.17-r5.ebuild +++ b/net-misc/netkit-rsh/netkit-rsh-0.17-r5.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-rsh/netkit-rsh-0.17-r5.ebuild,v 1.7 2004/07/15 03:07:53 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-rsh/netkit-rsh-0.17-r5.ebuild,v 1.8 2004/07/23 02:38:29 avenj Exp $ inherit eutils -IUSE="" +IUSE="pam" DESCRIPTION="Netkit's Remote Shell Suite: rexec{,d} rlogin{,d} rsh{,d}" SRC_URI="mirror://debian/pool/main/n/${PN}/${PN}_${PV}.orig.tar.gz" @@ -15,7 +15,7 @@ LICENSE="BSD" KEYWORDS="x86 sparc ppc alpha mips amd64 ppc64" DEPEND=">=sys-libs/ncurses-5.2 - >=sys-libs/pam-0.72" + pam? ( >=sys-libs/pam-0.72 )" src_unpack() { unpack ${A} ; cd ${S} @@ -23,7 +23,9 @@ src_unpack() { } src_compile() { - ./configure || die + local myconf + use pam || myconf="--without-pam" + ./configure ${myconf} || die cp MCONFIG MCONFIG.orig sed -e "s:-pipe -O2:${CFLAGS}:" \ |