--- applix-english-4.3.orig/debian/changelog +++ applix-english-4.3/debian/changelog @@ -0,0 +1,10 @@ +applix-english (4.3-2) unstable; urgency=low + + * Converted from RPM binary format to debian + + -- Joey Hess Fri, 16 May 1997 00:40:39 -0400 + + +Local variables: +mode: debian-changelog +End: --- applix-english-4.3.orig/debian/control +++ applix-english-4.3/debian/control @@ -0,0 +1,14 @@ +Source: applix-english +Section: unknown +Priority: extra +Maintainer: Joey Hess +Standards-Version: 2.1.1.0 + +Package: applix-english +Architecture: i386 +Depends: applix +Description: Applixware Menus and Help in English + This is a Converted RPM package. + . + The English versions of the menu structure and some of the + basic help documents, for applixware. --- applix-english-4.3.orig/debian/copyright +++ applix-english-4.3/debian/copyright @@ -0,0 +1,17 @@ +This package was debianized by the alien program by converting +a binary RPM Package on Fri, 16 May 1997 00:40:39 -0400. + +Copyright: Commercial software. Do not distribute. + +Information from the binary Package: +Name : applix-english Distribution: Applixware for Red Hat Linux +Version : 4.3 Vendor: Red Hat Software +Release : 1 Build Date: Thu Mar 20 15:25:05 1997 +Install date: (none) Build Host: imp.redhat.com +Group : X11/Applications Source RPM: applix-4.3-1.nosrc.rpm +Size : 53181805 +Summary : Applixware Menus and Help in English +Description : +The English versions of the menu structure and some of the +basic help documents. + --- applix-english-4.3.orig/debian/rules +++ applix-english-4.3/debian/rules @@ -0,0 +1,55 @@ +#!/usr/bin/make -f +# +# This is a special rules files for handling alien or binary packages +# Christoph Lameter, October 30, 1996 + +package=applix-english + +debian/build: + $(checkdir) + touch debian/build + +clean: + $(checkdir) + -rm -f debian/build + -rm -rf *~ debian/tmp debian/*~ debian/files* + +binary-indep: checkroot debian/build + $(checkdir) +# There are no architecture-independent files to be uploaded +# generated by this package. If there were any they would be +# made here. + +binary-arch: checkroot debian/build + $(checkdir) + -rm -rf debian/tmp +# Install binary package + install -d debian/tmp + install -d debian/tmp/usr/X11R6/lib/X11 + # Moving the files like this is a little nasty, but this way we + # need far less disk space to build the package.. + mv opt/applix debian/tmp/usr/X11R6/lib/X11 + chmod +rx debian/tmp/usr/X11R6/lib/X11/applix debian/tmp/usr/X11R6/lib/X11/applix/axdata debian/tmp/usr/X11R6/lib/X11/applix/axdata/elflib + debstd + dpkg-gencontrol + dpkg --build debian/tmp .. + mv debian/tmp/usr/X11R6/lib/X11/applix opt + +define checkdir + test -f debian/rules +endef + +# Below here is fairly generic really + +binary: binary-indep binary-arch + +build: debian/build + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +checkroot: + $(checkdir) + test root = "`whoami`" + +.PHONY: binary binary-arch binary-indep clean checkroot