Commit graph

33 commits

Author SHA1 Message Date
wiz
3017caecb9 The buildlink2 framework does nothing with .pc files -- remove them
from the buildlink2.mk files.
2004-04-15 00:49:29 +00:00
jlam
426cc1ce72 Add a BUILDLINK_PKGBASE.<pkg> definition where it's not equal to <pkg>,
e.g. "BUILDLINK_PKGBASE.gtk?= gtk+".  This is mandated by the example
buildlink[23].mk files in bsd.buildlink[23].mk.
2004-03-29 05:05:32 +00:00
jlam
59bdf89739 If the ${PKGBASE} of a package doesn't match the token passed to
BUILDLINK_PACKAGES, then set BUILDLINK_PKGBASE.<pkg> explicitly so that
we can map from <pkg> to BUILDLINK_PKGBASE.<pkg>.
2004-03-16 18:23:26 +00:00
snj
9618ba80fb bl3ify. 2004-03-06 23:19:38 +00:00
jmmv
ab17dd00b3 PKGCONFIG_OVERRIDE is relative to WRKSRC. 2004-02-14 18:26:26 +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
jlam
17d1ca394e These packages need a C++ compiler. 2004-02-02 13:02:49 +00:00
snj
d1e45a7b31 s/seperate/separate/; s/ablity/ability/ 2004-01-31 23:39:29 +00:00
grant
fd49d1a855 replace BUILD_DEPENDS m4 and M4 definition with USE_GNU_TOOLS+=m4. 2004-01-25 03:08:46 +00:00
grant
f49bdea710 replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-22 08:24:28 +00:00
gavan
58052d36e1 Set USE_GCC_SHLIB and correct LIBTOOL_OVERRIDE. Fixes linking on Solaris. 2003-11-06 17:11:59 +00:00
adam
e534706421 Dependency back to 1.2.3nb1 2003-07-15 19:28:06 +00:00
adam
c15a87c6a2 Changes 1.2.5:
* Partial Microsoft Visual C++ .Net 2003 (Windows) support
* Exported extra symbols for win32
* Pedantic compiler warning fixed
2003-07-15 09:23:29 +00:00
wiz
7166660e08 Dependency bumps, needed because of devel/pth's major bump, and related
dependency bumps.
2003-05-02 11:53:34 +00:00
jmmv
a78c6c535d Update to 1.2.3. This version is almost a rewrite of the previous 1.0.x
branch (incompatible with it).
2003-03-01 11:54:07 +00:00
wiz
5d9b86e2e2 Unused. 2002-10-07 18:19:49 +00:00
jlam
3a44ff569a Require 1.0.4nb1 and include pthread.buildlink*.mk now that pthread
support is activated in libsigc++.
2002-09-17 05:46:53 +00:00
jlam
9141b10424 Ensure that the pthread library is linked into libsigc.so. 2002-09-17 05:41:53 +00:00
jlam
ae54380d97 libsigc++ passes it's tests when compiled with pthread support, so turn it
on.  Bump PKGREVISION.
2002-09-17 05:24:24 +00:00
wiz
bfae741d2c Update to 1.0.4, provided by Adan Ciarcinski.
* Changed include directory to
   $(includedir)/sigc++-1.0/sigc++
   to allow parallel installation with sigc-1.2.  Added an
   install-data-hook rule deleting the old headers.
   (Daniel Elstner)
 * Ming patch from cgustin@ibelgique.com
   (This is probably not complete, because the sigc_res.rc
   file was not in cvs - an emtpy file has been added.)
Converted to buildlink2 by me.
2002-09-11 21:29:27 +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
zuntum
c72c1cf5f9 Move pkg/ files into package's toplevel directory 2001-11-01 00:57:41 +00:00
jlam
72c8afe3db libsigc++ is in devel/, not textproc/ =) 2001-10-23 02:15:38 +00:00
wiz
6af7e5a4d5 Mark USE_BUILDLINK_ONLY, and add buildlink.mk.
Nearly as in pkg/14203 by Eric Gillespie, Jr.
2001-10-21 12:46:24 +00:00
rh
6f8d990696 Update libsigc++ to 1.0.3. Changes include minor bugfixes only. 2001-04-24 19:36:23 +00:00
wiz
dfb2d5edc6 Move to sha1 digests, and/or add distfile sizes. 2001-04-21 00:44:09 +00:00
agc
d7d36b3561 + 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:57:56 +00:00
wiz
94dc65fbec Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT. 2001-02-16 14:38:16 +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
5feac46ad5 Use "${MASTER_SITE_SOURCEFORGE}". 2000-11-11 17:49:22 +00:00
jlam
7d9df3f1b3 Don't try to remove %D/share/aclocal -- it's supposed to be there. 2000-07-15 09:50:01 +00:00
jlam
c081fc1ffb Modify so that shared lib has same name as static lib. 2000-07-15 08:41:26 +00:00
jlam
3b8bd7e68a libsigc++: a callback system for C++ programs.
Closes PR#10215 by Bernd Sieker <bsieker@freenet.de>.
2000-07-15 08:00:45 +00:00