diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-26 20:41:56 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-26 20:41:56 +0000 |
commit | 347d54b0226ea216bb302a04b07ad9160e865f92 (patch) | |
tree | 3dec1784f8f6d0a53719da6cd6545806946b50fb /net-libs | |
parent | *** empty log message *** (diff) | |
download | historical-347d54b0226ea216bb302a04b07ad9160e865f92.tar.gz historical-347d54b0226ea216bb302a04b07ad9160e865f92.tar.bz2 historical-347d54b0226ea216bb302a04b07ad9160e865f92.zip |
*** empty log message ***
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/nss_ldap/nss_ldap-113.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/net-libs/nss_ldap/nss_ldap-113.ebuild b/net-libs/nss_ldap/nss_ldap-113.ebuild new file mode 100644 index 000000000000..064be7d79104 --- /dev/null +++ b/net-libs/nss_ldap/nss_ldap-113.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-libs/nss_ldap/nss_ldap-113.ebuild,v 1.1 2000/08/26 20:41:56 achim Exp $ + +P=nss_ldap-113 +A=nss_ldap-113.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="NSS LDAP Module" +HOMEPAGE="http://www.padl.com/nss_ldap.html" +SRC_URI="ftp://ftp.padl.com/pub/"${A} + +src_unpack() { + unpack ${A} + cd ${S} + sed -e "s/^NSFLAGS/#NSFLAGS/" \ + -e "s/-lsasl//" \ + -e "s/-O/${CFLAGS}/" Makefile.linux.openldap2 > Makefile +} + +src_compile() { + cd ${S} + make +} + +src_install() { + cd ${S} + into / + dolib.so libnss_ldap-2.1.3.so + into /usr + doman *.1 + insinto /etc + doins nsswitch.ldap + insinto /usr/bin + insopts -m755 + doins ldaptest.pl + dodoc ldap.conf ANNOUNCE BUGS ChangeLog CONTRIBUTORS COPYING.LIB + dodoc CVSVersionInfo.txt IRS README rfc*.txt nsswitch.test +} + + + + + + |