1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
Commit Graph

61 Commits

Author SHA1 Message Date
Joe Marcus Clarke
f1bb12de8e Presenting GNOME 2.16.1 for FreeBSD. This release represents a massive
amount of work by the FreeBSD GNOME Team and our testers.

On top of the usual GNOME update, we have taken this opportunity to move
GNOME from X11BASE to LOCALBASE.  This means roughly 600 ports NOT part of
the GNOME Desktop also need to be changed.  The bulk of the move was carried
out by ahze, mezz, and pav, but it would not have been possible without
cooperation from the FreeBSD KDE team who worked with us to make sure
GNOME and KDE can still coexist happily.  We would also like to send a
shout out to kris and pointyhat for putting up with multiple test runs
until we got something that was solid.

Back to GNOME 2.16.  This release brings a huge amount of new functionality
to FreeBSD.  The standard release notes can be read at
http://www.gnome.org/start/2.16/ .  But on top of what you will read there,
jylefort and marcus have completed work on a port of HAL to FreeBSD.  This
will allow FreeBSD to take advantage of closer hardware interaction such
as auto-mounting CD-ROMs, USB drives, and music players; auto-playing
audio CDs; and managing laptop power consumption.

But where would this all be without our loyal testers and contributors?
Therefore, the FreeBSD GNOME team would like to thank the following users:

Phillip Neumann <pneumann@gmail.com>
tmclaugh
mux
Yuri Pankov <yuri.pankov@gmail.com>
chinsan
Thomas <freebsdlists@bsdunix.ch>
Brian Gruber <knightbg@yahoo.com>
Franz Klammer <klammer@webonaut.com>
Dominique Goncalves <dominique.goncalves@gmail.com>
Pascal Hofstee <caelian@gmail.com>
Yasuda Keisuke <kysd@po.harenet.ne.jp>
backyard <backyard1454-bsd@yahoo.com>
Andris Raugulis <endrju@null.lv> <endrju@null.lv>
Eric L. Chen <d9364104@mail.nchu.edu.tw>
Pawel Worach <pawel.worach@gmail.com>
QuiRK on #freebsd-gnome
Shane Bell <decept0@gmail.com>
luigi
sajd on #freebsd-gnome
sat
Chris Coleman <chrisc@vmunix.com>
kaeru on #freebsd-gnome
crsd_ via irc.freenode.org/#FreeBSD-GNOME
Joel Diaz <joeldiaz@mac.com>

Enjoy!

Approved by:	portmgr (implicit, kris)
2006-10-14 08:35:50 +00:00
Jeremy Messenger
7f86966102 Use the correct mtree when you change the prefix, for example:
Incorrect: (before)
	================================
	# cd /usr/ports/x11-toolkits/pango
	# make -V MTREE_FILE
	/etc/mtree/BSD.x11-4.dist
	# make PREFIX=/tmp/foo -V MTREE_FILE
	/etc/mtree/BSD.local.dist <-- Here...
	================================

	Correct: (after)
	================================
	# cd /usr/ports/x11-toolkits/pango
	# make -V MTREE_FILE
	/etc/mtree/BSD.x11-4.dist
	# make PREFIX=/tmp/foo -V MTREE_FILE
	/etc/mtree/BSD.x11-4.dist <-- Here...
	================================
2006-06-12 04:58:43 +00:00
Edwin Groothuis
1adfa4acd3 Remove USE_REINPLACE from categories starting with T 2006-05-13 04:24:52 +00:00
Ade Lovett
8503536d38 Conversion to a single libtool environment.
Approved by:	portmgr (kris)
2006-02-23 10:40:44 +00:00
Joe Marcus Clarke
50c60afdff * Fix some off-by-one errors
* Update our strndup implementation
2006-02-14 23:54:32 +00:00
Joe Marcus Clarke
7c53933a11 Use catalog.ports instead of catalog to stoure our DTD info. The root XML
catalog should only be touched by xmlcatmgr.
2006-01-31 19:10:51 +00:00
Pav Lucistnik
af109e9bd0 - Use intlhack 2005-11-26 01:33:24 +00:00
Pav Lucistnik
e05544d7ba - Add SHA256 checksums 2005-11-23 22:41:05 +00:00
Ade Lovett
54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00
Joe Marcus Clarke
015687d5d8 Remove the now-redundant MTREE file selection code. This is handled in
bsd.port.mk.

Requested by:	lesi
2005-03-04 08:01:33 +00:00
Eric Anholt
4eb209da7d - Add the X_WINDOW_SYSTEM={xorg,xfree86-4,xfree86-3} variable to bsd.port.mk,
and make XFREE86_VERSION map to it.  XFREE86_VERSION is now deprecated.
- Make xorg the default X_WINDOW_SYSTEM on -current.
- Add several new X_*_PORT variables which point to various pieces of X11 based
  on the setting of X_WINDOW_SYSTEM, and make ports use them.
- Add information to CHANGES about how to handle the transition.

PR:		ports/68763
Approved by:	portmgr (marcus)
Approved by:	re (scottl)
2004-07-23 19:10:32 +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
Pav Lucistnik
db249059e4 - Add SIZE to GNOME ports
Submitted by:	trevor
2004-03-18 14:33:42 +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
Joe Marcus Clarke
186b8ba82f Add USE_GETTEXT and bump PORTREVISION.
Submitted by:	trevor
Tested by:	bento
2004-02-04 04:36:30 +00:00
Trevor Johnson
78da40aa98 Now gettext 0.12.1 is gettext-old. 2004-01-23 18:12:26 +00:00
Joe Marcus Clarke
2ee7c825f4 Fix build with Perl < 5.6.
Reported by:	krion
2003-12-07 08:34:20 +00:00
Joe Marcus Clarke
9fb35023ed Update to 0.3.14. 2003-12-06 23:13:31 +00:00
Trevor Johnson
f725dc8ef5 Use the FIND and XARGS macros introduced in bsd.port.mk 1.391. 2003-11-13 12:54:57 +00:00
Alexander Nedotsukov
92bdbda425 Fix build on -STABLE. 2003-11-04 13:23:08 +00:00
Joe Marcus Clarke
24efa94047 Convert scrollkeeper over to use the system catalog location. This helps
to unbreak gtk-doc as well as removes a ton of gross hacks to support
the old location.  Also, import some CVS patches from SK to fix some
potential crashes when installing bad catalogs.

While I tested this with a full SK database rebuild, problems may still
occur.  Please let me know if you encounter any issues with OMF files
after this commit.
2003-11-04 08:53:10 +00:00
Joe Marcus Clarke
a3108b1e51 Bump the PORTREVISION for the ports directly affected by the gettext upgrade.
Prodded by:	kris
2003-08-26 20:25:58 +00:00
Joe Marcus Clarke
adccc29aad Chase the libintl.so shared lib version. 2003-08-25 05:41:38 +00:00
Adam Weinberger
5a1964dbcd Remove REINPLACE commands that were rolled into gnomehack. 2003-06-12 09:46:09 +00:00
Joe Marcus Clarke
a13241fe10 Start the find at ${LOCALBASE}/share to avoid a potential search through
something like a cvsup server's symlinks.

Pointed out by:	sf
2003-04-29 05:55:03 +00:00
Joe Marcus Clarke
9c616cc09b Bump PORTREVISION to pick up -pthread from libxml2. As of libxml2-2.5.7,
thread support is enabled by default.  This fixes undefined symbol errors
when running scrollkeeper apps.
2003-04-27 22:58:20 +00:00
Joe Marcus Clarke
2ce3e3727b Tell find to follow symlinks when searching for DocBook files.
PR:	51429
Submitted by:	Martyn J.Pearce <fluffy@sixears.com>
2003-04-26 07:29:57 +00:00
Joe Marcus Clarke
7302771412 Update to 0.3.12. 2003-04-23 05:13:20 +00:00
Joe Marcus Clarke
b33eaf3276 Remove USE_GNOMENG. 2003-04-20 19:54:55 +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
da9e13182f Fix a long-standing bug that required scrollkeeper to build as root.
Instead, make configure check for a file installed by docbook-sk, and
move the catalog creation to a pre-install target.

Prompted by:	Andrew J Caines <A.J.Caines@halplant.com>
Tested by:	myself
		Andrew J Caines <A.J.Caines@halplant.com>
2003-02-01 04:20:15 +00:00
Joe Marcus Clarke
c12a15316b * Allow bento to generate the necessary XML catalogs
* Update the XSL versions
2003-01-24 05:03:03 +00:00
Joe Marcus Clarke
797ca128e5 Allow the XML catalogs to be built if BATCH is defined.
Reported by:	Hung Michael Nguyen <nguyenhm16@mac.com>
2003-01-21 22:08:14 +00:00
Joe Marcus Clarke
f2ee099462 Fix two long-standing bugs where scrollkeeper would overwrite the
SGML catalogs in favor of its own XML format catalogs as well as prevent
scrollkeeper from making HTTP connections to obtain DTDs for OMF
validation.

PR:	39504 46179
Tested by:	Stephen Hilton <nospam@hiltonbsd.com>
		Mezz bsdforums.org <reigncracks@hotmail.com>
2003-01-20 00:30:26 +00:00
Joe Marcus Clarke
e8e3f9bb11 Set the MTREE_FILE explicitly since we're setting PREFIX explicitly.
Modeled after: lang/librep
2003-01-13 02:43:19 +00:00
Joe Marcus Clarke
69aa761f83 Add support for Docbook 4.2.
Submitted by:	John Merryweather Cooper <john_m_cooper@yahoo.com>
2002-10-09 19:52:28 +00:00
Joe Marcus Clarke
c3c758e01d Apply the vendor patch for the recent security exploit.
See http://online.securityfocus.com/bid/5602/info/ for more details.
2002-10-09 16:34:46 +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
572d0b6afc Attempt to fix a security bug in scrollkeeper in which the code will follow
symlinks when attempting to locate a temp file.  Note, this is not the
author's patch, but one of my own.  I think this should fix it, but I'm
not sure if I'm missing something.  The patch is based on the description
from securityfocus.com.

See http://online.securityfocus.com/bid/5602/info/ for more details.

Reported by:	Daniel Harris <dh@askdh.com>
2002-09-13 04:03:50 +00:00
Joe Marcus Clarke
de3acd8389 Fix build when /usr/local is a symlink.
PR:		42320
2002-09-03 15:14:01 +00:00
Joe Marcus Clarke
18a6fc4d53 Remove -L from the find command used to locate dtds. This flag proved
problematic for some users.  Instead, fix it so that only ${LOCALBASE}
will be followed if it is a symlink.

PR:		42096
Tested by:	John-David Childs <jdc@nterprise.net>
2002-08-28 02:48:56 +00:00
Joe Marcus Clarke
455b2dd501 We backup the original SGML catalog files before converting them to XML.
When we uninstall scrollkeeper, revert back to the original catalog files
so the dependecny chain has a better chance of being preserved.  Bump
PORTREVISION.

PR:		41300
2002-08-14 15:52:38 +00:00
Joe Marcus Clarke
7e97e99c06 Add an explicit dependency on docbook-xml to get around a problem where
the implicit dependency fails due to the catalog file not being removed
when docbook-xml is deleted.

PR:		41300
2002-08-11 17:32:35 +00:00
Ade Lovett
c8eaa93644 Chase shlib rev of devel/gettext
Submitted by:	lots and lots
Pointy hat to:	ade
2002-08-01 16:22:41 +00:00
Joe Marcus Clarke
51b2ed7da1 Attempt to detect docbook-xml while package building.
Submitted by:	bento
2002-07-28 17:39:24 +00:00
Joe Marcus Clarke
a9c0072e13 Update to 0.3.11. 2002-07-25 14:51:25 +00:00
Maxim Sobolev
19a718ac4c Convert all core GNOME1 components and some of the most popular GNOME1
apps to bsd.gnomeng.mk. The goal is to make GNOME1 framework more modular,
which will allow to use GNOME1 apps with GNOME2 desktop as well as considerably
reduce langht of dependency chains for GNOME1 ports (for example after this
commit AbiWord's dependency chain was reduced by 7 ports from 57 to only
50, while Gnumeric's - from 60 to 53 and so on).

The most of the GNOME1 apps are still not converted, so that lot of work is
still ahead.

Please report any unusual problems to gnome@FreeBSD.org.

Discussed with:	marcus
Reviewed by:	marcus
2002-07-11 17:16:10 +00:00
Joe Marcus Clarke
1018684cf1 Allow the pkg-install script to traverse symbolic links looking for DTD files.
This fixes a problem where /usr/local might be a symlink.

Reported by:	Eric W. Bates <ericx@vineyard.net>
2002-07-01 04:51:13 +00:00
Joe Marcus Clarke
8c37352922 Forced commit to test cvs email. 2002-06-26 10:52:08 +00:00
Maxim Sobolev
4803463633 Add USE_REINPLACE where appropriate. 2002-06-19 08:18:10 +00:00