Up to [cvs.netbsd.org] / pkgsrc / graphics / jpeg
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.45 / (download) - annotate - [select for diffs], Fri Jan 20 12:33:07 2012 UTC (4 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
HEAD
Changes since 1.44: +2 -2
lines
Diff to previous 1.44 (colored)
Update to jpeg-8d: Version 8d 15-Jan-2012 ----------------------- Add cjpeg -rgb option to create RGB JPEG files. Using this switch suppresses the conversion from RGB colorspace input to the default YCbCr JPEG colorspace. This feature allows true lossless JPEG coding of RGB color images. The recommended command for this purpose is currently cjpeg -rgb -block 1 -arithmetic. SmartScale capable decoder (introduced with IJG JPEG 8) required. Thank to Michael Koch for the initial suggestion. Add option to disable the region adjustment in the transupp crop code. Thank to Jeffrey Friedl for the suggestion. Thank to Richard Jones and Edd Dawson for various minor corrections. Thank to Akim Demaille for configure.ac cleanup.
Revision 1.44 / (download) - annotate - [select for diffs], Fri Jan 21 11:28:13 2011 UTC (16 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1
Changes since 1.43: +11 -12
lines
Diff to previous 1.43 (colored)
Changes 8c: Add option to compression library and cjpeg (-block N) to use different DCT block size. All N from 1 to 16 are possible. Default is 8 (baseline format). Larger values produce higher compression, smaller values produce higher quality. SmartScale capable decoder (introduced with IJG JPEG 8) required.
Revision 1.43 / (download) - annotate - [select for diffs], Sun Dec 12 11:50:43 2010 UTC (17 months, 1 week ago) by dsainty
Branch: MAIN
CVS Tags: pkgsrc-2010Q4-base,
pkgsrc-2010Q4
Changes since 1.42: +3 -1
lines
Diff to previous 1.42 (colored)
Conflicts with libjpeg-turbo
Revision 1.42 / (download) - annotate - [select for diffs], Tue May 18 19:59:21 2010 UTC (2 years ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
pkgsrc-2010Q2-base,
pkgsrc-2010Q2
Changes since 1.41: +4 -3
lines
Diff to previous 1.41 (colored)
update to 8b changes: -Repair problem in new memory source manager with corrupt JPEG data -Repair problem in Makefile.am test target add "test" target
Revision 1.41 / (download) - annotate - [select for diffs], Fri Apr 9 20:00:02 2010 UTC (2 years, 1 month ago) by drochner
Branch: MAIN
Changes since 1.40: +3 -4
lines
Diff to previous 1.40 (colored)
update to 8a changes: -Writing tables-only datastreams via jpeg_write_tables works again. -Support 32-bit BMPs (RGB image with Alpha channel) for read in cjpeg. -Improve accuracy in floating point IDCT calculation.
Revision 1.40 / (download) - annotate - [select for diffs], Wed Jan 20 13:14:53 2010 UTC (2 years, 4 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base,
pkgsrc-2010Q1
Changes since 1.39: +4 -1
lines
Diff to previous 1.39 (colored)
Pass --disable-ld-version-script to configure. Specifying a version script that doesn't contain anything is pointless, and seems to trigger toolchain bugs on DragonFlyBSD (PR pkg/42639). Bump revision.
Revision 1.39 / (download) - annotate - [select for diffs], Sun Jan 17 11:53:40 2010 UTC (2 years, 4 months ago) by wiz
Branch: MAIN
Changes since 1.38: +5 -6
lines
Diff to previous 1.38 (colored)
Update to 8: The current version is release 8 of 10-Jan-2010. Version 8 of the JPEG software introduces basic new features for image coding application and comes with an essential update of the original JPEG specification. New features and enhancements have been developed for the three major parts of the IJG library: the compression, the decompression, and the transcoding parts. These parts are represented by the three major tools of the IJG software: cjpeg (compress JPEG), djpeg (decompress JPEG), and jpegtran (transcode JPEG - lossless): IJG Tools New jpegtran -scale lossless resize feature A new option has been added to the jpegtran tool and transcoding library: -scale M/N Scale output image by fraction M/N, eg, 1/8 Currently supported scale factors are M/N with all M from 1 to 16, where N is the source DCT size, which is 8 for baseline JPEG. If the /N part is omitted, then M specifies the DCT scaled size to be applied on the given input. For baseline JPEG this is equivalent to M/8 scaling, since the source DCT size for baseline JPEG is 8. CAUTION: An implementation of the JPEG SmartScale extension is required for this feature. SmartScale enabled JPEG is not yet widely implemented, so many decoders will be unable to view a SmartScale extended JPEG file at all. New djpeg -scale feature The -scale option of the djpeg tool and decompression library has been extended: -scale M/N Scale output image by fraction M/N, eg, 1/8 Currently supported scale factors are M/N with all M from 1 to 16, where N is the source DCT size, which is 8 for baseline JPEG. If the /N part is omitted, then M specifies the DCT scaled size to be applied on the given input. For baseline JPEG this is equivalent to M/8 scaling, since the source DCT size for baseline JPEG is 8. New cjpeg features Two new features have been added to the cjpeg tool and compression library: -quality N[,...] Compression quality (0..100; 5-95 is useful range) -scale M/N Scale image by fraction M/N, eg, 1/2 The -quality option has been extended for support of separate quality settings for luminance and chrominance (or in general, for every provided quantization table slot). This feature is useful for high-quality applications which cannot accept the damage of color data by coarse subsampling settings. You can now easily reduce the color data amount more smoothly with finer control without separate subsampling. The resulting file is fully compliant with standard JPEG decoders. A new -scale option is provided with cjpeg which complements the corresponding djpeg -scale option. The supported range of scaling factors is 8/N with all N=1...16. This means you can now easily alter the nominal spatial resolution of a given source image while compressing to JPEG without additional resampling. For example, if you have an image sensor providing an effective capture resolution of 2268x1512 pixels (HI resolution), you can now directly generate a MED resolution of 1512x1008 pixels (-scale 2/3) and a LOW resolution of 1134x756 pixels (-scale 1/2) from the sensor source resolution with the library while compressing to JPEG without additional resampling. (An efficient 12x12 FDCT is used in the -scale 2/3 case, and an efficient 16x16 FDCT is used in the -scale 1/2 case instead of the standard 8x8 FDCT inside the library, ensuring high-quality downscaled results - the resulting file is fully compliant with standard JPEG decoders.)
Revision 1.38 / (download) - annotate - [select for diffs], Wed Aug 26 16:50:46 2009 UTC (2 years, 8 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
pkgsrc-2009Q3-base,
pkgsrc-2009Q3
Changes since 1.37: +5 -13
lines
Diff to previous 1.37 (colored)
Updating package graphics/jpeg from version 6bnb4 to 7
pkgsrc changes:
- update MASTER_SITES
- bump ApI_DEPENDS in buildlink3.mk
Upstream changes:
- The new features added with version 6bnb4 are now added upstream (except
exifautotran and jpegexiforient)
Version 7 27-Jun-2009
----------------------
New scaled DCTs implemented.
djpeg now supports scalings N/8 with all N from 1 to 16.
cjpeg now supports scalings 8/N with all N from 1 to 16.
Scaled DCTs with size larger than 8 are now also used for resolving the
common 2x2 chroma subsampling case without additional spatial resampling.
Separate spatial resampling for those kind of files is now only necessary
for N>8 scaling cases.
Furthermore, separate scaled DCT functions are provided for direct resolving
of the common asymmetric subsampling cases (2x1 and 1x2) without additional
spatial resampling.
cjpeg -quality option has been extended for support of separate quality
settings for luminance and chrominance (or in general, for every provided
quantization table slot).
New API function jpeg_default_qtables() and q_scale_factor array in library.
Added -nosmooth option to cjpeg, complementary to djpeg.
New variable "do_fancy_downsampling" in library, complement to fancy
upsampling. Fancy upsampling now uses direct DCT scaling with sizes
larger than 8. The old method is not reversible and has been removed.
Support arithmetic entropy encoding and decoding.
Added files jaricom.c, jcarith.c, jdarith.c.
Straighten the file structure:
Removed files jidctred.c, jcphuff.c, jchuff.h, jdphuff.c, jdhuff.h.
jpegtran has a new "lossless" cropping feature.
Implement -perfect option in jpegtran, new API function
jtransform_perfect_transform() in transupp. (DP 204_perfect.dpatch)
Better error messages for jpegtran fopen failure.
(DP 203_jpegtran_errmsg.dpatch)
Fix byte order issue with 16bit PPM/PGM files in rdppm.c/wrppm.c:
according to Netpbm, the de facto standard implementation of the PNM formats,
the most significant byte is first. (DP 203_rdppm.dpatch)
Add -raw option to rdjpgcom not to mangle the output.
(DP 205_rdjpgcom_raw.dpatch)
Make rdjpgcom locale aware. (DP 201_rdjpgcom_locale.dpatch)
Add extern "C" to jpeglib.h.
This avoids the need to put extern "C" { ... } around #include "jpeglib.h"
in your C++ application. Defining the symbol DONT_USE_EXTERN_C in the
configuration prevents this. (DP 202_jpeglib.h_c++.dpatch)
Revision 1.37 / (download) - annotate - [select for diffs], Wed Aug 1 11:47:15 2007 UTC (4 years, 9 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4,
pkgsrc-2008Q3-base,
pkgsrc-2008Q3,
pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
pkgsrc-2008Q1-base,
pkgsrc-2008Q1,
pkgsrc-2007Q4-base,
pkgsrc-2007Q4,
pkgsrc-2007Q3-base,
pkgsrc-2007Q3,
cwrapper,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.36: +2 -2
lines
Diff to previous 1.36 (colored)
File bin/exifautotran should be installed in ${DESTDIR}.
Pointed out by Blair Sadewitz in PR 36718.
Revision 1.36 / (download) - annotate - [select for diffs], Tue Jun 5 22:07:25 2007 UTC (4 years, 11 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2007Q2-base,
pkgsrc-2007Q2
Changes since 1.35: +6 -2
lines
Diff to previous 1.35 (colored)
Adopt some new features from www.jpegclub.org that have already been
adopted by many Linux distributions as well as FreeBSD ports:
o jpegtran: add "-perfect" switch:
Fail if there are non-transformable edge blocks.
o jpegtran: add "-crop" switch:
Crop to a rectangular subarea.
o jpegtran: correct EXIF handling.
o jpegexiforient: Get and set the Exif Orientation Tag.
o exifautotran: Transforms Exif files so that Orientation becomes 1.
Suggested by dzoe on #NetBSD IRCNet.
Revision 1.35 / (download) - annotate - [select for diffs], Thu Nov 2 18:00:43 2006 UTC (5 years, 6 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2007Q1-base,
pkgsrc-2007Q1,
pkgsrc-2006Q4-base,
pkgsrc-2006Q4
Changes since 1.34: +7 -4
lines
Diff to previous 1.34 (colored)
DESTDIR support.
Revision 1.34 / (download) - annotate - [select for diffs], Sun Sep 3 00:56:29 2006 UTC (5 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2006Q3-base,
pkgsrc-2006Q3
Changes since 1.33: +2 -2
lines
Diff to previous 1.33 (colored)
Reset maintainer for people who lost their commit bit.
Revision 1.33 / (download) - annotate - [select for diffs], Tue Dec 27 17:30:50 2005 UTC (6 years, 4 months ago) by reed
Branch: MAIN
CVS Tags: pkgsrc-2006Q2-base,
pkgsrc-2006Q2,
pkgsrc-2006Q1-base,
pkgsrc-2006Q1
Changes since 1.32: +2 -2
lines
Diff to previous 1.32 (colored)
Add patch: the configure knows @mandir@ so make the Makefile use it. And use PKGMANDIR for the INSTALLATION_DIRS. PKGREVISION not bumped -- no change in default build. And before would have failed if PKGMANDIR was set to non-default.
Revision 1.32 / (download) - annotate - [select for diffs], Mon Apr 11 21:46:05 2005 UTC (7 years, 1 month ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base,
pkgsrc-2005Q4,
pkgsrc-2005Q3-base,
pkgsrc-2005Q3,
pkgsrc-2005Q2-base,
pkgsrc-2005Q2
Changes since 1.31: +1 -2
lines
Diff to previous 1.31 (colored)
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.
Revision 1.31 / (download) - annotate - [select for diffs], Sat Oct 30 00:47:37 2004 UTC (7 years, 6 months ago) by xtraeme
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base,
pkgsrc-2005Q1,
pkgsrc-2004Q4-base,
pkgsrc-2004Q4
Changes since 1.30: +3 -2
lines
Diff to previous 1.30 (colored)
graphics/jpeg: install "jpegint.h" file, required by feh-1.2.7. Bump PKGREVISION.
Revision 1.30 / (download) - annotate - [select for diffs], Sun Oct 3 00:14:54 2004 UTC (7 years, 7 months ago) by tv
Branch: MAIN
Changes since 1.29: +2 -2
lines
Diff to previous 1.29 (colored)
Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
Revision 1.29 / (download) - annotate - [select for diffs], Sat Feb 14 17:21:42 2004 UTC (8 years, 3 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base,
pkgsrc-2004Q3,
pkgsrc-2004Q2-base,
pkgsrc-2004Q2,
pkgsrc-2004Q1-base,
pkgsrc-2004Q1
Changes since 1.28: +1 -3
lines
Diff to previous 1.28 (colored)
LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globs
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that
are automatically handled by the default setting in bsd.pkg.mk.
Revision 1.28 / (download) - annotate - [select for diffs], Sat Feb 14 00:54:45 2004 UTC (8 years, 3 months ago) by grant
Branch: MAIN
Changes since 1.27: +1 -3
lines
Diff to previous 1.27 (colored)
remove unneeded CONFIG_{GUESS,SUB}_OVERRIDE, as bsd.pkg.mk does this
automatically now.
Revision 1.27 / (download) - annotate - [select for diffs], Tue Jan 20 12:18:16 2004 UTC (8 years, 4 months ago) by agc
Branch: MAIN
Changes since 1.26: +2 -2
lines
Diff to previous 1.26 (colored)
Move WRKSRC definition away from the first paragraph in a Makefile.
Revision 1.26 / (download) - annotate - [select for diffs], Mon Jan 5 20:38:35 2004 UTC (8 years, 4 months ago) by jlam
Branch: MAIN
Changes since 1.25: +5 -2
lines
Diff to previous 1.25 (colored)
bl3ify
Revision 1.25 / (download) - annotate - [select for diffs], Fri Oct 3 14:48:40 2003 UTC (8 years, 7 months ago) by salo
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base,
pkgsrc-2003Q4
Changes since 1.24: +10 -3
lines
Diff to previous 1.24 (colored)
PKGREVISION++ Install documentation. Style nits, while here. Addresses PR pkg/23046 by Ben Collver.
Revision 1.24 / (download) - annotate - [select for diffs], Fri Sep 5 18:53:30 2003 UTC (8 years, 8 months ago) by tron
Branch: MAIN
Changes since 1.23: +3 -2
lines
Diff to previous 1.23 (colored)
Use "ftp.fu-berlin.de" as primary master site because "ftp.uu.net" seems to cause problems for some people, see PR pkg/22679 and PR pkg/22696.
Revision 1.23 / (download) - annotate - [select for diffs], Thu Jul 17 21:41:24 2003 UTC (8 years, 10 months ago) by grant
Branch: MAIN
Changes since 1.22: +2 -2
lines
Diff to previous 1.22 (colored)
s/netbsd.org/NetBSD.org/
Revision 1.22 / (download) - annotate - [select for diffs], Wed Jun 18 09:22:19 2003 UTC (8 years, 11 months ago) by agc
Branch: MAIN
Changes since 1.21: +2 -2
lines
Diff to previous 1.21 (colored)
When constructing the WRKSRC definition, use ${PKGNAME_NOREV} rather than
${PKGNAME}, so that the WRKSRC definition is immune from any subsequent
PKGREVISION changes. With thanks to jmc for the nudge.
Revision 1.21 / (download) - annotate - [select for diffs], Sat Feb 22 12:05:54 2003 UTC (9 years, 3 months ago) by skrll
Branch: MAIN
Changes since 1.20: +3 -1
lines
Diff to previous 1.20 (colored)
Override config.{guess,sub} so that we build on platforms such as CATS.
This is needed now as LTCONFIG_OVERRIDE was changed to LIBTOOL_OVERRIDE.
Revision 1.20 / (download) - annotate - [select for diffs], Tue Feb 18 05:32:16 2003 UTC (9 years, 3 months ago) by salo
Branch: MAIN
Changes since 1.19: +2 -2
lines
Diff to previous 1.19 (colored)
LTCONFIG_OVERRIDE->LIBTOOL_OVERRIDE Addresses PR pkg/20402 by Stephen Degler.
Revision 1.19 / (download) - annotate - [select for diffs], Sun Aug 25 18:39:13 2002 UTC (9 years, 9 months ago) by jlam
Branch: MAIN
CVS Tags: netbsd-1-6-1-base,
netbsd-1-6-1
Changes since 1.18: +2 -2
lines
Diff to previous 1.18 (colored)
Merge changes in packages from the buildlink2 branch that have buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
Revision 1.18.2.2 / (download) - annotate - [select for diffs], Fri Jun 21 23:05:23 2002 UTC (9 years, 11 months ago) by jlam
Branch: buildlink2
Changes since 1.18.2.1: +2 -2
lines
Diff to previous 1.18.2.1 (colored) to branchpoint 1.18 (colored) next main 1.19 (colored)
Rename USE_BUILDLINK2_ONLY to USE_BUILDLINK2 for less verbosity. Also convert a few more packages to use the buildlink2 framework.
Revision 1.18.2.1 / (download) - annotate - [select for diffs], Sat May 11 02:09:13 2002 UTC (10 years ago) by jlam
Branch: buildlink2
Changes since 1.18: +2 -2
lines
Diff to previous 1.18 (colored)
First pass at conversion of various packages to use the buildlink2 framework. Add many buildlink2.mk files to add to the framework. Please see buildlink2.txt for more details.
Revision 1.18 / (download) - annotate - [select for diffs], Tue Jun 19 04:02:57 2001 UTC (10 years, 11 months ago) by jlam
Branch: MAIN
CVS Tags: pkgviews-base,
pkgviews,
netbsd-1-6-RELEASE-base,
netbsd-1-6,
netbsd-1-5-PATCH003,
buildlink2-base
Branch point for: buildlink2
Changes since 1.17: +2 -1
lines
Diff to previous 1.17 (colored)
Mark as USE_BUILDLINK_ONLY.
Revision 1.17 / (download) - annotate - [select for diffs], Fri Feb 16 15:22:25 2001 UTC (11 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH001
Changes since 1.16: +2 -1
lines
Diff to previous 1.16 (colored)
Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.
Revision 1.16 / (download) - annotate - [select for diffs], Sat Jun 3 19:17:43 2000 UTC (11 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: netbsd-1-5-RELEASE,
netbsd-1-4-PATCH003
Changes since 1.15: +14 -12
lines
Diff to previous 1.15 (colored)
USE_LIBTOOL instead of USE_PKGLIBTOOL, losing a patch.
Revision 1.15 / (download) - annotate - [select for diffs], Thu Jun 1 11:23:29 2000 UTC (11 years, 11 months ago) by rh
Branch: MAIN
Changes since 1.14: +2 -2
lines
Diff to previous 1.14 (colored)
s/USE_LIBTOOL/USE_PKGLIBTOOL/ Add a new USE_LIBTOOL definition that uses the libtool package instead of pkglibtool which is now considered outdated. USE_PKGLIBTOOL is available for backwards compatibility with old packages but is deprecated for new packages.
Revision 1.14 / (download) - annotate - [select for diffs], Sat Feb 20 22:48:30 1999 UTC (13 years, 3 months ago) by hubertf
Branch: MAIN
CVS Tags: netbsd-1-4-RELEASE,
netbsd-1-4-PATCH002,
netbsd-1-4-PATCH001,
comdex-fall-1999
Changes since 1.13: +1 -3
lines
Diff to previous 1.13 (colored)
Fix CONFLICTS (remove redundancy, mostly)
Revision 1.13 / (download) - annotate - [select for diffs], Mon Nov 30 18:58:09 1998 UTC (13 years, 5 months ago) by tv
Branch: MAIN
Changes since 1.12: +7 -6
lines
Diff to previous 1.12 (colored)
Add homepage.
Revision 1.12 / (download) - annotate - [select for diffs], Sun Jul 26 18:05:57 1998 UTC (13 years, 10 months ago) by tsarna
Branch: MAIN
CVS Tags: netbsd-1-3-PATCH003
Changes since 1.11: +3 -1
lines
Diff to previous 1.11 (colored)
Conflicts with jpeg-6a
Revision 1.11 / (download) - annotate - [select for diffs], Fri Jul 24 01:57:00 1998 UTC (13 years, 10 months ago) by tv
Branch: MAIN
Changes since 1.10: +4 -4
lines
Diff to previous 1.10 (colored)
Update to use USE_LIBTOOL.
Revision 1.10 / (download) - annotate - [select for diffs], Fri Jul 17 14:33:52 1998 UTC (13 years, 10 months ago) by tv
Branch: MAIN
Changes since 1.9: +4 -2
lines
Diff to previous 1.9 (colored)
Update to use our pkg version of libtool, rather than its own private copy.
Revision 1.9 / (download) - annotate - [select for diffs], Sat Jul 4 09:37:29 1998 UTC (13 years, 10 months ago) by mycroft
Branch: MAIN
Changes since 1.8: +1 -2
lines
Diff to previous 1.8 (colored)
Remove outdated RCS tags.
Revision 1.8 / (download) - annotate - [select for diffs], Sat Jul 4 04:59:29 1998 UTC (13 years, 10 months ago) by mycroft
Branch: MAIN
Changes since 1.7: +6 -8
lines
Diff to previous 1.7 (colored)
Upgrade to v6b.
Revision 1.7 / (download) - annotate - [select for diffs], Mon Jun 22 12:39:46 1998 UTC (13 years, 11 months ago) by agc
Branch: MAIN
Changes since 1.6: +1 -2
lines
Diff to previous 1.6 (colored)
Update package Makefiles for automatic manual page handling.
Revision 1.6 / (download) - annotate - [select for diffs], Wed Apr 15 10:38:26 1998 UTC (14 years, 1 month ago) by agc
Branch: MAIN
CVS Tags: netbsd-1-3-PATCH002
Changes since 1.5: +2 -7
lines
Diff to previous 1.5 (colored)
Use the bsd.pkg.mk and bsd.pkg.subdir.mk files in the pkgsrc tree. Remove redundant (and sometimes erroneous) comments.
Revision 1.5 / (download) - annotate - [select for diffs], Mon Feb 2 08:59:17 1998 UTC (14 years, 3 months ago) by hubertf
Branch: MAIN
Changes since 1.4: +2 -2
lines
Diff to previous 1.4 (colored)
Remove -m argument from ldconfig calls, require the system to
have ${PREFIX}/lib in ld.so.conf instead. This ensures things
even work after a reboot.
Revision 1.4 / (download) - annotate - [select for diffs], Mon Feb 2 08:10:53 1998 UTC (14 years, 3 months ago) by hubertf
Branch: MAIN
Changes since 1.3: +2 -2
lines
Diff to previous 1.3 (colored)
Introduce TRUE?=/usr/bin/true, and use it.
Revision 1.3 / (download) - annotate - [select for diffs], Sat Jan 24 05:22:28 1998 UTC (14 years, 4 months ago) by hubertf
Branch: MAIN
Changes since 1.2: +4 -2
lines
Diff to previous 1.2 (colored)
portlint: fix RCS Id, add MAINTAINER, ldconfig||true
Revision 1.2 / (download) - annotate - [select for diffs], Mon Oct 6 13:39:28 1997 UTC (14 years, 7 months ago) by agc
Branch: MAIN
Changes since 1.1: +1 -0
lines
Diff to previous 1.1 (colored)
Add NetBSD RCS Ids.
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Mon Oct 6 13:29:37 1997 UTC (14 years, 7 months ago) by agc
Branch: FREEBSD
CVS Tags: FreeBSD-current-1997-10-05
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Initial import of FreeBSD graphics ports into the NetBSD packages system.
Revision 1.1 / (download) - annotate - [select for diffs], Mon Oct 6 13:29:37 1997 UTC (14 years, 7 months ago) by agc
Branch: MAIN
Initial revision