summaryrefslogtreecommitdiff
path: root/archivers/bzip2
AgeCommit message (Collapse)AuthorFilesLines
2004-01-24Support BUILDLINK_DEPENDS.<pkg> being a list of values.jlam1-2/+2
2004-01-07Use PKGLIBTOOL instead of LIBTOOL to call the libtool wrapper.jlam1-4/+4
2004-01-06whitespacejlam1-2/+2
2004-01-05bl3ifyjlam1-3/+6
2004-01-05Use S/+$// instead of C/\+$// to save a backslash. Very highlyjlam1-2/+2
recommended by seb :)
2004-01-05Sprinkle a few double quotes here and there.jlam1-4/+4
2004-01-05Sow BUILDLINK_USE_BUILTIN.<pkg> and reap _NEED_<PKG> variables.jlam1-19/+12
2004-01-04Re-arrange to match example buildlink3.mk file in bsd.buildlink3.mk.jlam1-4/+4
2004-01-03Initial sprinkling of work-in-progress buildlink3.mk files for using thejlam1-0/+70
buildlink3 framework.
2003-12-30Add RCS tagscjep1-0/+1
2003-12-05Change the makefile patch to be even more libtool friendly to allowerh2-25/+71
this to build on AIX. Essentially: s/.o/.lo/g
2003-12-03Use libtool when installing, and install libbz2 first.erh1-4/+4
2003-09-25test CC_VERSION rather than doing our own dance to figure out if we'regrant1-4/+2
using gcc or not.
2003-09-25add Darwin-* to _INCOMPAT_BZ2: it has bzlib.h, but only a static libbz2danw1-2/+3
2003-09-18Use libtool with correct --mode argument. From Ron Roskens in PR 22824.wiz3-9/+9
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-23Solaris 9's bzip2 is good enough.salo1-5/+3
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-03-28Remove superfluous whitespace.wiz1-2/+2
2003-03-18Make this compile on Irix with the MIPSPro compiler by removing gcc-onlyjschauma3-5/+15
CFLAGS from a patch iff CC is not gcc.
2003-02-04Reorder the two targets for aesthetic reasons.jlam1-3/+3
2003-02-04Create a fake libtool archive since libbz2.la isnt in the base system butjlam1-1/+14
the package creates one.
2002-10-31update MASTER_SITES and HOMEPAGE.grant1-3/+3
2002-10-05Unused.wiz1-69/+0
2002-08-25Merge packages from the buildlink2 branch back into the main trunk thatjlam2-3/+59
have been converted to USE_BUILDLINK2.
2002-08-07Add a catch-all for SunOS to force using the pkgsrc versions of thejlam1-2/+7
software instead of any base system version. This match is probably too broad, but better to err on the safe side. We can narrow down the match when we have better information. Closes pkg/17775 by Julien T. Letessier <julien.letessier at sun dot com>.
2002-08-07Create new variables INCOMPAT_ZLIB, INCOMPAT_BZIP2, INCOMPAT_READLINE,jlam1-9/+17
INCOMPAT_GETTEXT that are analogous to INCOMPAT_ICONV and contain lists of shell wildcards intended to match against ${MACHINE_PLATFORM}. These variables are used to note those platforms that have the named packages in the base system but are incompatible in some way from the pkgsrc version of the same package. Change INCOMPAT_CURSES to have the same sematics as above. These variables allow much greater precision in specifying which platforms have broken (for the purposes of pkgsrc) versions of software in the base system that must be ignored. The buildlink.mk files for these packages define private _INCOMPAT_* versions of these variables, and they contain the default lists of platforms that are known to have incompatible software bits. This addresses pkg/17775 submitted by Julien T. Letessier <julien.letessier at sun dot com>.
2002-06-09Fix warning.yyamano1-2/+2
bmake: "../../archivers/bzip2/../../archivers/bzip2/buildlink.mk" line 30: warning: "0" returned non-zero status
2002-03-24Update bzip2 to 1.0.2mjl3-33/+35
A bug fix release, addressing various minor issues. * Fix an infinite segfault loop in 1.0.1 when a directory is encountered in -f (force) mode. * Avoid double fclose() of output file on certain I/O error paths. * Don't fail with internal error 1007 when fed a long stream (> 48MB) of byte 251. Also print useful message suggesting that 1007s may be caused by bad memory. * Fix uninitialised variable silly bug in demo prog dlltest.c. * Remove 512-MB limitation on recovered file size for bzip2recover on selected platforms which support 64-bit ints. * Copy file access times correctly. * Dereference symlinks when copying file permissions in -f mode. * Majorly simplify implementation of uInt64_qrm10. * Check the input file still exists before deleting the output one, when aborting in cleanUpAndFail(). * Wrapper scripts (with manpages): bzdiff, bzgrep, bzmore. * Spelling changes and minor enhancements in bzip2.1. * Avoid race condition between creating the output file and setting its interim permissions safely, by using fopen_output_safely(). * do not print senseless report with -v when compressing an empty file. * bzcat -f works on non-bzip2 files. * do not try to escape shell meta-characters on unix (the shell takes care of these). * added --fast and --best aliases for -1 -9 for gzip compatibility.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-07-27Add dir_DEFAULT setting used by EVAL_PREFIX logic to set the defaultjlam1-1/+2
installation directory in case the package isn't installed.
2001-07-20Mechanical changes to buildlink.mk files to use EVAL_PREFIX to setjlam1-2/+2
BUILDLINK_PREFIX.<pkgname>. This allows buildlink to find X11BASE packages regardless of whether they were installed before or after xpkgwedge was installed. Idea by Alistair Crooks <agc@pkgsrc.org>.
2001-07-14Honor CFLAGS passed in from environment during build.jlam2-6/+9
2001-07-01Move inclusion of bsd.buildlink.mk to start of file.jlam1-3/+3
2001-06-23Generalize how the dependency pattern may be specified. Instead of justjlam1-5/+6
FOO_REQD=1.0 being converted to foo>=1.0, one can now directly specify the dependency pattern as FOO_DEPENDS=foo>=1.0. This allows things like JPEG_DEPENDS=jpeg-6b, or fancier expressions like for postgresql-lib. Change existing FOO_REQD definitions in Makefiles to FOO_DEPENDS.
2001-06-21Install the headers and libraries for bzip2, and add a buildlink.mk filejlam5-12/+114
for use by other package Makefiles.
2001-06-14Oops, forgot to remove this file on update.wiz1-50/+0
2001-06-10Update to 1.0.1.wiz3-39/+19
2001-04-18Move to sha1 digests, and add distfile sizes.agc1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-7/+5
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-11Use "${OPSYS}" in error message instead of hard coding "NetBSD".tron1-2/+2
2001-01-11Update homepage URL.tron1-2/+2
2000-10-17mention PKGNAME in IGNORE messagewiz1-2/+2
2000-01-05Strip trailing '.', and/or leading '(a|an) 'abs1-1/+1
1999-07-09Add package patch-sum filesagc1-0/+4
1999-04-08Add patch from NetBSD-current:tron1-0/+50
Allow softlinks for "bzip2 -c -d" or "bzcat".
1999-03-10s/ln/${LN}/gagc1-6/+7
Adapt this package to Solaris.
1999-02-20Fix CONFLICTS (remove redundancy, mostly)hubertf1-3/+1
1998-10-14Update for bzip2 package to version 0.9.0b created by Geoff C. Wing.tron4-11/+47