Commit graph

55 commits

Author SHA1 Message Date
wiz
3244fdc70e Convert to bl3. 2004-04-24 22:09:22 +00:00
wiz
1b31a1b7cd Link against libnetpbm, since that's the only library installed
by the netpbm package, instead of the previously existing libraries.
2004-04-24 22:06:27 +00:00
heinz
b59ffaf636 Eliminate the need for "find -d". Using pax instead of gtar even saves some lines. 2004-01-28 00:32:14 +00:00
heinz
18a916d5e6 Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248 2004-01-27 00:53:10 +00:00
agc
3ad1bdbf06 Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
reed
6d9af8d68d Bump package revisions for tiff update.
Tiff is backward compatible, but was broken on amd64 platform
so this makes sure new tiff is used.
2004-01-03 18:49:33 +00:00
tron
b0fe6e95fe Use "stdarg.h" instead of "varargs.h" to handle variable arugment list.
This fixes build problems when using GCC 3.3.1.
2003-09-25 11:58:33 +00:00
grant
0155927c43 s/netbsd.org/NetBSD.org/ 2003-07-17 21:41:05 +00:00
cjep
b184c1e87e Truncate COMMENT to under 70 characters 2003-06-07 14:47:16 +00:00
jschauma
e366d0c694 Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.
2003-06-02 01:15:31 +00:00
jmmv
0916498c1b Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz. 2003-03-29 12:40:00 +00:00
tron
92f1d298bd Convert his package to buildlink2 to make it build with the update
"netpbm" package. Bump package revision to reflect change.
2003-03-18 12:13:43 +00:00
fredb
b48eba1112 Give all packages which depend on "png" a version bump, and update
all dependencies on packages depending on "png" which contain shared
libraries, all for the (imminent) update to the "png" package.
[List courtesy of John Darrow, courtesy of "bulk-build".]
2002-03-13 17:36:35 +00:00
agc
57aa4707d7 s/root/${ROOT_USER}/g, now that the definition appears in the
defs.${OPSYS}.mk files.
2001-12-05 15:00:44 +00:00
tron
745affa1b6 Fix permission problems in installed files:
- "man/man1/rletotarga.1" should be world readable.
- There is no reason why the example directory and the files in it should
  be group writable.
2001-11-24 08:55:20 +00:00
zuntum
d038a73ebd Move pkg/ files into package's toplevel directory 2001-10-31 22:52:58 +00:00
jlam
f79573370a Mechanical changes to 375 files to change dependency patterns of the form
foo-* to foo-[0-9]*.  This is to cause the dependencies to match only the
packages whose base package name is "foo", and not those named "foo-bar".
A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net.  Also
change dependency examples in Packages.txt to reflect this.
2001-09-27 23:17:41 +00:00
agc
a16fc84f19 Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:
WRKSRC= ${WRKDIR}

This is much cleaner, much more indicative of what happens, and removes
another of the negative definitions (NO_.* = value).
2001-09-09 20:36:07 +00:00
wiz
a4f21a5507 Move to sha1 digests, and/or add distfile sizes. 2001-04-21 09:54:06 +00:00
agc
fb467f5ac2 + move the distfile digest/checksum value from files/md5 to distinfo
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-17 11:22:34 +00:00
skrll
b87ccb71ac Change diff so patchdiff works. 2001-03-26 23:03:33 +00:00
skrll
f45302e632 Fix installation.
Problem noted by Mark White <mark.white@st-edmund-hall.oxford.ac.uk> on
tech-pkg.
2001-03-26 22:51:38 +00:00
wiz
1c1b12abbe add RCS Id 2001-03-05 16:43:59 +00:00
tron
50c74899f5 Add missing file "lib/librle.la". 2001-03-04 11:06:13 +00:00
skrll
b581fed570 Fix build problem with new libtool. 2001-03-02 16:52:29 +00:00
agc
014b8a5dce Knock another 2 off the non-building list.
Convert this package to use libtool, much against my better judgement.
However, it slots in much more easily than the BSD *.mk structure here.
2001-02-26 16:56:35 +00:00
hubertf
d32e698de6 Cleanup MKDIR usage => INSTALL_*_DIR
XXX need to teach pkglint to be more picky about this
2001-02-25 04:17:35 +00:00
wiz
91923cf40e Fix PLIST problem. 2001-02-23 13:33:05 +00:00
wiz
a2a4d06c6f Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT. 2001-02-16 15:22:13 +00:00
agc
9c2d582fc9 The way that shared objects were handled in the PLISTs and bsd.pkg.mk was
out of date - it was based on a.out OBJECT_FMT, and added entries in the
generated PLISTs to reflect the symlinks that ELF packages uses. It also
tried to be clever, and removed and recreated any symbolic links that were
created, which has resulted in some fun, especially with packages which
use dlopen(3) to load modules. Some recent changes to our ld.so to bring
it more into line with other Operating Systems also exposed some cracks.

+ Modify bsd.pkg.mk and its shared object handling, so that PLISTs now contain
the ELF symlinks.
+ Don't mess about with file system entries when handling shared objects in
bsd.pkg.mk, since it's likely that libtool and the BSD *.mk processing will
have got it right, and have a much better idea than we do.
+ Modify PLISTs to contain "ELF symlinks"
+ On a.out platforms, delete any "ELF symlinks" from the generated PLISTs
+ On ELF platforms, no extra processing needs to be done in bsd.pkg.mk
+ Modify print-PLIST target in bsd.pkg.mk to add dummy symlink entries on
a.out platforms
+ Update the documentation in Packages.txt

With many thanks to Thomas Klausner for keeping me honest with this.
2001-01-04 15:10:17 +00:00
tron
4a5a2af554 Fix typo in last commit. 2000-11-08 21:57:19 +00:00
tron
cd35d86f15 Fix creation of broken symbolic links for manual pages. 2000-11-08 21:55:21 +00:00
wiz
f70b640a8a fix MASTER_SITES 2000-09-03 10:23:09 +00:00
dmcmahill
33f0e6cd60 -let the depends on netpbm pull in the tiff depends.
-don't override PKGSRCDIR, this is leftover from a long time ago.  The pkg
 now cleanly builds and installs when WRKOBJDIR is set.
2000-08-23 13:45:02 +00:00
wiz
2a0e4e2682 Master site path for distfiles changed 2000-05-21 01:39:30 +00:00
tron
7a844d192f Use run time library path for PBM libraries. 2000-05-17 19:03:24 +00:00
tron
3584f11542 Use normal instead of build dependence for "netpbm" package because
"pgmtorle", "ppmtorle" and "rletoppm" get linked with the shared
library.
2000-05-17 18:54:00 +00:00
tron
1989ac4b83 Define deprecated symbol "unix". 2000-05-17 18:50:35 +00:00
hubertf
bcb59cb43c Require a properly installed netpbm package, instead of insisting on
recompiling this each time again.
2000-04-07 14:40:36 +00:00
tron
782b73a94b Adapt to new handling of "${CONFIGURE}". 2000-03-27 08:54:53 +00:00
abs
df05aef71f Strip trailing '.', and/or leading '(a|an) ' 2000-01-05 15:37:50 +00:00
wiz
900f5e50ff replaced some commands by their ${COMMAND} counterparts 2000-01-02 03:36:52 +00:00
agc
260d332664 Split patches one per source file.
Remove fuzz from patches.
Remove PATCH_FUZZ_FACTOR definition.
1999-11-22 11:11:32 +00:00
agc
b65d2f82db Add a patch fuzz factor of 2. 1999-11-12 10:41:22 +00:00
jlam
d043b6411c Change to use wildcard dependency on tiff. 1999-10-08 21:12:47 +00:00
agc
a910a6fd62 Add package patch-sum files 1999-07-09 13:50:05 +00:00
garbled
c216c41c0a add USE_X11=yes 1999-04-26 18:38:28 +00:00
mycroft
03c24fa7fb More EXTRACT_CMD fallout.
NOTE: These are not tested!
1999-04-05 17:23:01 +00:00
agc
49ad04f369 Move the definition of BUILD_ROOT into bsd.pkg.mk, from the individual
package Makefiles which need it.
1999-03-22 09:38:22 +00:00
frueauf
05c1fe701f pkglint: add missing rcs ids. 1999-02-10 15:10:47 +00:00