CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
gzip: aligned with upstream
authorVictor Martinez <pitillo@ono.com>
Tue, 10 Sep 2013 16:51:47 +0000 (16:51 +0000)
committerVictor Martinez <pitillo@ono.com>
Tue, 10 Sep 2013 16:51:47 +0000 (16:51 +0000)
gzip/.footprint
gzip/Pkgfile

index 39f58b6f90cd18fcdb24533d9ce48c04f6785e33..388d9f1705b3d0fd7ed345cf358481b2d9ddd146 100644 (file)
@@ -5,7 +5,7 @@ drwxr-xr-x      root/root       bin/
 drwxr-xr-x     root/root       usr/
 drwxr-xr-x     root/root       usr/bin/
 -rwxr-xr-x     root/root       usr/bin/gzexe
--rwxr-xr-x     root/root       usr/bin/uncompress
+lrwxrwxrwx     root/root       usr/bin/uncompress -> /bin/gunzip
 -rwxr-xr-x     root/root       usr/bin/zcmp
 -rwxr-xr-x     root/root       usr/bin/zdiff
 -rwxr-xr-x     root/root       usr/bin/zegrep
index e2dfbe4af8ead39017435bad458418d0990d2507..f32bc0fe0792319a4479ca3d8e95eafdbbeae7d1 100644 (file)
@@ -6,7 +6,7 @@
 
 name=gzip
 version=1.5
-release=1
+release=2
 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
 
 build() {
@@ -28,5 +28,10 @@ build() {
   ln -sf gzip.1.gz  $PKG/usr/man/man1/zcat.1.gz
   ln -sf zdiff.1.gz $PKG/usr/man/man1/zcmp.1.gz 
 
+  # make uncompress a symlink to gunzip, since the hardlink
+  # will not work if / and /usr are on different file systems.
+  rm $PKG/usr/bin/uncompress
+  ln -s /bin/gunzip $PKG/usr/bin/uncompress
+
   rm -r $PKG/usr/share
 }