summaryrefslogtreecommitdiff
path: root/gzip
diff options
context:
space:
mode:
authorJohannes Winkelmann <jw@smts.ch>2006-02-23 15:26:10 +0000
committerJohannes Winkelmann <jw@smts.ch>2006-02-23 15:26:10 +0000
commite3afe2298e821d7f5860128720e665d8fb3bd641 (patch)
treebfb499432688352b1140b13ad8252c8e4e739006 /gzip
downloadcore-e3afe2298e821d7f5860128720e665d8fb3bd641.tar.gz
core-e3afe2298e821d7f5860128720e665d8fb3bd641.tar.xz
create branch for 2.2
Diffstat (limited to 'gzip')
-rw-r--r--gzip/.footprint25
-rw-r--r--gzip/.md5sum2
-rw-r--r--gzip/Pkgfile30
3 files changed, 57 insertions, 0 deletions
diff --git a/gzip/.footprint b/gzip/.footprint
new file mode 100644
index 00000000..5b180645
--- /dev/null
+++ b/gzip/.footprint
@@ -0,0 +1,25 @@
+drwxr-xr-x root/root bin/
+lrwxrwxrwx root/root bin/gunzip -> gzip
+-rwxr-xr-x root/root bin/gzip
+lrwxrwxrwx root/root bin/zcat -> gzip
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/gzexe
+lrwxrwxrwx root/root usr/bin/zcmp -> zdiff
+-rwxr-xr-x root/root usr/bin/zdiff
+-rwxr-xr-x root/root usr/bin/zforce
+-rwxr-xr-x root/root usr/bin/zgrep
+-rwxr-xr-x root/root usr/bin/zmore
+-rwxr-xr-x root/root usr/bin/znew
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+lrwxrwxrwx root/root usr/man/man1/gunzip.1.gz -> gzip.1.gz
+-rw-r--r-- root/root usr/man/man1/gzexe.1.gz
+-rw-r--r-- root/root usr/man/man1/gzip.1.gz
+lrwxrwxrwx root/root usr/man/man1/zcat.1.gz -> gzip.1.gz
+lrwxrwxrwx root/root usr/man/man1/zcmp.1.gz -> zdiff.1.gz
+-rw-r--r-- root/root usr/man/man1/zdiff.1.gz
+-rw-r--r-- root/root usr/man/man1/zforce.1.gz
+-rw-r--r-- root/root usr/man/man1/zgrep.1.gz
+-rw-r--r-- root/root usr/man/man1/zmore.1.gz
+-rw-r--r-- root/root usr/man/man1/znew.1.gz
diff --git a/gzip/.md5sum b/gzip/.md5sum
new file mode 100644
index 00000000..fccfaeba
--- /dev/null
+++ b/gzip/.md5sum
@@ -0,0 +1,2 @@
+39053e044b18ecd0627f80fbe7cfeaad gzip-1.2.4a.tar.gz
+74b81d7ec67a369e4e782a16d6f65afc gzip-1.2.4b.patch
diff --git a/gzip/Pkgfile b/gzip/Pkgfile
new file mode 100644
index 00000000..91408212
--- /dev/null
+++ b/gzip/Pkgfile
@@ -0,0 +1,30 @@
+# Description: GNU compression utility (replacement for compress)
+# URL: http://www.gzip.org/
+# Maintainer: Per Lidén <per@fukt.bth.se>
+
+name=gzip
+version=1.2.4b
+release=1
+source=(http://mirrors.sunsite.dk/gnu/$name/$name-1.2.4a.tar.gz \
+ http://www.gzip.org/$name-$version.patch)
+
+build() {
+ cd $name-1.2.4a
+ patch -p1 < ../$name-$version.patch
+ ./configure --prefix=/usr
+ make all
+ mkdir -p $PKG/bin $PKG/usr/man
+ make prefix=$PKG/usr install
+ rm -rf $PKG/usr/{lib,info}
+ (cd $PKG/usr/bin; mv gzip $PKG/bin; rm gunzip zcat zcmp)
+ (cd $PKG/usr/man/man1; rm gunzip.1 zcat.1 zcmp.1)
+ (cd $PKG/bin; ln -s gzip gunzip; ln -s gzip zcat)
+ (cd $PKG/usr/bin; ln -s zdiff zcmp)
+ sed 's|"/usr/bin"|/bin|g' $PKG/usr/bin/gzexe > $PKG/usr/bin/gzexe.tmp
+ mv $PKG/usr/bin/gzexe.tmp $PKG/usr/bin/gzexe
+ chmod 755 $PKG/usr/bin/gzexe
+ (cd $PKG/usr/man/man1
+ ln -sf gzip.1.gz gunzip.1.gz
+ ln -sf gzip.1.gz zcat.1.gz
+ ln -sf zdiff.1.gz zcmp.1.gz)
+}

Generated by cgit