1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
--- applix-4.2.orig/debian/changelog
+++ applix-4.2/debian/changelog
@@ -0,0 +1,9 @@
+applix (4.2-2) unstable; urgency=low
+
+ * Converted from RPM binary format to debian
+
+ -- Joey Hess <joey@kitenet.net> Fri, 31 Jan 1997 22:50:29 -0500
+
+Local variables:
+mode: debian-changelog
+End:
--- applix-4.2.orig/debian/control
+++ applix-4.2/debian/control
@@ -0,0 +1,12 @@
+Source: applix
+Section: unknown
+Priority: extra
+Maintainer: Joey Hess <joey@kitenet.net>
+Standards-Version: 2.1.1.0
+
+Package: applix
+Architecture: i386
+Depends: ${shlibs:Depends}
+Description: A Complete X Windows based Office Suite
+ Redhat's Applixware, a Office Suite for X.
+ This is a Converted RPM package.
--- applix-4.2.orig/debian/copyright
+++ applix-4.2/debian/copyright
@@ -0,0 +1,15 @@
+This package was debianized by the alien program by converting
+a binary RPM Package on Fri, 31 Jan 1997 22:50:29 -0500.
+
+Copyright: Commercial software. Do not distribute.
+
+Information from the binary Package:
+Name : applix Distribution: Red Hat Linux Rembrandt
+Version : 4.2 Vendor: Red Hat Software
+Release : 2 Build Date: Wed Jul 03 12:13:21 1996
+Install date: (none) Build Host: porky.redhat.com
+Group : X11/Applications Source RPM: applix-4.2-2.src.rpm
+Size : 150073902
+Summary : (none)
+Description :
+A Complete X Windows based Office Suite
--- applix-4.2.orig/debian/rules
+++ applix-4.2/debian/rules
@@ -0,0 +1,57 @@
+#!/usr/bin/make -f
+#
+# This is a special rules files for handling alien or binary packages
+# Christoph Lameter, October 30, 1996
+
+package=applix
+
+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/bin
+ install opt/bin/applix debian/tmp/usr/X11R6/bin
+ 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
+ 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
--- applix-4.2.orig/debian/README.debian
+++ applix-4.2/debian/README.debian
@@ -0,0 +1,7 @@
+This is a converted RPM package.
+
+I decided to move the files out of /opt, since debian doesn't have an /opt
+yet. If the applix manual talks about files in /opt, look in
+/usr/X11R6/lib/X11/applix, instead.
+
+-- Joey Hess
--- applix-4.2.orig/debian/menu
+++ applix-4.2/debian/menu
@@ -0,0 +1 @@
+x11 Apps/Editors applix none "Applixware" applix
--- applix-4.2.orig/opt/bin/applix
+++ applix-4.2/opt/bin/applix
@@ -1,3 +1,3 @@
#!/bin/sh
-/opt/applix/applix $*
+/usr/X11R6/lib/X11/applix/applix $*
|