IGNOREPATH=/etc:/home:/var:/dev:/boot:/root:/tmp:/usr/local:/bin:/sbin:/mnt:/usr/src STRIPLIB=y STRIPBIN=y VERSION=1.4.3 PROGNAME="dejagnu $VERSION" DESC="\ DejaGnu \n\ \n\ DejaGnu is a framework for testing other programs. Its purpose is to \n\ provide a single front end for all tests. Think of it as a custom \n\ library of Tcl procedures crafted to support writing a test harness. A \n\ Test Harness is the testing infrastructure that is created to support \n\ a specific program or tool. \n\ \n\ DejaGnu is written in Expect, which in turn uses Tcl -- Tool command \n\ language. There is more information on Tcl at the Tcl web site on \n\ SourceForge, and the Expect web site is at NIST." BUILD=1 MAINTAINER="Mark Post " SOURCE=ftp://ftp.gnu.org/pub/gnu/dejagnu PKGNAME=dejagnu-$VERSION-s390-$BUILD TAG=OPT compile() { tar -zxvf $CWD/dejagnu-$VERSION.tar.gz cd dejagnu-$VERSION/ chown -R root.root . cat $CWD/makefile.in.diff | patch -p1 --backup ./configure --prefix=/usr make } install() { make install DESTDIR=/package-dejagnu mkdir -p /package-dejagnu/usr/doc/dejagnu-$VERSION cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \ /package-dejagnu/usr/doc/dejagnu-$VERSION ( cd /package-dejagnu/usr/man/man1 rm -f *.gz gzip -9 *.1 ) } attributes() { chown -R root.bin $PKG/package-dejagnu/usr/bin/ } special() { cd $PKG mv package-dejagnu/* ./ rmdir package-dejagnu cd $CTL cat $CWD/slack-desc > slack-desc sed -e 's%package-dejagnu/%%g' doinst.sh > doinst.sh.new cat doinst.sh.new > doinst.sh rm doinst.sh.new }