Commit graph

44 commits

Author SHA1 Message Date
grant
e1e3faa147 fix a conditional to appease bmake 2005-08-20 10:50:52 +00:00
adam
6ae7dafe6b Changes 1.4.17:
* A problem in FXMessageBox was fixed
* Fixed problems on multi-head Windows machines
* Other fixes
2005-08-02 10:26:43 +00:00
adam
e607d64b94 libbz2 is needed for buildlinking 2005-07-25 12:50:59 +00:00
adam
c360aa40fd Fix building on NetBSD < 3.0 2005-07-25 12:49:56 +00:00
wiz
5b5b173dcb Update for fox-1.4.x (library name changed). 2005-07-25 10:59:44 +00:00
adam
875570bece Removed old patches 2005-07-25 10:56:48 +00:00
adam
e845525529 Changes 1.4.16:
* Fixed bug in FXList and FXIconList
* Fixed sign error in quaternion classes in setAxes()
* Issue in FXMemoryStream fixed
2005-07-25 10:53:43 +00:00
jlam
95fd1f6ec9 Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.
Several changes are involved since they are all interrelated.  These
changes affect about 1000 files.

The first major change is rewriting bsd.builtin.mk as well as all of
the builtin.mk files to follow the new example in bsd.builtin.mk.
The loop to include all of the builtin.mk files needed by the package
is moved from bsd.builtin.mk and into bsd.buildlink3.mk.  bsd.builtin.mk
is now included by each of the individual builtin.mk files and provides
some common logic for all of the builtin.mk files.  Currently, this
includes the computation for whether the native or pkgsrc version of
the package is preferred.  This causes USE_BUILTIN.* to be correctly
set when one builtin.mk file includes another.

The second major change is teach the builtin.mk files to consider
files under ${LOCALBASE} to be from pkgsrc-controlled packages.  Most
of the builtin.mk files test for the presence of built-in software by
checking for the existence of certain files, e.g. <pthread.h>, and we
now assume that if that file is under ${LOCALBASE}, then it must be
from pkgsrc.  This modification is a nod toward LOCALBASE=/usr.  The
exceptions to this new check are the X11 distribution packages, which
are handled specially as noted below.

The third major change is providing builtin.mk and version.mk files
for each of the X11 distribution packages in pkgsrc.  The builtin.mk
file can detect whether the native X11 distribution is the same as
the one provided by pkgsrc, and the version.mk file computes the
version of the X11 distribution package, whether it's built-in or not.

The fourth major change is that the buildlink3.mk files for X11 packages
that install parts which are part of X11 distribution packages, e.g.
Xpm, Xcursor, etc., now use imake to query the X11 distribution for
whether the software is already provided by the X11 distribution.
This is more accurate than grepping for a symbol name in the imake
config files.  Using imake required sprinkling various builtin-imake.mk
helper files into pkgsrc directories.  These files are used as input
to imake since imake can't use stdin for that purpose.

The fifth major change is in how packages note that they use X11.
Instead of setting USE_X11, package Makefiles should now include
x11.buildlink3.mk instead.  This causes the X11 package buildlink3
and builtin logic to be executed at the correct place for buildlink3.mk
and builtin.mk files that previously set USE_X11, and fixes packages
that relied on buildlink3.mk files to implicitly note that X11 is
needed.  Package buildlink3.mk should also include x11.buildlink3.mk
when linking against the package libraries requires also linking
against the X11 libraries.  Where it was obvious, redundant inclusions
of x11.buildlink3.mk have been removed.
2005-06-01 18:02:37 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
wiz
393af94024 Add RMD160 checksums to the SHA1 ones. 2005-02-23 17:36:09 +00:00
reed
e117eda090 Bump PKGREVISIONs due to libtiff update.
Some BUILDLINK_RECOMMENDED bumps done also.

(If I missed any, please let me know -- and let me know a good
way to automate this.)
2004-12-28 23:18:15 +00:00
tv
a62d3fb0e1 Extra PKGREVISION bump to cover the libtool/compiler-wrapper problems.
Since dependencies were actually failing to build, they fortunately don't
require PKGREVISION bumps themselves.
2004-10-07 16:36:47 +00:00
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
0fac86cc8c Fix typo (CONFIFURE_ARGS => CONFIGURE_ARGS) reported by Georg Schwarz
in PR 26868. Bump PKGREVISION since this will result in a slightly(?)
different version.
2004-09-06 22:29:57 +00:00
wiz
f7906f6e94 Unused. 2004-04-26 09:21:57 +00:00
jlam
326169077a USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined. 2004-03-23 04:40:59 +00:00
jlam
7db11b582a Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properly
by moving the inclusion of buildlink3.mk files outside of the protected
region.  This bug would be seen by users that have set PREFER_PKGSRC
or PREFER_NATIVE to non-default values.

BUILDLINK_PACKAGES should be ordered so that for any package in the
list, that package doesn't depend on any packages to the left of it
in the list.  This ordering property is used to check for builtin
packages in the correct order.  The problem was that including a
buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed
from BUILDLINK_PACKAGES and appended to the end.  However, since the
inclusion of any other buildlink3.mk files within that buildlink3.mk
was in a region that was protected against multiple inclusion, those
dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-18 09:12:08 +00:00
xtraeme
aa53ce07af bl3ify 2004-03-11 17:22:55 +00:00
wiz
10f2ae1ce8 Fix PLIST after libtool update.
Should fix bulk build problem.
2004-03-08 22:57:35 +00:00
sketch
64f06b3422 Add 'Forte Developer 7' to the list of matches for the Sun CC compiler. 2004-02-16 11:08:21 +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
jschauma
6048206d2c As pointed out by jlam:
bump PKGREVISION on packages depending on graphics/glu due to latest shlib
changes there.
2003-11-30 22:58:40 +00:00
cjep
0174216952 whitespace fixes 2003-09-01 10:13:08 +00:00
xtraeme
afcb68475d Updated fox to 1.0.43. Many changes and fixes to paste here, to see
a full list of changes:

http://www.fox-toolkit.org/news.html

Closes my own PR pkg/22407. Ok'ed by wiz@
2003-08-29 10:16:11 +00:00
grant
ca3be631f2 s/netbsd.org/NetBSD.org/ 2003-07-17 22:50:55 +00:00
jschauma
e7c1762bd0 Bump PKGREVISION due to upgrade of Mesa and friends.
Only include Mesa/buildlink2.mk if the package requires all three of
MesaLib, glu and glut - else only include the necessary buildlink2s.
2003-03-09 19:23:09 +00:00
wiz
4756fecf47 Unused. 2002-10-09 17:18:40 +00:00
wiz
32a7c12483 buildlink1 -> buildlink2. 2002-10-09 13:52:28 +00:00
jlam
011e4075f8 Use BUILDLINK_CPPFLAGS.<pkg> and BUILDLINK_LDFLAGS.<pkg> as standard names
for the extra CPPFLAGS and LDFLAGS needed by packages that include these
buildlink2.mk files.
2002-09-23 02:28:36 +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
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
zuntum
d3db18607d Move pkg/ files into package's toplevel directory 2001-10-31 22:03:21 +00:00
sakamoto
4a9c7a0f01 Fix method to use xunicode
s/USE_XUNICODE/FOX_USE_XUNICODE/ and define USE_UNICODE to X_CFLAGS.

Update from 0.99.172 to 0.99.174
	http://www.geocrawler.com/archives/3/3372/2001/6/0/6025503/
	[Foxgui-announce]New drop of FOX [0.99.173]
	http://www.geocrawler.com/archives/3/3372/2001/7/0/6162289/
	[Foxgui-announce]New FOX drop [0.99.174]
2001-08-05 17:04:21 +00:00
jlam
c4e71c5e7a CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, so
adapt by moving CPPFLAGS settings to top-level, and removing explicit
inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
2001-06-11 06:34:17 +00:00
sakamoto
8b673264e3 Update to fox-0.99.172 and xunicode-0.3.2.2.
Changes:
	[Foxgui-announce]New Drop of FOX [0.99.169]
	http://groups.yahoo.com/group/fox-users/message/2431
	[Foxgui-announce]FOX 0.99.172 dropped
	http://groups.yahoo.com/group/fox-users/message/2433
2001-05-27 07:57:38 +00:00
wiz
26c40c61dd Update dependency on png to >=1.0.11 because of the shlib major bump.
Noted by Frederick Bruckman.
2001-05-22 09:32:18 +00:00
skrll
7c75053771 Move to sha1 digests, and add distfile sizes. 2001-04-19 11:07:33 +00:00
dmcmahill
0b5cce7c6f use DEPENDS+= instead of DEPENDS=, put DEPENDS on seperate lines 2001-04-18 20:00:39 +00:00
agc
8f972b049a + 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 12:12:16 +00:00
sakamoto
157237e697 fix shared library path. 2001-04-15 08:26:40 +00:00
sakamoto
2482f8dcab Update to fox-0.99.167 and xunicode-0.3.2.
Changes:
	[Foxgui-announce]New FOX Drop [0.99.160]
	http://www.geocrawler.com/archives/3/3372/2001/2/0/5233478/
	[Foxgui-announce]New drop of FOX [0.99.162]
	http://www.geocrawler.com/archives/3/3372/2001/3/0/5304347/
	[Foxgui-announce]New drop FOX [0.99.164]
	http://www.geocrawler.com/archives/3/3372/2001/3/0/5310563/
	[Foxgui-announce]New FOX released [0.99.165]
	http://www.geocrawler.com/archives/3/3372/2001/3/0/5352175/
	[Foxgui-announce]New FOX Drop [0.99.166]
	http://www.geocrawler.com/archives/3/3372/2001/3/0/5360202/
	[Foxgui-announce]New drop of FOX [0.99.167]
	http://www.geocrawler.com/lists/3/SourceForge/3372/0/5486877/
2001-04-13 19:27:05 +00:00
sakamoto
f7fec2c708 Adjust for NetBSD 2001-02-24 16:56:54 +00:00
sakamoto
11ae6674e9 Initial import of fox:
Fast and extensive C++ GUI toolkit
2001-02-24 16:50:01 +00:00