# HG changeset patch # User Samuel Trassare # Date 1330366443 28800 # Node ID 55af167bb8061590961972b7b3da0e881ceb8e94 # Parent da2a09ed23b385a3910fe9dc9c027d73e7eb8437 up nss-ldapd 0.7.15 diff -r da2a09ed23b3 -r 55af167bb806 nss-ldapd/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nss-ldapd/description.txt Mon Feb 27 10:14:03 2012 -0800 @@ -0,0 +1,5 @@ +This is nss-pam-ldapd, a Name Service Switch (NSS) module and Pluggable +Authentication Module (PAM) that allows your LDAP server to provide user +account, group, host name, alias, netgroup, and basically any other information +that you would normally get from /etc flat files or NIS. It also allows you to +do authentication to an LDAP server. diff -r da2a09ed23b3 -r 55af167bb806 nss-ldapd/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nss-ldapd/receipt Mon Feb 27 10:14:03 2012 -0800 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="nss-ldapd" +VERSION="0.7.15" +CATEGORY="system-tools" +SHORT_DESC="NSS module for name lookups using LDAP (nss_ldap remplacement)." +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="nss-pam-ldapd" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://ch.tudelft.nl/~arthur/nss-ldapd/" +WGET_URL="http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-0.7.15.tar.gz" + +DEPENDS="cyrus-sasl krb5 libkrb5 libldap libssl libcomerr3" +BUILD_DEPENDS="cyrus-sasl-dev krb5-dev openldap-dev openssl-dev pam-dev \ +pam_ldap" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + rm -rf _pkg + mkdir -p _pkg/usr/lib _pkg/etc _pkg/usr/lib/security + sed -i 's/-D / /' */Makefile.in Makefile.in + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/etc $fs + cp -a $_pkg/usr/sbin $fs/usr + cp -a $_pkg/usr/lib $fs/usr +} + diff -r da2a09ed23b3 -r 55af167bb806 ruby-gtk2/receipt --- a/ruby-gtk2/receipt Mon Feb 27 08:34:30 2012 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -# SliTaz package receipt. - -# Note: uses the full Ruby/GNOME2 package but compiles only the selected -# GTK+ & Glade parts. Select parts to compile on the following line. -# Any unwanted extras (i.e. GNOME stuff) will be ignored. - -SELECTED_LIBS="glib2 pango atk gdk_pixbuf2 libglade gtk2" - -PACKAGE="ruby-gtk2" -VERSION="0.90.8" -CATEGORY="development" -SHORT_DESC="GTK+ bindings for Ruby." -MAINTAINER="ben@seawolfsanctuary.com" -SOURCE="ruby-gnome2-all" -TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="http://ruby-gnome2.sourceforge.jp/" -WGET_URL="$SF_MIRROR/ruby-gnome2/$TARBALL" - -DEPENDS="ruby gtk+ xorg-libXp xorg-libXxf86vm" -BUILD_DEPENDS="ruby ruby-dev gtk+-dev xorg-libXp-dev xorg-libXxf86vm-dev ruby-pkgconfig" - -TAGS="ruby programming gtk development" - -# Rules to configure and make the package. -compile_rules() -{ - cd $src - - # Select the parts to compile here: - for LIB in $SELECTED_LIBS; do - ruby extconf.rb $LIB && \ - make $MAKEFLAGS && \ - make DESTDIR=$PWD/_pkg install - done - -} - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - mkdir -p $fs/usr - cp -a $_pkg/usr $fs/ -}