summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2005-07-26 11:25:36 +0000
committerSeemant Kulleen <seemant@gentoo.org>2005-07-26 11:25:36 +0000
commitb3cd057c11e4a65f23522003c89e9fbf4983cfda (patch)
treec27b48a19934e628f2dd46f15db2595465e59036 /sys-auth
parentAdded to ~ppc (diff)
downloadgentoo-2-b3cd057c11e4a65f23522003c89e9fbf4983cfda.tar.gz
gentoo-2-b3cd057c11e4a65f23522003c89e9fbf4983cfda.tar.bz2
gentoo-2-b3cd057c11e4a65f23522003c89e9fbf4983cfda.zip
change to econf and some other cleanups. Also add ~amd64 to KEYWORDS
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-auth')
-rw-r--r--sys-auth/pam_krb5/ChangeLog6
-rw-r--r--sys-auth/pam_krb5/pam_krb5-20030601-r1.ebuild23
2 files changed, 16 insertions, 13 deletions
diff --git a/sys-auth/pam_krb5/ChangeLog b/sys-auth/pam_krb5/ChangeLog
index 34a799c02274..450fef5b3f92 100644
--- a/sys-auth/pam_krb5/ChangeLog
+++ b/sys-auth/pam_krb5/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-auth/pam_krb5
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_krb5/ChangeLog,v 1.1 2005/07/02 21:20:57 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_krb5/ChangeLog,v 1.2 2005/07/26 11:25:36 seemant Exp $
+
+ 26 Jul 2005; Seemant Kulleen <seemant@gentoo.org>
+ pam_krb5-20030601-r1.ebuild:
+ change to econf and some other cleanups. Also add ~amd64 to KEYWORDS
02 Jul 2005; Diego Pettenò <flameeyes@gentoo.org>
+files/pam_krb5-1.0-errno_h.patch, +files/pam_krb5-1.0-gentoo.diff,
diff --git a/sys-auth/pam_krb5/pam_krb5-20030601-r1.ebuild b/sys-auth/pam_krb5/pam_krb5-20030601-r1.ebuild
index a94e993fc771..f5ef413dd4ca 100644
--- a/sys-auth/pam_krb5/pam_krb5-20030601-r1.ebuild
+++ b/sys-auth/pam_krb5/pam_krb5-20030601-r1.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/sys-auth/pam_krb5/pam_krb5-20030601-r1.ebuild,v 1.1 2005/07/02 21:20:57 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_krb5/pam_krb5-20030601-r1.ebuild,v 1.2 2005/07/26 11:25:36 seemant Exp $
inherit eutils
@@ -14,7 +14,7 @@ HOMEPAGE="http://pam-krb5.sourceforge.net/"
SLOT="0"
LICENSE="LGPL-2"
-KEYWORDS="~x86 ~ppc"
+KEYWORDS="~x86 ~ppc ~amd64"
IUSE="afs"
DEPEND="virtual/krb5
@@ -33,19 +33,18 @@ src_unpack() {
src_compile() {
local myconf
use afs && myconf="${myconf} --with-krbafs=/usr"
- CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --with-pamdir=/lib/security \
- --with-krb5=/usr \
- --host=${CHOST} ${myconf} || die "./configure failed."
- make CFLAGS="$CFLAGS" || die
+ CFLAGS="${CFLAGS}" CXXFLAGS="{$CXXFLAGS}" \
+ econf \
+ --localstatedir=/var \
+ --with-pamdir=/lib/security \
+ --with-krb5=/usr \
+ ${myconf} || die "./configure failed."
+
+ emake CFLAGS="${CFLAGS}" || die
}
src_install() {
- exeinto /lib/security
- doexe .libs/pam_krb5.so
+ make DESTDIR=${D} install || die
if use afs ; then
if [ -f .libs/pam_krb5afs.so ]; then