Commit Graph

73 Commits

Author SHA1 Message Date
Jeremy Messenger
286eaae253 Fix the build with GCC 3.4.1, took from Gentoo's glib-1.2.10-gcc34-fix.patch.
Reported by:	pointyhat via kris
2004-07-17 07:06:55 +00:00
Joe Marcus Clarke
9e5632dd66 Apply a big libtool patch to allow porters to use the libtool installed by
the libtoolX ports instead of the one included with each port.  Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version.  To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER.  Both macros accept the same argument: a libtool version.

For example, to use the ports version of libtool-1.5, add the following to
your Makefile:

USE_LIBTOOL_VER=        15

To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:

USE_INC_LIBTOOL_VER=    15

With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).

PR:		63944
Based on work by:eik and marcus
Approved by:	ade (autotools maintainer)
Tested by:	kris on pointyhat
Bound to be hidden problems:	You bet
2004-07-09 17:43:11 +00:00
Joe Marcus Clarke
8ae1c82f7b Do the usual PTHREAD_LIBS dance to ensure that we don't add -DLINUXTHREADS
to gthread's CFLAGS on -CURRENT.

Spotted by:	bento, green, and kris
2004-05-30 07:57:34 +00:00
Pav Lucistnik
55a7e57766 - Add SIZE to GNOME ports
Submitted by:	trevor
2004-03-18 13:47:05 +00:00
Ade Lovett
3f651573ad Whoa there, boy, that's a mighty big commit y'all have there...
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

	USE_LIBTOOL=YES		->	USE_LIBTOOL_VER=13
	USE_AUTOCONF=YES	->	USE_AUTOCONF_VER=213
	USE_AUTOMAKE=YES	->	USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
2004-03-14 06:17:56 +00:00
Alexander Nedotsukov
807df06858 Fix gmodule and gthread library names in .pc files.
PR:           55745
Submitted by: KATO Tsuguru <tkato@prontomail.com> (based on)
Approved by:  marcus (mentor)
2003-08-21 02:18:15 +00:00
Joe Marcus Clarke
bdd1c47883 Use INFO. 2003-08-17 04:14:30 +00:00
Adam Weinberger
c413d0b2b0 Utilize USE_GNOME= pkgconfig. 2003-06-16 20:52:58 +00:00
Joe Marcus Clarke
253d4c8ad2 getpw*_r is now implemented in -CURRENT. However, the _SC_GETPW_R_SIZE_MAX
sysconf is not.  This causes glib to try and malloc UINT_MAX bytes of memeory
which basically translates to -1 bytes.  Sanity check the value returned by
sysconf (_SC_GETPW_R_SIZE_MAX) to see that it's really implemented.  This
fixes an abort people started to see in Glib-based applications.

Reported by:	Shin-ichi YOSHIMOTO <yosimoto@waishi.jp>
2003-04-19 10:15:29 +00:00
Ade Lovett
7e52725f2a Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.

E Nomini Patri, E Fili, E Spiritu Sancti.
2003-03-07 06:14:21 +00:00
Joe Marcus Clarke
cd1489e639 Now that Glib 1.2 and GTK+ 1.2 are the only versions in the tree that use
the old xxx-config files, remove the "12" suffix.  This will allow people
building Glib and GTK+ ports by hand to do so without a lot of extra
hacking.  Since these ports are so heavily used, the xxx12-config files
aren't removed completely, but rather symlinked to their xxx-config
counterparts.

PR:		39417
2002-11-20 20:11:27 +00:00
Joe Marcus Clarke
59deb69012 GNOME has just changed the layout of their FTP site. This resulted in
making all the distfiles unfetachable.  Update all GNOME ports that fetch
from MASTER_SITE_GNOME to fetch from the correct location.
2002-09-20 17:07:51 +00:00
Joe Marcus Clarke
b525ae5416 Fix another problem in the pkgconfig files for these ports. After running
a build of xscreensaver and xscreensaver-gnome, everything looks good.

Reported by:	dougb
2002-06-14 04:20:57 +00:00
Maxim Sobolev
6202dce78e Correct gtk+/glib libraries names in .pc files.
Submitted by:	alfred
2002-06-10 15:33:34 +00:00
Joe Marcus Clarke
163580e9fe Fix up the pkg-{descr|comment} to relfect reality, and avoid confusion
for software developers.

Submitted by:	Lawrence Mayer dsg <Lawrence.Mayer@dsg.ki.se>
2002-05-13 16:09:05 +00:00
Maxim Sobolev
4839f602eb Smash a compatibility bug in g_module_open(). It seems that unlike Linux one,
FreeBSD's dlopen(NULL, ...) doesn't return a handle useable for resolving
symbols in both the program itself and all modules it dlopen'ed. Instead,
when requested for a self handle return RTLD_DEFAULT, which seems closely
matches dlopen(NULL, ...) in Linux. Bump PORTREVISION.

Recommended update for all GNOME/GTK users.

Inspired by:	John Merryweather Cooper <john_m_cooper@yahoo.com>
2001-12-12 04:51:10 +00:00
Maxim Sobolev
26e64ae7f8 Add pkgconfig into RUN,LIB_DEPENDS. 2001-08-01 17:48:36 +00:00
Ade Lovett
9b3317a66b Sigh. Think more carefully. Seems that any kind of circular dependency
(port A has *_DEPENDS on port B, and vice versa), causes make to go
a little strange[tm] on install, clean, even though the build succeeds.

Gah.
2001-05-24 04:51:33 +00:00
Ade Lovett
b7ea51bc2c Rework previous commit. Turns out that pkgconfig is not a build-time
dependency for glib12, so remove that, and put pkgconfig back to the
way it was before.
2001-05-24 01:48:32 +00:00
Ade Lovett
ff4f18ab92 Add pkgconfig support to most of the core of GNOME 1.4 and GTK+/GLIB 1.2
to make transitioning to GNOME/GTK+/GLIB a little easier.
2001-05-23 00:49:11 +00:00
Ade Lovett
5ed28dbe7a SWitch maintainership of core GNOME ports to a small group of
committers (gnome@FreeBSD.org), since this is now definitely too big
for just one person.
2001-05-11 16:36:50 +00:00
Maxim Sobolev
8e2bbbdda1 Use PTHREAD_CFLAFS/PTHREAD_LIBS.
Reminded by:	vanilla
2001-03-30 13:18:05 +00:00
Ade Lovett
dce51cd86c Sigh. Reclaim these, primarily for GNOME 1.4 2001-03-23 05:42:30 +00:00
Vanilla I. Shu
e94bb46af2 Someone don't like my style, so I drop maintainer now. 2001-03-23 05:34:27 +00:00
Vanilla I. Shu
7e4c95a9ba Change MASTER_SITE to MASTER_SITE_GNOME.
Reported by:	Graywane <graywane@home.com>
2001-03-20 00:12:49 +00:00
Vanilla I. Shu
f59e5be1f9 Upgrade to 1.2.10. 2001-03-19 17:42:52 +00:00
FUJISHIMA Satsuki
fa1741442e make MASTER_SITE_SUBDIR more effective.
Submitted by:	knu
2001-03-11 21:50:34 +00:00
FUJISHIMA Satsuki
9e79a545dc add MASTER_SITE_RINGSERVER.
Approved by:	maintainer
2001-03-11 17:06:39 +00:00
Vanilla I. Shu
76b3f63997 Upgrade to 1.2.9.
Submitted by:	clive.
2001-03-06 12:29:28 +00:00
Satoshi Asami
ffb21b5654 Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in the
previous commit message to bsd.port.mk, which said INSTALL_SHLIBS.  Boo.)

Line up the rhs of variable assignments nicely.  Remove a couple of extra
whitespaces while I'm here.

Suggested by:	 sobomax
2000-06-16 21:52:40 +00:00
Maxim Sobolev
5178b48938 Final round of the INSTALLS_SHLIBS=yes conversion. Few remaining ports with
ldconfig in PLIST need personal consideration.
2000-06-16 10:38:50 +00:00
Maxim Sobolev
409af62fa8 Update glib/gtk++ to 1.2.8.
Overview of Changes in GTK+ 1.2.8:

* GNU Make 3.79 bug workaround
* FAQ and tutorial updates and improvements
* Miscellaneous bug fixes: CList, Calendar, rc-files, FontSelection

Overview of Changes in GLib 1.2.8:

* GArray zero initialization bug fixed
* Fix for upper bound calculation of formatted strings
* Improved GCC detection
* AIX dynamic modules fix to retrive symbols from shared libraries for the main
  program.
* Miscellaneous other minor bug fixes
2000-05-25 12:23:48 +00:00
Michael Haro
ed33fb7de0 PORTNAME/PORTVERSION update 2000-04-11 21:30:15 +00:00
Chris Piazza
8fe0bbe422 Update to glib/gtk 1.2.7
PR:		16809
Submitted by:	Maxim Sobolev <sobomax@altavista.net>
2000-02-18 19:39:18 +00:00
Jeremy Lea
be6e15d519 Enable the use of poll() on -current.
Fix bad C++ define of NULL.

Approved by:	maintainer
2000-02-12 18:59:51 +00:00
Yukihiro Nakai
6610db7bca Submitted by:Ade Lovett <ade@remarq.com>
Update to glib-1.2.6
This is an important library for 'October GNOME'.
1999-10-13 11:17:43 +00:00
Vanilla I. Shu
f9a3d788b9 Upgrade to 1.2.5, bump share library version to 3.
PR:		ports/14194
Submitted by:	nobutaka@nobutaka.com
1999-10-09 18:40:30 +00:00
Satoshi Asami
3d948d5b89 Set
LIBTOOLFLAGS=  --disable-ltlibs --release-suffix

to take advandate of new libtools.

Submitted by:	libtools maintainer
1999-09-11 01:06:13 +00:00
Michael Haro
65ab34a667 FreeBSD.ORG -> FreeBSD.org
Prompted by PR:  13476, 13477
Submitted by:  KATO Tsuguru
1999-08-31 06:53:31 +00:00
David E. O'Brien
9a9ac6ba9d Change Id->FreeBSD. 1999-08-25 05:57:29 +00:00
Tim Vanderhoek
748713c3f6 As threatened, enforce the "Capital, no period" rule. Ellipses are
permitted.  Note that, given current numeric motif of PW, this is done
in four equally-sized commits of 393 files each.
1999-06-26 17:19:19 +00:00
Steve Price
51ec9126d4 Update to version 1.2.3.
PR:		11841
Submitted by:	Jeremy Lea <reg@shale.csir.co.za>
1999-05-29 03:46:56 +00:00
Michael Haro
c539770e3a Remove the info part of the install as it is now part of bsd.port.mk.
PR:		11542
Submitted by:	okazaki@be.to
1999-05-06 19:59:14 +00:00
Tim Vanderhoek
a5e5d9c778 Wow! What big teeth you have grandma! "All the better to Weat you
with, my dear."

[That's lupus for "Add WWW:"]
1999-05-02 21:59:12 +00:00
Jun Kuriyama
3eba3aa50a Upgrade to 1.2.2.
I don't know all of the gtk dependency. If it breaks some ports,
please back this out.
1999-05-02 05:21:27 +00:00
Seiichirou Hiraoka
d1017774df Update to 1.2.1
can't apply patch-aa and it is needless
PR: ports/10810
Submitted by: mreimer@vpop.net
1999-03-26 23:29:12 +00:00
Jacques Vidrine
f4442a7aa7 Upgrade to GNOME 1.0. The following are the details:
ports/audio/esound			0.2.7    ->  0.2.8	PR ports/10422
 ports/audio/gnomeaudio			0.99.8   ->  1.0.0	PR ports/10426
 ports/audio/libaudiofile		0.1.5    ->  0.1.6	PR ports/10421
 ports/deskutils/gnomepim		0.99.8.1 ->  1.0.1	PR ports/10435
 ports/devel/ORBit			0.3.98   ->  0.4.0	PR ports/10423
 ports/devel/gettext			shared libs now		PR ports/10293
 ports/devel/glib12			1.1.16   ->  1.2.0	PR ports/10419
 ports/devel/libgtop			0.99.8   ->  1.0.1	PR ports/10430
 ports/games/gnomegames			0.99.8   ->  1.0.1	PR ports/10436
 ports/graphics/electriceyes		distfile moved		PR ports/10437
 ports/graphics/imlib			1.9.3    ->  1.9.4	PR ports/10424
 ports/lang/gnomeobjc			0.99.3   ->  1.0.1	PR ports/10441
 ports/math/gnumeric			0.6      ->  0.15	PR ports/10439
 ports/misc/gnomeutils			0.99.5   ->  1.0.1	PR ports/10442
 ports/sysutils/gnomeadmin		0.99.1   ->  1.0.1	PR ports/10445
 ports/sysutils/gnomecontrolcenter	0.99.3.1 ->  1.0.1	PR ports/10446
 ports/sysutils/gtop			0.99.2   ->  1.0.1	PR ports/10477
 ports/textproc/libxml			0.99.8   ->  1.0.0	PR ports/10438
 ports/www/libghttp			distfile moved		PR ports/10429
 ports/x11/gnome			0.99.3   ->  1.0.0	PR ports/10450
 ports/x11/gnomecore			0.99.8.1 ->  1.0.1	PR ports/10432
 ports/x11/gnomelibs			0.99.8.1 ->  1.0.1	PR ports/10425
 ports/x11-fm/gnomemc			4.5.10   ->  4.5.23	PR ports/10448
 ports/x11-toolkits/gtk-engines		0.1      ->  0.5	PR ports/10427
 ports/x11-toolkits/gtk12		1.1.6    ->  1.2.0	PR ports/10420

Note that repository copies were made before this commit, as follows:

 ports/devel/glib11-devel       -> ports/devel/glib12
 ports/x11-toolkits/gtk11-devel -> ports/x11-toolkits/gtk12

Submitted by:	Jeremy Lea <reg@shale.csir.co.za>
1999-03-09 01:13:40 +00:00
Vanilla I. Shu
5bbd3541a3 Upgrade to 1.1.16. 1999-02-17 18:12:08 +00:00
SADA Kenji
988a5991df Upgrade to version 1.1.14
PR:		ports/9800
Submitted by:	Jeremy Lea <reg@shale.csir.co.za>
1999-01-30 20:23:09 +00:00
SADA Kenji
cf52582c72 s/freebsd3*)/freebsd[34]*/g 1999-01-28 21:31:42 +00:00