From ce78c8394bf2f0d74a6efb05f41b78519d9457d8 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 17 Dec 2008 00:30:19 +0100 Subject: [PATCH] bzip2: install manpages into /usr/share/man. --HG-- extra : convert_revision : 3f86f3d08619ca146e3ff8fb6e4642a19fb01506 --- templates/bzip2-fix-install.diff | 56 +++++++++++++++++++++++++++++--- templates/bzip2.tmpl | 15 ++++++++- 2 files changed, 65 insertions(+), 6 deletions(-) diff --git a/templates/bzip2-fix-install.diff b/templates/bzip2-fix-install.diff index 9e9f2a0767c..58fc82dd4dd 100644 --- a/templates/bzip2-fix-install.diff +++ b/templates/bzip2-fix-install.diff @@ -1,6 +1,35 @@ ---- Makefile.orig 2008-10-23 01:37:56.000000000 +0200 -+++ Makefile 2008-10-23 01:39:30.000000000 +0200 -@@ -90,14 +90,13 @@ install: bzip2 bzip2recover +--- Makefile.orig 2008-12-17 00:26:13.000000000 +0100 ++++ Makefile 2008-12-17 00:29:28.000000000 +0100 +@@ -25,7 +25,7 @@ CFLAGS=-Wall -Winline -O2 -g $(BIGFILES) + + # Where you want it installed when you do 'make install' + PREFIX=/usr/local +- ++MANDIR=$(PREFIX)/share/man + + OBJS= blocksort.o \ + huffman.o \ +@@ -72,8 +72,8 @@ test: bzip2 + install: bzip2 bzip2recover + if ( test ! -d $(PREFIX)/bin ) ; then mkdir -p $(PREFIX)/bin ; fi + if ( test ! -d $(PREFIX)/lib ) ; then mkdir -p $(PREFIX)/lib ; fi +- if ( test ! -d $(PREFIX)/man ) ; then mkdir -p $(PREFIX)/man ; fi +- if ( test ! -d $(PREFIX)/man/man1 ) ; then mkdir -p $(PREFIX)/man/man1 ; fi ++ if ( test ! -d $(MANDIR) ) ; then mkdir -p $(MANDIR) ; fi ++ if ( test ! -d $(MANDIR)/man1 ) ; then mkdir -p $(MANDIR)/man1 ; fi + if ( test ! -d $(PREFIX)/include ) ; then mkdir -p $(PREFIX)/include ; fi + cp -f bzip2 $(PREFIX)/bin/bzip2 + cp -f bzip2 $(PREFIX)/bin/bunzip2 +@@ -83,30 +83,29 @@ install: bzip2 bzip2recover + chmod a+x $(PREFIX)/bin/bunzip2 + chmod a+x $(PREFIX)/bin/bzcat + chmod a+x $(PREFIX)/bin/bzip2recover +- cp -f bzip2.1 $(PREFIX)/man/man1 +- chmod a+r $(PREFIX)/man/man1/bzip2.1 ++ cp -f bzip2.1 $(MANDIR)/man1 ++ chmod a+r $(MANDIR)/man1/bzip2.1 + cp -f bzlib.h $(PREFIX)/include + chmod a+r $(PREFIX)/include/bzlib.h cp -f libbz2.a $(PREFIX)/lib chmod a+r $(PREFIX)/lib/libbz2.a cp -f bzgrep $(PREFIX)/bin/bzgrep @@ -16,5 +45,22 @@ - ln -s -f $(PREFIX)/bin/bzdiff $(PREFIX)/bin/bzcmp + cd $(PREFIX)/bin && ln -s bzdiff bzcmp chmod a+x $(PREFIX)/bin/bzdiff - cp -f bzgrep.1 bzmore.1 bzdiff.1 $(PREFIX)/man/man1 - chmod a+r $(PREFIX)/man/man1/bzgrep.1 +- cp -f bzgrep.1 bzmore.1 bzdiff.1 $(PREFIX)/man/man1 +- chmod a+r $(PREFIX)/man/man1/bzgrep.1 +- chmod a+r $(PREFIX)/man/man1/bzmore.1 +- chmod a+r $(PREFIX)/man/man1/bzdiff.1 +- echo ".so man1/bzgrep.1" > $(PREFIX)/man/man1/bzegrep.1 +- echo ".so man1/bzgrep.1" > $(PREFIX)/man/man1/bzfgrep.1 +- echo ".so man1/bzmore.1" > $(PREFIX)/man/man1/bzless.1 +- echo ".so man1/bzdiff.1" > $(PREFIX)/man/man1/bzcmp.1 ++ cp -f bzgrep.1 bzmore.1 bzdiff.1 $(MANDIR)/man1 ++ chmod a+r $(MANDIR)/man1/bzgrep.1 ++ chmod a+r $(MANDIR)/man1/bzmore.1 ++ chmod a+r $(MANDIR)/man1/bzdiff.1 ++ echo ".so man1/bzgrep.1" > $(MANDIR)/man1/bzegrep.1 ++ echo ".so man1/bzgrep.1" > $(MANDIR)/man1/bzfgrep.1 ++ echo ".so man1/bzmore.1" > $(MANDIR)/man1/bzless.1 ++ echo ".so man1/bzdiff.1" > $(MANDIR)/man1/bzcmp.1 + + clean: + rm -f *.o libbz2.a bzip2 bzip2recover \ diff --git a/templates/bzip2.tmpl b/templates/bzip2.tmpl index a9c174956db..4eb978abb80 100644 --- a/templates/bzip2.tmpl +++ b/templates/bzip2.tmpl @@ -8,6 +8,19 @@ make_install_args="PREFIX=$XBPS_DESTDIR/$pkgname-$version/usr" short_desc="The bzip2 compression library" maintainer="Juan RP " checksum=f7bf5368309d76e5daf3a89d4d1bea688dac7780742e7a0ae1af19be9316fe22 -long_desc= +long_desc=" + bzip2 is a freely available, patent free, high-quality data compressor. + It typically compresses files to within 10% to 15% of the best available + techniques, whilst being around twice as fast at compression and six times + faster at decompression. + + bzip2 compresses files using the Burrows-Wheeler block-sorting text + compression algorithm, and Huffman coding. Compression is generally + considerably better than that achieved by more conventional LZ77/LZ78-based + compressors, and approaches the performance of the PPM family of statistical + compressors. + + The archive file format of bzip2 (.bz2) is incompatible with that of its + predecessor, bzip (.bz)." base_chroot=yes