wok-next rev 11859
up nss-ldapd 0.7.15
author | Samuel Trassare <samuel_trassare@yahoo.com> |
---|---|
date | Mon Feb 27 10:14:03 2012 -0800 (2012-02-27) |
parents | da2a09ed23b3 |
children | 54381cf19175 |
files | nss-ldapd/description.txt nss-ldapd/receipt ruby-gtk2/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/nss-ldapd/description.txt Mon Feb 27 10:14:03 2012 -0800 1.3 @@ -0,0 +1,5 @@ 1.4 +This is nss-pam-ldapd, a Name Service Switch (NSS) module and Pluggable 1.5 +Authentication Module (PAM) that allows your LDAP server to provide user 1.6 +account, group, host name, alias, netgroup, and basically any other information 1.7 +that you would normally get from /etc flat files or NIS. It also allows you to 1.8 +do authentication to an LDAP server.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/nss-ldapd/receipt Mon Feb 27 10:14:03 2012 -0800 2.3 @@ -0,0 +1,38 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="nss-ldapd" 2.7 +VERSION="0.7.15" 2.8 +CATEGORY="system-tools" 2.9 +SHORT_DESC="NSS module for name lookups using LDAP (nss_ldap remplacement)." 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +SOURCE="nss-pam-ldapd" 2.12 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.13 +WEB_SITE="http://ch.tudelft.nl/~arthur/nss-ldapd/" 2.14 +WGET_URL="http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-0.7.15.tar.gz" 2.15 + 2.16 +DEPENDS="cyrus-sasl krb5 libkrb5 libldap libssl libcomerr3" 2.17 +BUILD_DEPENDS="cyrus-sasl-dev krb5-dev openldap-dev openssl-dev pam-dev \ 2.18 +pam_ldap" 2.19 + 2.20 +# Rules to configure and make the package. 2.21 +compile_rules() 2.22 +{ 2.23 + cd $src 2.24 + rm -rf _pkg 2.25 + mkdir -p _pkg/usr/lib _pkg/etc _pkg/usr/lib/security 2.26 + sed -i 's/-D / /' */Makefile.in Makefile.in 2.27 + ./configure --prefix=/usr --infodir=/usr/share/info \ 2.28 + --mandir=/usr/share/man $CONFIGURE_ARGS && 2.29 + make && 2.30 + make DESTDIR=$PWD/_pkg install 2.31 +} 2.32 + 2.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.34 +genpkg_rules() 2.35 +{ 2.36 + mkdir -p $fs/usr 2.37 + cp -a $_pkg/etc $fs 2.38 + cp -a $_pkg/usr/sbin $fs/usr 2.39 + cp -a $_pkg/usr/lib $fs/usr 2.40 +} 2.41 +
3.1 --- a/ruby-gtk2/receipt Mon Feb 27 08:34:30 2012 -0800 3.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 3.3 @@ -1,43 +0,0 @@ 3.4 -# SliTaz package receipt. 3.5 - 3.6 -# Note: uses the full Ruby/GNOME2 package but compiles only the selected 3.7 -# GTK+ & Glade parts. Select parts to compile on the following line. 3.8 -# Any unwanted extras (i.e. GNOME stuff) will be ignored. 3.9 - 3.10 -SELECTED_LIBS="glib2 pango atk gdk_pixbuf2 libglade gtk2" 3.11 - 3.12 -PACKAGE="ruby-gtk2" 3.13 -VERSION="0.90.8" 3.14 -CATEGORY="development" 3.15 -SHORT_DESC="GTK+ bindings for Ruby." 3.16 -MAINTAINER="ben@seawolfsanctuary.com" 3.17 -SOURCE="ruby-gnome2-all" 3.18 -TARBALL="$SOURCE-$VERSION.tar.gz" 3.19 -WEB_SITE="http://ruby-gnome2.sourceforge.jp/" 3.20 -WGET_URL="$SF_MIRROR/ruby-gnome2/$TARBALL" 3.21 - 3.22 -DEPENDS="ruby gtk+ xorg-libXp xorg-libXxf86vm" 3.23 -BUILD_DEPENDS="ruby ruby-dev gtk+-dev xorg-libXp-dev xorg-libXxf86vm-dev ruby-pkgconfig" 3.24 - 3.25 -TAGS="ruby programming gtk development" 3.26 - 3.27 -# Rules to configure and make the package. 3.28 -compile_rules() 3.29 -{ 3.30 - cd $src 3.31 - 3.32 - # Select the parts to compile here: 3.33 - for LIB in $SELECTED_LIBS; do 3.34 - ruby extconf.rb $LIB && \ 3.35 - make $MAKEFLAGS && \ 3.36 - make DESTDIR=$PWD/_pkg install 3.37 - done 3.38 - 3.39 -} 3.40 - 3.41 -# Rules to gen a SliTaz package suitable for Tazpkg. 3.42 -genpkg_rules() 3.43 -{ 3.44 - mkdir -p $fs/usr 3.45 - cp -a $_pkg/usr $fs/ 3.46 -}