#!/bin/sh # Set initial variables: CWD=`pwd` if [ "$TMP" = "" ]; then TMP=/tmp fi PKG=$TMP/package-yptools # Package version number: VERSION=2.8 ARCH=i486 BUILD=3 if [ ! -d $TMP ]; then mkdir -p $TMP # location to build the source fi if [ ! -d $PKG ]; then mkdir -p $PKG # place for the package to be built fi echo "+==============+" echo "| yp-tools-2.8 |" echo "+==============+" cd $TMP mkdir -p $PKG/etc # Add etc/nsswitch.conf-nis as a full NIS+ example config file: zcat $CWD/nsswitch.conf-nis.gz > $PKG/etc/nsswitch.conf-nis.new tar xjvf $CWD/yp-tools-2.8.tar.bz2 cd yp-tools-2.8 ./configure --prefix=/usr --disable-domainname i486-slackware-linux make clean ./configure --prefix=/usr --disable-domainname i486-slackware-linux make CFLAGS=-O2 mkdir -p $PKG/var/yp cat etc/nicknames > $PKG/var/yp/nicknames.new mkdir -p $PKG/usr/share/locale/de/LC_MESSAGES cat po/de.gmo > $PKG/usr/share/locale/de/LC_MESSAGES/yp-tools.mo cd src strip ypcat ypmatch yppasswd yppoll ypset ypwhich mkdir -p $PKG/usr/bin chown root.bin $PKG/usr/bin cat ypcat > $PKG/usr/bin/ypcat cat ypmatch > $PKG/usr/bin/ypmatch cat yppasswd > $PKG/usr/bin/yppasswd cat ypwhich > $PKG/usr/bin/ypwhich ( cd $PKG/usr/bin chown root.bin ypcat ypmatch yppasswd ypwhich chmod 755 ypcat ypmatch yppasswd ypwhich ) ( cd $PKG/usr/bin rm -rf ypchfn ypchsh ln -sf yppasswd ypchfn ln -sf yppasswd ypchsh ) mkdir -p $PKG/usr/sbin chown root.bin $PKG/usr/sbin cat yppoll > $PKG/usr/sbin/yppoll cat ypset > $PKG/usr/sbin/ypset ( cd $PKG/usr/sbin chown root.bin yppoll ypset chmod 755 yppoll ypset ) cd ../man mkdir -p $PKG/usr/man/man{1,5,8} cat nicknames.5 | gzip -9c > $PKG/usr/man/man5/nicknames.5.gz for file in *.1 ; do cat $file | gzip -9c > $PKG/usr/man/man1/$file.gz done for file in *.8 ; do cat $file | gzip -9c > $PKG/usr/man/man8/$file.gz done cd .. mkdir -p $PKG/usr/doc/yp-tools-2.8 cp -a ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO \ $PKG/usr/doc/yp-tools-2.8 chown -R root.root $PKG/usr/doc/yp-tools-2.8 chmod 644 $PKG/usr/doc/yp-tools-2.8/* echo "+============+" echo "| ypbind-3.3 |" echo "+============+" cd $TMP tar xzvf $CWD/ypbind-3.3.tar.gz cd ypbind-3.3 zcat $CWD/ypbind-3.3-glibc5.diff.gz | patch -p1 --backup --verbose --suffix=.orig zcat $CWD/ypbind-3.3-glibc-2.2.2.diff.gz | patch -p1 --backup --verbose --suffix=.orig ./configure --prefix=/usr \ i486-slackware-linux make clean ./configure --prefix=/usr \ i486-slackware-linux make -i strip ypbind cat ypbind > $PKG/usr/sbin/ypbind-3.3 chown root.bin $PKG/usr/sbin/ypbind-3.3 chmod 755 $PKG/usr/sbin/ypbind-3.3 cat ypbind.8 | gzip -9c > $PKG/usr/man/man8/ypbind-3.3.8.gz mkdir -p $PKG/usr/doc/ypbind-3.3 cp -a COPYING INSTALL README TODO yp.conf.example $PKG/usr/doc/ypbind-3.3 chown root.root $PKG/usr/doc/ypbind-3.3/* chmod 644 $PKG/usr/doc/ypbind-3.3/* #cp yp.conf.example $PKG/etc/yp.conf-example echo "+================+" echo "| ypbind-mt-1.14 |" echo "+================+" cd $TMP tar xjvf $CWD/ypbind-mt-1.14.tar.bz2 cd ypbind-mt-1.14 ./configure --prefix=/usr \ i486-slackware-linux # Hard to believe how sloppy these tarballs are. This is why I got complaints # that YP didn't work but it was "fixed with a simple recompile." make clean ./configure --prefix=/usr \ i486-slackware-linux make mkdir -p $PKG/etc cat etc/yp.conf > $PKG/etc/yp.conf.new strip src/ypbind cat src/ypbind > $PKG/usr/sbin/ypbind chown root.bin $PKG/usr/sbin/ypbind chmod 755 $PKG/usr/sbin/ypbind cat man/yp.conf.5 | gzip -9c > $PKG/usr/man/man5/yp.conf.5.gz cat man/ypbind.8 | gzip -9c > $PKG/usr/man/man8/ypbind.8.gz mkdir -p $PKG/usr/share/locale/de/LC_MESSAGES cat po/de.gmo > $PKG/usr/share/locale/de/LC_MESSAGES/ypbind-mt.mo mkdir -p $PKG/usr/doc/ypbind-mt-1.14 cp -a ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO \ $PKG/usr/doc/ypbind-mt-1.14 chown root.root $PKG/usr/doc/ypbind-mt-1.14/* chmod 644 $PKG/usr/doc/ypbind-mt-1.14/* echo "+=============+" echo "| ypmake-0.11 |" echo "+=============+" cd $TMP tar xjvf $CWD/ypmake-0.11.tar.bz2 cd ypmake-0.11 ./configure # I'm just not taking chances with the cleanliness of these sources anymore... make clean ./configure make strip ypmake cat ypmake > $PKG/usr/sbin/ypmake chown root.bin $PKG/usr/sbin/ypmake chmod 755 $PKG/usr/sbin/ypmake mkdir -p $PKG/usr/lib/yp/ypmake install -o root -g root -m 644 aliases arrays automount config ethers group \ gshadow hosts netgroup netid networks passwd protocols publickey rpc \ services shadow ypservers $PKG/usr/lib/yp/ypmake cat ypmake.conf.sample > $PKG/var/yp/ypmake.conf.new cat ypmake.conf.man | gzip -9c > $PKG/usr/man/man5/ypmake.conf.5.gz cat ypmake.man | gzip -9c > $PKG/usr/man/man8/ypmake.8.gz mkdir -p $PKG/usr/doc/ypmake-0.11 cp -a CHANGES README TODO $PKG/usr/doc/ypmake-0.11 chmod 644 $PKG/usr/doc/ypmake-0.11/* chown root.root $PKG/usr/doc/ypmake-0.11/* echo "+============+" echo "| ypserv-2.9 |" echo "+============+" cd $TMP tar xjvf $CWD/ypserv-2.9.tar.bz2 cd ypserv-2.9 # --with-ndbm=yes # Support for this was discontinued upstream # --enable-tcp-wrapper ./configure \ --enable-fqdn \ --enable-yppasswd \ i486-slackware-linux make clean ./configure \ --enable-fqdn \ --enable-yppasswd \ i486-slackware-linux make ( cd scripts for file in create_printcap match_printcap pwupdate ypinit ypxfr_1perday ypxfr_1perhour ypxfr_2perday ; do cat $file > $PKG/usr/lib/yp/$file chmod 755 $PKG/usr/lib/yp/$file done for file in pwupdate.8 ypinit.8 ; do gzip -9c $file > $PKG/usr/man/man8/$file.gz done ) for FILE in makedbm mknetid revnetgroup yphelper ypxfr ; do ( cd $FILE strip $FILE cat $FILE > $PKG/usr/lib/yp/$FILE chmod 755 $PKG/usr/lib/yp/$FILE cat ${FILE}.8 | gzip -9c > $PKG/usr/man/man8/${FILE}.8.gz ) done cat rpc.ypxfrd/ypxfrd.8 | gzip -9c > $PKG/usr/man/man8/ypxfrd.8.gz for FILE in ypserv rpc.yppasswdd rpc.ypxfrd yppush ; do ( cd $FILE strip $FILE cat $FILE > $PKG/usr/sbin/$FILE chown root.bin $PKG/usr/sbin/$FILE chmod 755 $PKG/usr/sbin/$FILE cat ${FILE}.8 | gzip -9c > $PKG/usr/man/man8/${FILE}.8.gz ) done cat rpc.yppasswdd/yppasswdd.8 | gzip -9c > $PKG/usr/man/man8/yppasswdd.8.gz cat scripts/ypMakefile > $PKG/var/yp/Makefile.new cat etc/securenets > $PKG/var/yp/securenets.new echo "# This file is part of the YP server package -- see 'man netgroup'" \ > $PKG/etc/netgroup.new cat etc/netgroup >> $PKG/etc/netgroup.new cat etc/netgroup.5 | gzip -9c > $PKG/usr/man/man5/netgroup.5.gz cat etc/ypserv.conf.5 | gzip -9c > $PKG/usr/man/man5/ypserv.conf.5.gz mkdir -p $PKG/usr/include/rpcsvc cat lib/ypxfrd.x > $PKG/usr/include/rpcsvc/ypxfrd.x mkdir -p $PKG/usr/doc/ypserv-2.9 cp -a \ AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO \ $PKG/usr/doc/ypserv-2.9 chmod 644 $PKG/usr/doc/ypserv-2.9/* chown root.root $PKG/usr/doc/ypserv-2.9/* mkdir -p $PKG/etc/rc.d zcat $CWD/rc.yp.gz > $PKG/etc/rc.d/rc.yp.new chmod 755 $PKG/etc/rc.d/rc.yp.new # install script and package description: mkdir -p $PKG/install cat << EOF > $PKG/install/doinst.sh config() { NEW="\$1" OLD="\`dirname \$NEW\`/\`basename \$NEW .new\`" # If there's no config file by that name, mv it over: if [ ! -r \$OLD ]; then mv \$NEW \$OLD elif [ "\`cat \$OLD | md5sum\`" = "\`cat \$NEW | md5sum\`" ]; then # toss the redundant copy rm \$NEW fi # Otherwise, we leave the .new copy for the admin to consider... } config etc/nsswitch.conf-nis.new config etc/netgroup.new config etc/yp.conf.new config etc/rc.d/rc.yp.new config var/yp/nicknames.new config var/yp/ypmake.conf.new config var/yp/Makefile.new config var/yp/securenets.new rm -f etc/nsswitch.conf.new etc/nsswitch.conf-nis.new etc/netgroup.new etc/yp.conf.new var/yp/nicknames.new var/yp/ypmake.conf.new var/yp/Makefile.new var/yp/securenets.new EOF cat $CWD/slack-desc > $PKG/install/slack-desc # Build the package: cd $PKG makepkg -l y -c n $TMP/yptools-$VERSION-$ARCH-$BUILD.tgz # Clean up the extra stuff: if [ "$1" = "--cleanup" ]; then for dir in \ yp-tools-2.8 ypbind-3.3 ypbind-mt-1.14 ypmake-0.11 ypserv-2.9 \ ; do rm -rf $TMP/$dir done rm -rf $PKG fi