diff options
author | 2003-12-10 08:13:51 +0000 | |
---|---|---|
committer | 2003-12-10 08:13:51 +0000 | |
commit | 9f0c94d1f304cdd7835a4fbf4a03760b7eeed356 (patch) | |
tree | 756b9df01b6c61fc5a747202853da0d50ee2b0c8 /sys-apps/shadow | |
parent | Fixed Depend (diff) | |
download | gentoo-2-9f0c94d1f304cdd7835a4fbf4a03760b7eeed356.tar.gz gentoo-2-9f0c94d1f304cdd7835a4fbf4a03760b7eeed356.tar.bz2 gentoo-2-9f0c94d1f304cdd7835a4fbf4a03760b7eeed356.zip |
don't install getspnam manpage
Diffstat (limited to 'sys-apps/shadow')
-rw-r--r-- | sys-apps/shadow/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/shadow/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/shadow/shadow-4.0.3-r9.ebuild | 11 |
3 files changed, 13 insertions, 8 deletions
diff --git a/sys-apps/shadow/ChangeLog b/sys-apps/shadow/ChangeLog index 267253d61d52..8ec1d7930148 100644 --- a/sys-apps/shadow/ChangeLog +++ b/sys-apps/shadow/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/shadow # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/shadow/ChangeLog,v 1.42 2003/12/09 22:16:21 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/shadow/ChangeLog,v 1.43 2003/12/10 08:13:49 seemant Exp $ + + 10 Dec 2003; Seemant Kulleen <seemant@gentoo.org> shadow-4.0.3-r9.ebuild: + don't install the getspnam manpage -- man-pages package handles that and does + it with a better version, to boot 09 Dec 2003; Seemant Kulleen <seemant@gentoo.org> shadow-4.0.3-r9.ebuild: don't install the id man page, coreutils does that diff --git a/sys-apps/shadow/Manifest b/sys-apps/shadow/Manifest index bbd872f4c56f..4d5e9f00aa91 100644 --- a/sys-apps/shadow/Manifest +++ b/sys-apps/shadow/Manifest @@ -1,5 +1,5 @@ -MD5 bc7f33ab8b946a99309e9a956111eec4 shadow-4.0.3-r9.ebuild 5288 -MD5 15d3db7c45655b83fe7c8f4bcb13f89b ChangeLog 8616 +MD5 ed4c43103ef46da5804c2ae1381670ef shadow-4.0.3-r9.ebuild 5286 +MD5 7e53e6aee5008aa804dfe69b99b4d2b5 ChangeLog 8809 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 MD5 13c8bec4c2cffb2d73c2f5aa01229d03 files/shadow-4.0.3-su-pam_open_session.patch-v2 4882 MD5 e70a5f61d37c3c67a4b860d8a6191dbc files/securetty 230 diff --git a/sys-apps/shadow/shadow-4.0.3-r9.ebuild b/sys-apps/shadow/shadow-4.0.3-r9.ebuild index f17c3f8949c4..76ca033ad74d 100644 --- a/sys-apps/shadow/shadow-4.0.3-r9.ebuild +++ b/sys-apps/shadow/shadow-4.0.3-r9.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/sys-apps/shadow/shadow-4.0.3-r9.ebuild,v 1.2 2003/12/09 22:16:21 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/shadow/shadow-4.0.3-r9.ebuild,v 1.3 2003/12/10 08:13:49 seemant Exp $ IUSE="pam selinux" @@ -66,9 +66,9 @@ src_compile() { elibtoolize local myconf="" - use nls || myconf="${myconf} --disable-nls" - use pam && myconf="${myconf} --with-libpam --with-libcrack" || myconf="${myconf} --without-libpam" - + use pam \ + && myconf="${myconf} --with-libpam --with-libcrack" \ + || myconf="${myconf} --without-libpam" ./configure --disable-desrpc \ --with-libcrypt \ @@ -76,6 +76,7 @@ src_compile() { --enable-shared=no \ --enable-static=yes \ --host=${CHOST} \ + `use_enable nls` \ ${myconf} || die "bad configure" # Parallel make fails sometimes @@ -140,7 +141,7 @@ src_install() { # also broken. Just do it over. rm -rf ${D}/usr/share/man/* - rm -f man/id.1 + rm -f man/id.1 man/getspnam.3 for x in man/*.[0-9] do [ -f ${x} ] && doman ${x} |