Commit graph

30 commits

Author SHA1 Message Date
tv
c487cb967a 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.
2004-10-03 00:12:51 +00:00
jlam
1a280185e1 Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:

	lib/libfoo.a
	lib/libfoo.la
	lib/libfoo.so
	lib/libfoo.so.0
	lib/libfoo.so.0.1

one simply needs:

	lib/libfoo.la

and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.

Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-22 08:09:14 +00:00
wiz
bdbdfab203 Update to 1.36.59:
* Fix patch for Debian GNU/Linux bug #159966 which was wrong/insecure
  (Simon White). Probably no .mus file would have triggered it, though.
* Update auto*/libtool files.
* Fix smartptr.h for GCC 3.4 (Jon Hood + Debian bug #259444).
* Merge patch for Debian GNU/Linux bug #159966 (mus_.cpp).
2004-09-07 16:45:32 +00:00
wiz
fc0ff84f92 Unused. 2004-04-25 00:01:15 +00:00
jlam
9ff0e10340 Reorder location and setting of BUILDLINK_PACKAGES to match template
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-03-05 19:25:06 +00:00
jmmv
5ff6a00f23 bl3ify. 2004-02-17 23:52:45 +00:00
jlam
ec993afa1a 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.
2004-02-14 17:21:32 +00:00
grant
ed16993a08 replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-22 07:14:59 +00:00
gavan
1e720aede9 Set USE_GCC_SHLIB, and set LIBTOOL_OVERRIDE correctly. Fixes linking on Solaris. 2003-10-29 16:57:32 +00:00
grant
91f00f1cbc s/netbsd.org/NetBSD.org/ 2003-07-17 21:21:03 +00:00
pooka
f4a4a85de7 update to libsidplay 1.36.57
changes since previous version:
* Fix PowerPacker decompression (rarely used these days).
2002-11-23 18:36:30 +00:00
mycroft
bc6dc5afd1 Update to 1.36.56. Changes are mostly portability, and bug fixes to the PSID
tag handling.
2002-09-03 15:31:11 +00:00
wiz
0d5f10fee9 Not needed any longer. 2002-08-31 12:27:57 +00:00
wiz
bb4e73644b Convert to buildlink2. 2002-08-31 04:15:37 +00:00
jlam
efb93b17bd Merge changes in packages from the buildlink2 branch that have
buildlink2.mk files back into the main trunk.
2002-08-25 19:21:43 +00:00
mycroft
7f984ba3b6 This library uses libstdc++, so link against it. 2001-12-24 15:13:31 +00:00
zuntum
0ca28723fb Move pkg/ files into package's toplevel directory 2001-11-01 00:11:36 +00:00
jlam
d2eb68d2a6 Add dir_DEFAULT setting used by EVAL_PREFIX logic to set the default
installation directory in case the package isn't installed.
2001-07-27 13:33:18 +00:00
jlam
7b1d3cb465 Mechanical changes to buildlink.mk files to use EVAL_PREFIX to set
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-20 01:54:31 +00:00
jlam
cb76bd5efc Move inclusion of bsd.buildlink.mk to start of file. 2001-07-01 22:59:08 +00:00
jlam
d29efbaceb Add buildlink.mk file for use by other package Makefiles. 2001-06-26 18:09:19 +00:00
jlam
966a6f281a Set LTCONFIG_OVERRIDE and mark as USE_BUILDLINK_ONLY. 2001-06-26 18:04:59 +00:00
agc
952fa0ef9f Move to sha1 digests, and add distfile sizes. 2001-04-18 12:14:28 +00:00
agc
18ea9c7e79 + 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 10:22:24 +00:00
pooka
3ecb1acf5c Update libsidplay to 1.36.47
Changes since 1.36.45:
* the default is now 16bit 44.1kHz stereo
* minor fixes
2001-04-14 10:34:29 +00:00
wiz
f7bb9e2078 Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT. 2001-02-16 13:30:32 +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
pooka
16e7ddb0e5 Update to libsidplay 1.36.45
Changes since 1.36.38:
Stability changes and minor tweaks to functionality.
2000-10-25 19:40:23 +00:00
pooka
d7bc475521 Make this conflict with sidplay-1.36.* (old sidplay), since they both
contain same files.
2000-06-20 21:33:50 +00:00
pooka
9b2a4cb1bb libsidplay 1.36.38, the sidplay library which used to be part of
sidplay.
2000-06-19 22:45:59 +00:00