1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
Commit Graph

4133 Commits

Author SHA1 Message Date
Bruce M Simpson
960eff420b Update my email address in MAINTAINER and comment fields. 2005-01-12 15:53:48 +00:00
Jeremy Messenger
39c13e2d3c - Take the maintainership.
- Add install the example and doc files.
- Remove the DEPRECATED/EXPIRATION_DATE. It's ruby's fault that need to add
  -pthread. Current, this port works perfect for me when I hack in ruby by add
  -pthread in the LDFLAGS and reinstall it. [1]

Ok'ed by:	kris [1]
2005-01-12 00:11:19 +00:00
Alexey Dokuchaev
af02a82fb5 IGNORE string should not be quoted.
Part of PR:	ports/76095
2005-01-11 14:28:49 +00:00
Edwin Groothuis
46d68af243 x11/login.app : update and take maintainership
This updates x11/login.app from 2.0.0.a7_1 to 2.1.1 and
	transmits maintainership from ports@freebsd.org to me.

PR:		ports/76010
Submitted by:   Tobias Roth <ports@fsck.ch>
2005-01-10 10:51:29 +00:00
Kirill Ponomarev
f7bccd0887 Update to 4.1
PR:		ports/76007
Submitted by:	maintainer
2005-01-09 23:34:38 +00:00
Dejan Lesjak
eb4a1d3895 Avoid installing empty directory, so we don't have to list it in plist.
Prodded by:	pointyhat via kris
2005-01-08 17:43:29 +00:00
Dejan Lesjak
a3d10c28b7 Fix plist.
Nudged by:	pointyhat via kris
2005-01-08 17:37:20 +00:00
Kirill Ponomarev
c791b92bd3 Fix build on amd64. 2005-01-08 10:45:44 +00:00
Kirill Ponomarev
906835db10 Fix plist and cleanup after repocopy.
Pointyhat to:	edwin
Approved by:	portmgr (implicit)
2005-01-06 08:39:11 +00:00
Kirill Ponomarev
28865477df Fix MASTER_SITES.
Approved by:	portmgr (implicit)
2005-01-04 09:44:23 +00:00
Kris Kennaway
3ddfc30188 Partially fix package building by adding a dependency on Xvfb in the
PACKAGE_BUILDING case.  Mark BROKEN because this package is still
missing a dependency.

Approved by:	portmgr (self)
2005-01-01 22:19:36 +00:00
Kris Kennaway
88d78c401e Fix package building by adding a dependency on Xvfb in the
PACKAGE_BUILDING case.  The package build scripts then DTRT and ensure
this is running at build-time so a DISPLAY is available.

Approved by:	portmgr (self)
2005-01-01 22:16:28 +00:00
Michael Nottebrock
18e5ca604b Patch ftp kioslave command injection vulnerability.
References:
http://www.securityfocus.com/bid/11827
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-1165

Approved by: portmgr
2005-01-01 13:36:18 +00:00
Alexander Leidinger
64cf27c85d Say hello to the linux mega patch, it consolidates our linux bits a
little bit and allows to proceed to a more recent linux_base from
a stable (read as: the major bugs should be ironed out or identified
and most linux ports build just fine) source.

It also allows to ship 4.11 with a working linuxolator (the EOLed
linux_base is marked forbidden because of a security hole).

This is a major update, please read UPDATING (and CHANGES if you
develop linux ports).

Changes:
 - change the default linux_base from v7 to v8
 - add a newer freetype to linux_base-8 for nicer fonts display [1]
 - don't let cpio use hardlinks in the linux_base-8 port to quiet some
   warnings in some cases [2]
 - fix a cut&past error in the linux_base-8 pkg-install script [3]
 - convert the binary knob "USE_LINUX" to a version specifier, e.g.
   USE_LINUX=<value> specifies a dependency upon
   emulators/linux_base-<value>, exceptions are a value of "7" (which
   does what you want and adds a dependency to linux_base) and any
   value without a corresponding port in
   PORTSDIR/emulators/linux_base-<value> (which adds a dependency to
   the default linux_base)
 - don't implicitly add USE_LINUX with the USE_LINUX_PREFIX knob,
   this allows us to use the USE_LINUX_PREFIX knob for linux_base and
   paves the way for splitting up future linux base ports into
   individual pieces
 - remove RESTRICTED from some GPL licensed ports, even when we only
   distribute binaries, we get them from official linux sites, so
   anyone can grab them there if he needs to
 - add a dependency upon the linux X11 bits where necessary (based upon
   guesswork)
 - don't use USE_X_PREFIX in some linux ports since it adds a dependency
   to the FreeBSD X11 libs, as a workaround use PREFIX?= (the clean
   solution would be to remove the implicit USE_XLIB from USE_X_PREFIX)
 - bump the portrevision of the linux ports ("better safe than sorry"
   algorithm)
 - pass maintainership of the important linux infrastructure to a
   mailinglist, hijack freebsd-emulation@ for this purpose (if somebody
   doesn't like this: tell us your bikeshed color at freebsd-emulation@,
   my color would be "linuxolator@" in case someone cares...)
 - add a pkg-install script for linux-fontconfig, but don't use it;
   everything should work without it (the FreeBSD fc-cache program should
   do all the work), but in case we need it we just need to decomment the
   pkg-install part in the Makefile
 - fix some dependencies
 - fix some bugs
 - add some static plists
 - unbreak the ports with dependecies to more than one linux_base

This also fixes some ports which are marked BROKEN because of dependencies
to v7 and v8 of linux_base at the same time.

Known bugs:
 - the linux-mesa and linux-devtools ports install libGL*.so symlinks
 - some "minor" plist bugs (e.g. ld.so.{conf,cache} are modified by
   the linux X11 port, so linx_Base-8 moans at deinstall time)

Future work (interested souls should coordinate with freebsd-emulation@):
 - add some kind of USE_LINUX_X11 knob to streamline the X11 dependencies,
   or modify the behavior of USE_XLIB in the USE_LINUX case
   AFAIK trevor has some patches.
 - make USE_XLIB and USE_X_PREFIX orthogonal to be able to get rid of
   the PREFIX?= workaround in some linux ports
   Should be discussed/coordinated on/with x11@.
 - move the RPM bits from x11-toolkits/linux-gtk/Makefile to PORTSDIR/Mk/
 - update to a more recent linux base

PR:			69997, 70539 (and maybe others)
Discussed with/on:	java@, x11@, trevor, portmgr
Tested by:		mezz, portmgr, pointyhat
RPM hunted down by:	Joseph Gelinas <scirocco@tasam.com> [1]
Requested by:		portmgr [2]
Submitted by:		kris [3]
Approved by:		portmgr
2004-12-31 18:24:10 +00:00
Eric Anholt
df0e9fb363 Re-add libXThrStub for FreeBSD that requires thread stubs. Between 6.7 and 6.8
I had moved libXThrStub into libX11, because it seemed unnecessary.  However,
because libc_r symbols are also weak, the weak stubs in libX11 would interfere,
however they don't if they are in a library linked by libX11.  The most common
manifestation of the problem was:
GThread-ERROR **: file gthread-posix.c: line 137 (g_thread_impl_init): error
'Invalid argument' during 'pthread_getschedparam (pthread_self(), &policy,
&sched)'
in glib apps.

PR:		ports/75477
Submitted by:	KIMURA Yasuhiro, yasu at utahime dot org
Testing by:	marcus
2004-12-31 09:02:27 +00:00
Trevor Johnson
a8b3f22147 Support amd64.
PR:		75646
Submitted by:	Conrad J. Sabatier
2004-12-30 19:31:24 +00:00
Thierry Thomas
b028b0334d Upgrade to 4.7. 2004-12-29 21:29:21 +00:00
Pav Lucistnik
2afbeab87a - Rewrap to fit on 80 columns console
Approved by:	anholt (x11 hat)
2004-12-29 02:29:31 +00:00
Edwin Groothuis
615a2c95ef add mrxvt to the Makefile.
Noticed by: kris
2004-12-28 22:56:16 +00:00
Joe Marcus Clarke
67e4a143bd Chase the gimp upgrade.
Reported by:	pointyhat via kris
2004-12-28 21:35:00 +00:00
Alexey Dokuchaev
de788f679b Fix a small typo in COMMENT. 2004-12-27 11:19:03 +00:00
Alexey Dokuchaev
8300e8a2ac Add XCurs, an editor for new, XFree86/XOrg style full-color cursor
properties.
2004-12-27 06:15:25 +00:00
Alexey Dokuchaev
71990e22f8 nVidia's libGL depends on libm.so.2 which is not available since 5.3-BETA7.
Get one via `misc/compat4x' port.

PR:		ports/74130
Submitted by:	Marius Nuennerich <marius.nuennerich(at)gmx.de>
2004-12-27 02:53:25 +00:00
Alexey Dokuchaev
11e3f6da5a Mark as for i386 only.
Suggested by:	remko
2004-12-27 02:27:28 +00:00
Trevor Johnson
8ef31664af Back out my previous commit because it keeps this from packaging
(requested by netchild and kris).
2004-12-25 19:17:19 +00:00
Mario Sergio Fujikawa Ferreira
5bb578428d Remove deprecated USE_SIZE 2004-12-25 11:43:58 +00:00
Kirill Ponomarev
90f1384beb Move xtermcontrol to 'x11' category since it's more appropriate for
this kind of software.

Proposed by:	adamw
2004-12-25 08:28:21 +00:00
Norikatsu Shigemura
d9ed90620d Reset MAINTAINER to ports@.
We cannot contact them for a long time.

Discussed with:	hrs
Approved by:	kiri(blanket), mita(blanket),
		shige(blanket), taoka(blanket)
2004-12-23 09:32:50 +00:00
Volker Stolz
862f44a5fe Update to 0.4.5 2004-12-23 09:08:40 +00:00
Edwin Groothuis
9e19888e49 New port: x11/xbelld
BellD is a small daemon for replacing the standard X Window
	System terminal bell with a more interesting set of sounds.
	This is useful for systems where the terminal bell is handled
	by the "PC Speaker," or where different sounds are desired
	for different classes of X clients.

	XBellD works by intercepting terminal bell requests on the
	server side, and then playing user-specified sounds through
	a PCM capable soundcard. The resource class of the client
	making a terminal bell request is used to match a corresponding
	sound file which should be played when such a request is
	made.

	WWW: http://www.meowfishies.com/xbelld.rhtml

PR:		ports/71815
Submitted by:	Nosov Artem <chip-set@mail.ru>
2004-12-23 06:43:40 +00:00
Dejan Lesjak
5870a4864c Bump PORTREVISION, since html manpages are no longer built/installed
and that changes packaging content.
2004-12-23 05:31:04 +00:00
Edwin Groothuis
0e65586e82 new port: x11/mrxvt
Mrxvt (previously named as materm) is a lightweight and
	powerful multi-tabbed X terminal emulator based on the
	popular rxvt and aterm. It implements many useful features
	seen in some modern X terminal emulators, like gnome-terminal
	and konsole, but keep to be lightweight and independent
	from the GNOME and KDE desktop environment. The following
	are the major features of mrxvt (* are new features compared
	with rxvt, + are enhanced features compared with rxvt):

PR:		ports/74470
Submitted by:	David Yeske <dyeske@yahoo.com>
2004-12-23 05:08:56 +00:00
Eric Anholt
c90ee83f03 Update X.Org ports to 6.8.1, and the DRI port to use Mesa 6.2. Because Mesa 6.2
DRI drivers are incompatible with the old libGL in XFree86, they have been
repocopied to graphics/xfree86-dri.  Also note that with this commit the html
manpages are going away, and with it the runtime dependency on perl for the
imake port.

Release notes at: http://www.x.org/X11R6.8.1/RELNOTES.txt

Props to:	kris (multiple cluster runs and sorting through logs)
		lesi (fixing all the issues in those logs, and more)
2004-12-23 01:35:49 +00:00
Trevor Johnson
ee53836747 This works with linux_base-rh-9 and linux_base-suse-9.1 as well as
linux_base-8.
2004-12-22 00:36:32 +00:00
Alexey Dokuchaev
c49b208457 Add gtk-themepreview 2.0, a small application for preview your theme
widgets in one small window.
2004-12-22 00:33:35 +00:00
Michael Johnson
1ab66dbe25 Remove gnomehier directories. 2004-12-21 23:19:38 +00:00
Jeremy Messenger
58a61e763c Put all hacks of hicolor icons and mime from ports to bsd.gnome.mk's gnomehack.
deskutils/drivel is the only port that has pkg-plist change, so bump the
PORTREVISION. The rest else should be no function change, but just remove the
patches to allow gnomehack takes care of it. Keep in mind, I only touch those
ports that already have gnomehack.

Reviewed by:	pav and marcus
2004-12-21 00:23:18 +00:00
Patrick Li
bdb5cb9f4a Fix loading history on sparc64
PR:		ports/66074
Submitted by:	Andrew Belashov <bel@orel.ru>
2004-12-20 17:57:37 +00:00
Trevor Johnson
7876fa03f6 Use MASTER_SITE_SUSE, along with a couple of sites I found on
www.filesearching.com.
2004-12-20 10:12:15 +00:00
Kris Kennaway
b70e8b7e1d This port is scheduled to be removed on 2005-02-18 if it is still
broken at that time, and a fix has not been submitted to GNATS.
2004-12-18 23:02:35 +00:00
Joe Marcus Clarke
2e7464d3fa Change the default reboot command to be more geom_mirror friendly. Using
shutdown -r will prevent geom_mirror from taking a long time to resync after
reboot.

Submitted by:	olgeni
2004-12-18 18:08:36 +00:00
Clive Lin
baf19feaff Fix build on 4.x. 2004-12-18 09:58:29 +00:00
Adam Weinberger
b39cb1f6ac Remove MASER_SITE_LOCAL from MASTER_SITES; jwz.org doesn't
appear to have the bandwidth issues it did when the
extra MASTER_SITE was added.
2004-12-17 09:37:27 +00:00
Trevor Johnson
77094ddeae update for security bugs in parsing of X Pixmap images, see:
<URL:https://rhn.redhat.com/errata/RHSA-2004-478.html>
<URL:http://www.novell.com/linux/security/advisories/2004_41_xshared_XFree86_libs_xorg_x11_libs.html>
<URL:http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0687>
<URL:http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-068*>
2004-12-17 05:42:44 +00:00
Joe Marcus Clarke
01f4e58375 Update to 4.19 with four new hacks (fireworkx, intermomentary, pinion, and
substrate) as well as some additional bugfixes.
2004-12-17 03:23:44 +00:00
Thierry Thomas
38de26770c Upgrade to 4.6. 2004-12-16 20:15:09 +00:00
Michael Nottebrock
43136aaadc Fix kde3-i18n ports. 2004-12-16 11:24:06 +00:00
Edwin Groothuis
362db3d388 Make portlint a little bit happier. 2004-12-16 09:09:24 +00:00
Edwin Groothuis
8f7fc644d0 Update port: x11/x3270 to version 3.3.2p1
This port has been stuck on an ancient, non-SSL-capable version
    for seveal years.  Please consider updating to a more recent
    upstream source.

    The attached files are offered as a starting point; some
    "adjustment" is probably needed.  Note that what's below
    completely replaces the previous port; all previous patches are
    no longer valid.  Also, I've added "net" to the CATEGORIES,
    along with a link to the official web page in the package
    description.

    The compilation produces one "warning: assignment from incompatible
    pointer type"; this deserves further investigation (particularly
    for 64-bit builds).

    Since I do not have access to the requisite legacy systems, I
    am unable to properly test this software (particularly the SSL
    aspects).

PR:		ports/70808
Submitted by:	Eric P. Scott <eps+psub0408@ana.com>
Approved by:	maintainer timeout
2004-12-16 09:07:41 +00:00
Kris Kennaway
be3e1f7794 Clean up handling of locale directories at deinstall-time:
* Don't remove "system directories" (which were created by BSD.*.dist)
* Silently try to remove locale directories which we might have created
2004-12-16 05:49:27 +00:00
Michael Nottebrock
38b8c74322 Mark all kde3-i18n* ports broken. 2004-12-15 12:54:42 +00:00
Clive Lin
487941771b Update to 3.18
PR:		ports/75072
Submitted by:	MAINTAINER
2004-12-15 06:34:35 +00:00
Michael Nottebrock
2166eacf85 Fix plist. 2004-12-14 09:17:09 +00:00
Michael Nottebrock
0083804533 Update to KDE 3.3.2 2004-12-13 20:12:15 +00:00
Thierry Thomas
30ef2fb901 Upgrade to 4.5.
From the changelog:

- fix an extremely nasty bug in utf8-conversion. upgrade is advised.

- completely re-wrote selection pasting. This should fix garbled
  incomplete characters at 32k boundaries and too-short INCR
  selections, and more. Increases memory requirements considerably
  for large selections, but that seems unavoidable.
2004-12-13 18:29:09 +00:00
Peter Pentchev
b74ac43541 Update to 2.6, now with the new package URL and distfile location. 2004-12-13 13:54:06 +00:00
Thierry Thomas
b6f892f429 Upgrade to 4.4. 2004-12-13 09:57:51 +00:00
Joe Marcus Clarke
e66eb5c3ad Cleanup the leftover ${PREFIX}/sbin, but only if it's empty. 2004-12-13 00:59:35 +00:00
Joe Marcus Clarke
3c9688bbb8 Presenting GNOME 2.8.2. for FreeBSD.
The list of changes for each component can be found at
http://mail.gnome.org/archives/gnome-announce-list/2004-December/msg00026.html
2004-12-11 18:47:53 +00:00
Joe Marcus Clarke
1d1acb9839 Update to 2.8.2. 2004-12-11 18:44:41 +00:00
Pav Lucistnik
5c8c2c1591 - Augment configure patching
Submitted by:	Antoine Brodin <antoine.brodin@laposte.net>
Pointy hat to:	pav
2004-12-10 08:37:50 +00:00
Ying-Chieh Liao
d0fdf95ebd requires perl 5.8 2004-12-10 02:06:08 +00:00
Eric Anholt
e99b376eb5 Use the right MTREE_FILE, since we're not using USE_X_PREFIX. 2004-12-09 20:58:38 +00:00
Eric Anholt
c849c53774 Try to clean up this port's new directories on uninstall. 2004-12-09 20:57:14 +00:00
Pav Lucistnik
d97a5613a9 - Even more backup sites
Submitted by:	Hendrik Scholz <hscholz@raisdorf.net> (maintainer)
2004-12-09 13:46:10 +00:00
Pav Lucistnik
755eefd372 - File on master site is Forbidden, use Gentoo mirrors for now.
Reported by:	pointyhat
2004-12-09 12:46:31 +00:00
Pav Lucistnik
884744ef92 - Update to 0.7.0
PR:		ports/74746
Submitted by:	Antoine Brodin <antoine.brodin@laposte.net>
2004-12-09 09:49:38 +00:00
Pav Lucistnik
cd39d9dbda - This just is not on MASTER_SITE_GNOME, never was, and perhaps never will be 2004-12-08 17:22:00 +00:00
Michael Johnson
ced3cd1cf0 Update to 2.8.2 2004-12-08 01:13:53 +00:00
Dejan Lesjak
6cfffc955c Add imake as build dependency. It will soon no longer be picked up by
x-clients port.

Pointed out by:	dosirak via kris, while testing X.Org upgrade
Approved by:	lofi
2004-12-07 21:32:07 +00:00
Joe Marcus Clarke
a5d57df5f3 Update to 2.8.2. 2004-12-07 02:48:35 +00:00
Thierry Thomas
e894315981 Mark BROKEN on amd64:
> /usr/bin/ld: /usr/lib/libsupc++.a(pure.o): relocation R_X86_64_32 can not be used when making a shared object; recompile with -fPIC
 > /usr/lib/libsupc++.a: could not read symbols: Bad value

Reported by:	Kris via pointyhat.
2004-12-06 09:24:47 +00:00
Joe Marcus Clarke
a22e6bafac Update to 2.6.5. 2004-12-05 22:52:02 +00:00
Joe Marcus Clarke
96cbefe52c Update to 2.8.2. 2004-12-05 22:47:22 +00:00
Lars Thegler
804e0b3a4a - Fixed pkg-plist
Reported by:	kris
2004-12-05 12:59:01 +00:00
Michael Nottebrock
90bfc50e2a Fix implicit dependency on imake for KDE and all USE_KDELIBS_VER
users.
2004-12-05 11:24:07 +00:00
Mark Linimon
06200f0963 With portmgr hat on, reset bouncing maintainer address. All of the commits
within the last year have been with maintainer timeouts, as well.
2004-12-05 05:13:20 +00:00
Thierry Thomas
c100150b71 Upgrade to 4.3.
Changelog at <http://dist.schmorp.de/rxvt-unicode/Changes>.
2004-12-04 13:06:56 +00:00
Kirill Ponomarev
7b793435de Update to 197.
ChangeLog: http://invisible-island.net/xterm/xterm.log.html#xterm_197
2004-12-04 08:11:24 +00:00
MANTANI Nobutaka
c79807bc76 Update to 2.9.1. 2004-12-02 15:53:16 +00:00
Doug Barton
cbc04c1812 Unbreak by updating pkg-plist. Pet portlint.
Submitted by:	kris/pointyhat
2004-12-02 14:05:05 +00:00
Thierry Thomas
352e99d816 Upgrade to 4.2. 2004-12-01 20:45:46 +00:00
Joe Marcus Clarke
70a29d189d Fix build with X.Org 6.8.1 now that imake is no longer included by default.
Submitted by:	lesi
2004-12-01 08:46:42 +00:00
Michael Johnson
47c498a40f - Update to 0.8
- Add freedesktop.org to MASTER_SITES
2004-12-01 08:46:22 +00:00
Joe Marcus Clarke
7098b2dfa7 Fix build with X.Org 6.8.1.
Submitted by:	lesi
2004-12-01 01:46:38 +00:00
Volker Stolz
4e47717150 Update to 5.14.1
PR:		ports/74466
Submitted by:	UMENO Takashi
2004-11-30 16:20:53 +00:00
Patrick Li
28970609bb Update to 1.0.3 2004-11-30 05:04:25 +00:00
Alexander Nedotsukov
dd5f25f97a Update 0.3 2004-11-29 09:03:55 +00:00
Kris Kennaway
4400a9ad40 BROKEN: Broken pkg-plist 2004-11-27 02:44:52 +00:00
Eric Anholt
28c1eb46a3 Update for new MASTER_SITE post-breakin. 2004-11-26 18:36:03 +00:00
Joe Marcus Clarke
dd94f21336 Do not change permissions and group ownership of the share/gnome/games
directory.  Leave that up to gnomehier.
2004-11-26 06:01:34 +00:00
Joe Marcus Clarke
dc5dd31002 Fix inclusion of evolution-data-server when package building. 2004-11-25 22:09:53 +00:00
Kris Kennaway
efb9f2eaf8 Add missing directory 2004-11-24 23:23:20 +00:00
Jeremy Messenger
e68c049cb7 Use new GCONF_SCHEMAS.
Approved by:	kwm and marcus
2004-11-24 00:14:56 +00:00
Koop Mast
db78fcaf26 Change the not yet changed maintainer fields to my FreeBSD.org account.
Approved by:	pav (mentor)
2004-11-23 08:51:28 +00:00
Jeremy Messenger
d7fcc8234e Use new INSTALLS_OMF.
Approved by:	bland, kwm, marcus and pav
2004-11-23 02:23:08 +00:00
Patrick Li
af91915a4d Update to 0.6 2004-11-22 23:42:01 +00:00
Thierry Thomas
f6d05dfcea Upgrade to 4.1. 2004-11-21 22:01:46 +00:00
Doug Barton
d8da943294 It's unclear why removing LDFLAGS="${LDFLAGS}" from CONFIGURE_ENV
works, but it does allow it to build, so let's go with this till
someone comes up with a better solution.

PR:		ports/74169
Submitted by:	Florian Franzmann <siflfran@hawo.stw.uni-erlangen.de>
2004-11-21 20:38:20 +00:00
Marcel Moolenaar
d3b8268442 Don't add xorg-server to RUN_DEPENDS on ia64. The xorg-server port
hasn't been ported to ia64, mostly because syscons is not supported.
2004-11-21 20:22:09 +00:00
Kris Kennaway
9b4534401c BROKEN on ia64: Does not compile 2004-11-18 22:21:33 +00:00
Alexander Nedotsukov
3834ed8401 Fix regexps for URL matching.
PR:		74058
SUbmitted by:	Jean-Yves Lefort <jylefort@brutele.be>
2004-11-18 12:54:08 +00:00
Kris Kennaway
f2ce4a5fda BROKEN: Does not build with new version of windowmaker 2004-11-18 06:58:29 +00:00
Michael Nottebrock
d225aca67a Fix the fix. 2004-11-17 16:35:34 +00:00
Jeremy Messenger
fe4de45f1f -Add ruby-rsvg2 and ruby-gnomeprintui (include ruby-gnomeprint).
-Reduce multi-RUN_DEPENDS+= to a RUN_DEPENDS=.
-Bump PORTREVISION.
2004-11-15 19:52:18 +00:00
Jeremy Messenger
0faa99dc0b /me slaps cvs for missed distinfo of 0.11.0 tarballs. 2004-11-15 08:28:14 +00:00
Jeremy Messenger
0fcebac3e3 Update to 0.11.0. Three new ports (Ruby/RSVG, Ruby/GnomePrint and
Ruby/GnomePrintUI) will be add in ruby-gnome2-all later when I am done with
create and test with those new ports tonight or tomorrow.
2004-11-15 06:18:35 +00:00
Pav Lucistnik
cee1bf4672 - Change dependency lines for gdesklets port, gdesklets-core.pc is going
away in next version
2004-11-15 01:17:16 +00:00
Pav Lucistnik
0c91e4863f - Update maintainer's email address
PR:		ports/73939
Submitted by:	Yonatan <onatan@gmail.com> (maintainer)
2004-11-14 22:26:11 +00:00
Thierry Thomas
692adf3f26 - update MASTER_SITES;
- make portlint happy.

PR:		ports/73940
Submitted by:	maintainer.
2004-11-14 20:42:45 +00:00
MANTANI Nobutaka
3b1040728d - Update to 2.9.0.
- Use OPTIONS.
- Add three knobs(WITH_UIM, WITH_M17NLIB, WITH_IIIMF).

Note: IIIMF support is currently broken.
2004-11-14 15:48:52 +00:00
Alexander Nedotsukov
e92918c3cf Remove ${OSVERSION} > 500000 restriction for inkscape.
The version of inkscape we have in ports can be built on 4.x systems
as well. That bit comes ftom MarcusCom repo here where it was
apropriate.

Reported by:	Fernan Aguero <fernan@iib.unsam.edu.ar>
2004-11-13 03:34:48 +00:00
Michael Nottebrock
1ec5e3c20f Fix some more environment nits in the kdm configuration templates, and
default to shutdown -p now for halting instead of shutdown -h now.

No PORTREVISION bump since manual regeneration of kdm configuration would
be required anyway.

PR: 73844
Submitted by: Jose M Rodriguez <josemi@freebsd.jazztel.es>
2004-11-12 02:45:40 +00:00
Michael Nottebrock
29924df852 More pthread-check fixes. 2004-11-11 23:22:25 +00:00
Pav Lucistnik
0cd2ecfdb7 - Update to 1.0.0.p12
PR:		ports/73644
Submitted by:	Paul Murphy <paul.murphy@cogeco.ca>
2004-11-10 23:04:18 +00:00
Joe Marcus Clarke
07575f8e8a Correct the epiphany-extensions dependency.
Reported by:	pointyhat via kris
2004-11-10 19:04:35 +00:00
Michael Nottebrock
12d56caf58 More pthread-check fixes. 2004-11-10 15:14:29 +00:00
Yen-Ming Lee
ccb9f3c322 - utilize USE_GETOPT_LONG and remove dependency on libgnugetopt on 5.x 2004-11-10 14:50:51 +00:00
Michael Johnson
c9a1b1ee04 Fix path to galeon
Pointed out by:	pointyhat via kris
Approved by:	marucs (co mentor)
2004-11-10 04:19:22 +00:00
Jeremy Messenger
817db233c8 Bump 29 ports that use GCONF_SCHEMAS. Somehow, the diff of GNOME 2.8.x has
lost the small part. The small part was GCONF_SCHEMAS in bsd.gnome.mk that is
taking care of gconf key and schemas files for pkg-plist. Pav has committed by
re-add GCONF_SCHEMAS back in bsd.gnome.mk this afternoon. Therefore, must bump
PORTREVISION to correct our pkg-plist database installed.
2004-11-10 03:19:15 +00:00
Mark Linimon
af04acfc87 Makefiles like tabs more than spaces. 2004-11-09 20:23:37 +00:00
Alexey Dokuchaev
03068b7dd1 Despite the fact nVidia claims 4.9 or later is required, allow people with
older releases (and thus older make(1)) to use this port.

Quoting linimon, I sure will be glad when everyone has that newer make(1).

PR:		ports/72137
Submitted by:	Michel Lavondes <fox(at)vader.aacc.cc.md.us>
Approved by:	fjoe (mentor, implicit)
2004-11-09 09:42:42 +00:00
Alexey Dokuchaev
52da72ebd5 Install link libXvMCNVIDIA_dynamic.so.1 -> libXvMCNVIDIA.so.1. Some apps
seem to need this.  Bump PORTREVISION.

PR:		ports/72877
Submitted by:	ahze
Approved by:	fjoe (mentor, implicit)
2004-11-09 09:37:32 +00:00
Michael Nottebrock
14a1da27f4 Update to KDE 3.3.1 2004-11-08 00:34:12 +00:00
Joe Marcus Clarke
46a4d69571 Bump PORTREVISIONS for all ports that depend on atk or pango to ease in the
big upgrade.
2004-11-07 22:37:47 +00:00
Joe Marcus Clarke
58406bee89 Presenting GNOME 2.8 for FreeBSD (2.8.1 to be exact).
This release notes detailing all of the new goodies in GNOME 2.8 can
be found at http://www.gnome.org/start/2.8/notes/, and the list of what
was fixed in GNOME 2.8.1 can be found at
http://lists.gnome.org/archives/gnome-announce-list/2004-October/msg00056.html.

This release, as well as all of our others, would not have been possible
without the great efforts of our FreeBSD GNOME Team.  The list of
current members can be found at http://www.freebsd.org/gnome/contact.html
(including our newest member, Michael Johnson <ahze@FreeBSD.org>).

Special thanks also goes out to all of the loyal FreeBSD GNOME users that
put up with crashes and hangs to test and debug GNOME on FreeBSD.  We would
especially like to thank those users that provided patches for GNOME 2.7 and
2.8:

Franz Klammer <klammer@webonaut.com>
Piotr Smyrak <piotr.smyrak@heron.pl>
Radek Kozlowski <radek@raadradd.com>
Khairil Yusof <kaeru@pd.jaring.my>
Yasuda Keisuke <kysd@po.harenet.ne.jp>
Tom McLaughlin <tmclaugh@sdf.lonestar.org>
Vladimir Grebenschikov <vova@fbsd.ru>

GNOME 2.8 also features a new, FreeBSD-specific splashscreen that
was designed by jimmac for GNOME 2.8, then daemonized by
Franz Klammer <klammer@webonaut.com> and Radek Kozlowski
<radek@raadradd.com>.

As with GNOME 2.6, you cannot just "portupgrade" to GNOME 2.8.  There is
a script provided at http://www.marcuscom.com/downloads/gnome_upgrade28.sh
that will aid in the upgrade process.  Full documentation on the GNOME 2.8
upgrade is coming following this commit.

From all of us at FreeBSD GNOME, ENJOY!
2004-11-07 22:24:32 +00:00
Pav Lucistnik
0d2980531d - Fix build with latest windowmaker
PR:		ports/73338
Submitted by:	Tobias Roth <ports@fsck.ch>
2004-11-06 20:48:19 +00:00
Tilman Keskinoz
97bb25b35b Update to 3.12
PR:		72892
Submitted by:	Tobias Roth <ports@fsck.ch>
2004-11-05 13:19:23 +00:00
Dejan Lesjak
eda420f62c Bump PORTREVISION for previous change, since it changes package contents.
Reminded by:	anholt
2004-11-05 02:47:23 +00:00
Dejan Lesjak
f3eb3d1196 Install Faroese (fo) keyboard layout.
Reported by:	ice (ice2000 at post olivant fo)
2004-11-04 16:43:13 +00:00
Ying-Chieh Liao
0297496913 add missing depends
Submitted by:	pointyhat via kris
2004-11-02 03:25:37 +00:00
Peter Pentchev
641e9357ef A long-overdue dequoting of COMMENT. D'oh, I thought I'd done this,
like, MONTHS ago!

Submitted by:	Brian Poole <raj@cerias.purdue.edu>
2004-11-01 17:09:55 +00:00
Dejan Lesjak
55218f462e Grab changes to Xpm security patch from x11/xorg-libraries:
Using SIZE_MAX instead of [U]INT_MAX in several tests would result in the
tests being useless on 64-bit machines.

Submitted by:	nectar
Obtained from:	Matthieu Herrb (matthieu herrb at laas fr) by nectar
2004-10-31 22:44:23 +00:00
Eric Anholt
11264cef07 Apply xpm-sec5.diff fixes to the xpm-sec.patch4 diff. Using SIZE_MAX instead
of [U]INT_MAX in several tests would result in the tests being useless on 64-bit
machines.  PORTREVISION bumped for everyone for simplicity, and just to be sure.

Submitted by:	nectar
Obtained from:	Matthieu Herrb <matthieu.herrb@laas.fr> by nectar
2004-10-31 20:36:37 +00:00
Dejan Lesjak
1b9ee0e7dd Install Faroese (fo) keyboard layout.
Pet portlint while here.

Reported by:	ice (ice2000 at post olivant fo)
2004-10-29 03:24:48 +00:00
Ying-Chieh Liao
3706defea4 add p5-X11-GUITest 0.20
Provides GUI testing/interaction facilities
2004-10-28 06:30:54 +00:00
Alexander Nedotsukov
c80a16c97c Do not return static memory which will be free()d by caller.
PR:		73089
Submitted by:	Oleg Sharoiko <os@rsu.ru>
2004-10-25 13:14:11 +00:00
Eric Anholt
c2a3b03846 Update to 1.0.3, which fixes the build on systems without xrender.pc.
Reported by:	pointyhat via kris
2004-10-24 21:07:27 +00:00
Pav Lucistnik
e95ec95c79 - Move x11-wm/fbdesk to x11 category, to improve consistency (idesk port
is already in x11).

PR:		ports/72860
Submitted by:	Roman Bogorodskiy <bogorodskiy@inbox.ru>
Approved by:	Hendrik Scholz <hscholz@raisdorf.net> (maintainer)
Repocopy by:	marcus
2004-10-24 16:02:52 +00:00
Jacques Vidrine
c4c1dec3b9 Mark DEPRECATED due to security vulnerability and lack of maintainer. 2004-10-19 15:50:48 +00:00
Pav Lucistnik
847293a727 - Update to 1.2.1
PR:		ports/72685
Submitted by:	Roman Bogorodskiy <bogorodskiy@inbox.ru>
Approved by:	Hendrik Scholz <hscholz@raisdorf.net> (maintainer)
2004-10-18 20:44:49 +00:00
Eric Anholt
8543b3a289 New port: rendercheck, a small app to test Render extension conformance. 2004-10-16 22:17:12 +00:00
Oliver Lehmann
6a3bbf461a take maintainership 2004-10-16 18:08:34 +00:00
Oliver Lehmann
53efea13b5 update port to 0.2.1
PR:		71349
Submitted By:	oliver
Approved By:	maintainer
2004-10-15 17:47:25 +00:00
Thierry Thomas
e3409ffd15 - rxvt-unicode 4.0 change language name "cn" to "zh";
- provide mbrtowc() workaround for old FreeBSD systems without mbstate fix;
- extra patch for box drawing characters, which respected locale width data;
- bump PORTREVISION.

PR:		ports/72628
Submitted by:	Kuang-che Wu
2004-10-13 21:27:43 +00:00
Pav Lucistnik
1e8736e54b - Fix build on 4.x 2004-10-12 16:49:13 +00:00
Kirill Ponomarev
e0ab0e4984 Update to version 0.2.3
PR:		ports/72532
Submitted by:	Ports Fury
2004-10-12 13:01:30 +00:00
Josef El-Rayes
5ab625c574 Update port to latest version.
Approved by:	pav
2004-10-12 08:43:57 +00:00
Brian Feldman
868b56d0e9 Add XScreenSaver.App, a Window Maker dockapp for controlling XScreenSAver.
PR:		ports/72113
Submitted by:	Josh Tolbert <hemi@puresimplicity.net>
2004-10-12 00:53:02 +00:00
Joe Marcus Clarke
dd0a39d597 Update to 1.04, and use the new libtool scheme. 2004-10-12 00:12:17 +00:00
Pav Lucistnik
ebb82d890b - Update to 0.4.6.1
PR:		ports/71817
Submitted by:	Franz Klammer <klammer@webonaut.com> (maintainer)
2004-10-11 23:33:41 +00:00
Thierry Thomas
5533355345 Upgrade to 4.0. 2004-10-11 23:02:49 +00:00
Jeremy Messenger
f1f9fc88ea Update to 0.061. 2004-10-11 22:40:52 +00:00
Tilman Keskinoz
efb2305356 Bump PORTREVISION for the last commit.
Requested by:	kris
Approved by:	portmgr
2004-10-11 08:32:00 +00:00
Tilman Keskinoz
73f84105cf Fix Environment for kdm/csh users.
No PORTREVISION bump this time, because we had one 24 hours ago.

PR:		72388
Submitted by:	Jose M Rodriguez <josemi@freebsd.jazztel.es>
Requested by:	peter
Approved by:	portmgr(krion)
Reviewed by:	Adriaan de Groot
2004-10-10 22:03:35 +00:00
Tilman Keskinoz
97854827a7 Fix a typo
Without this, kdm spins in an infinite loop with select() returning EINVAL
and times out the Xserver startup and kills it off and then aborts.

Submitted by:	peter via marcus, kris
Reviewed by:	Adriaan de Groot
Approved by:	portmgr
2004-10-09 19:54:01 +00:00
Kris Kennaway
84e8d56ed5 Increase USE_GCC to 3.4 for those ports which compile with it.
Approved by:	portmgr
2004-09-30 05:32:00 +00:00
Cy Schubert
a2d28759ea Buffer addressing bugfix.
Noticed by:	Nicolas Rachinsky <nicolas@rachinsky.de>
Approved by:	portmgr (marcus)
2004-09-29 22:21:49 +00:00
Michael Nottebrock
137bbc0152 Fix bug in the default genkdmconf template - kdm would try and parse
fortune output from .cshrc and sometimes fail to login due to it.

Fix bug with kxkb not detecting installed keyboard layouts on xorg.

Approved by: portmgr
Obtained from:	KDE CVS
2004-09-24 06:40:28 +00:00
Michael Nottebrock
6c932a6964 Fix hang in kcontrol on amd64.
PR: ports/71446
Approved by: portmgr
Obtained from:	KDE CVS
2004-09-24 06:37:50 +00:00
Thierry Thomas
a9bc8f746c Actually use MASTER_SITE_SUBDIR and make fetchable again.
Noticed by:	Joshua Tinnin
Approved by:	portmgr (marcus).
2004-09-24 05:21:27 +00:00
Kris Kennaway
fe54d2a7c7 BROKEN on 5.x: Does not compile
Approved by:    portmgr (self)
2004-09-18 17:49:31 +00:00
Eric Anholt
ef0df2863f Apply fixes for CAN-2004-0687 and CAN-2004-0688 in libXpm (stack-based and
integer overflow security vulnerabilities).  While I haven't compile-tested
this, the patch applies and I think it should be correct, and if it doesn't work
then this should be marked FORBIDDEN anyway.

Approved by:	portmgr
2004-09-16 02:15:43 +00:00
Eric Anholt
39947593b3 Apply fixes for CAN-2004-0687 and CAN-2004-0688 in libXpm (stack-based and
integer overflow security vulnerabilities).

Approved by:	portmgr
2004-09-16 02:14:09 +00:00
Alexander Nedotsukov
1e676be680 Disable port build for archs != i386. While technicaly it can be built
from the sources this will bring havy dependecy on X code and what
is more significant atm NVidia diriver availble for ia32 only anyway.
So stick with pre-built libNVCtrl.a now.

Reported by:	pointyhat
Approved by:	portmgr (marcus)
2004-09-15 02:51:37 +00:00
Kirill Ponomarev
308c512bb3 Enable utmp support 2004-09-03 18:43:56 +00:00
Michael Nottebrock
de9ec12a4f Add dependency on aspell. 2004-09-03 16:58:52 +00:00
Kirill Ponomarev
8573988aed Switch on suid bit.
Requested by:	many
2004-09-02 07:19:20 +00:00
Dejan Lesjak
91a9cd832f Unbreak luit.
Approved by:	anholt (mentor)
2004-09-02 03:15:01 +00:00
Dejan Lesjak
e411d635e5 Use MASTER_SITE_XORG.
Approved by:	anholt (mentor)
2004-09-02 01:57:53 +00:00
Michael Nottebrock
35a44a7b7e The rc-script was botched, correct that and bump PORTREVISION. 2004-09-01 14:04:17 +00:00
Joe Marcus Clarke
edd6a6cf3d Update to 2.6.2. 2004-08-31 05:34:02 +00:00
Dejan Lesjak
2f5edad4f8 Update explanation of make.conf setting when XFree86 is not default X11
port and point users to /usr/ports/UPDATING.

Pointed out by:	Stephen Montgomery-Smith (stephen at math.missouri.edu)
Approved by:	anholt (mentor)
2004-08-31 01:46:06 +00:00
Michael Nottebrock
b4c31bafd8 Update to KDE 3.3 2004-08-30 19:55:42 +00:00
Kirill Ponomarev
cfb4dc6eeb Portlint. 2004-08-30 09:49:56 +00:00
Kirill Ponomarev
bd4b6c8cdc Fix build with gcc-3.4
PR:		ports/71127
Submitted by:	Ports Fury
2004-08-30 08:40:53 +00:00
Kirill Ponomarev
230189d87d Update to version 0.2.7
PR:		ports/71126
Submitted by:	Ports Fury
2004-08-30 08:37:15 +00:00
Thierry Thomas
e3b3383b1b Fix a C++ linkage problem in some cases. 2004-08-28 16:33:31 +00:00
Kirill Ponomarev
0e7ff75dc0 Update to version 0.2.2
PR:		ports/71063
Submitted by:	Ports Fury
2004-08-28 07:04:57 +00:00
Kirill Ponomarev
209e1a5577 Enable luit support.
Reported by:	Igor Pokrovsky <ip@doom.homeunix.org>
2004-08-27 22:21:57 +00:00
Kirill Ponomarev
1c5736c047 Reset maintainership to ports@
PR:		ports/71028
Submitted by:	Michael Johnson <ahze@ahze.net>
2004-08-27 13:38:49 +00:00
Alexey Dokuchaev
eb7041b464 Add forgotten patch from the PR (ports/70564).
Approved by:	fjoe (mentor)
2004-08-27 09:24:05 +00:00
Alexey Dokuchaev
48249e3fe0 Update my email address to `@FreeBSD.org'.
Relinquish ports I happen to no longer use.  They seem to be of the latest
versions, and non-broken, so this is a "clean" dump.

Approved by:	fjoe (mentor)
2004-08-27 08:46:33 +00:00
Thierry Thomas
883d95f066 Upgrade to 3.9. 2004-08-25 20:23:55 +00:00
Volker Stolz
c750cb07a3 s/mirror.ac.uk/mirrorservice.org
PR:		ports/69481
Submitted by:	Tim Bishop, lesi@
Approved by:	maintainer timeout
2004-08-25 12:37:11 +00:00
Joe Marcus Clarke
b3dfd9538d Switch the check for gnomesystemtools to use network-admin instead of
boot-admin since the latter is no longer installed on FreeBSD.

Reported by:	Mike Harding <mvh@ix.netcom.com>
2004-08-24 15:56:33 +00:00
Joe Marcus Clarke
4ba4a39aac Update to 4.18. For a list of changes in this release, see:
http://www.jwz.org/xscreensaver/changelog.html
2004-08-23 17:36:58 +00:00
Kirill Ponomarev
bf9a70a856 Remove XFree-86-clients-* conflict. 2004-08-23 11:49:25 +00:00
Dejan Lesjak
61b42d2e9a Bump PORTREVISION for previous change.
Approved by:	anholt (mentor)
2004-08-23 11:23:52 +00:00
Dejan Lesjak
dc7e6d654e Make meta-port install everything that comes with XFree86 distribution.
Approved by:	anholt (mentor)
2004-08-23 11:19:56 +00:00
Dejan Lesjak
6d2d6c4c74 Instead of installing xterm here, depend on x11/xterm port. Taken from
xorg-clients port.

Suggested by:	krion
Approved by:	anholt (mentor)
2004-08-23 11:02:09 +00:00
Doug Barton
8ee924f860 Upgrade to version 4.18, the latest from the author (4.17 was a NOOP).
Two new screensaver programs, and the usual assortment of bug fixes
and improvements.
2004-08-22 20:54:36 +00:00
Kirill Ponomarev
123b82cb21 Fix build with gcc-3.4 2004-08-22 16:10:38 +00:00
Kirill Ponomarev
856659c6ce Fix build with gcc-3.4 2004-08-22 15:46:35 +00:00
Dejan Lesjak
fa45acf58d Add conflicts to Mesa and xpm ports. Libraries that they install are
already included in this port.

Noticed by:	David Julien (david dot julien at gmail dot com)
PR:		ports/70004
Approved by:	anholt (mentor)
2004-08-21 05:01:17 +00:00
Pav Lucistnik
313948f537 - Convert to OPTIONS
PR:		ports/70728
Submitted by:	Ying-Chieh Chen <yinjieh@csie.nctu.edu.tw>
2004-08-20 22:54:45 +00:00
Pav Lucistnik
8d7545ebef - Convert to OPTIONS
PR:		ports/70717
Submitted by:	Ying-Chieh Chen <yinjieh@csie.nctu.edu.tw>
2004-08-20 18:33:21 +00:00
Joe Marcus Clarke
b5099479ee Update to 2.6.0.4. 2004-08-19 17:22:34 +00:00
Thierry Thomas
45112e5db6 Portlint (bad cut / paste). 2004-08-17 22:22:01 +00:00
Thierry Thomas
6c3685400f Add rxvt-unicode, a clone of the well known terminal emulator rxvt,
modified to store text in Unicode.

PR:		ports/70463
Submitted by:	myself
Repocopied by:	marcus
2004-08-17 22:17:56 +00:00
Sergey A. Osokin
9becd45701 Update nVidia binary drivers to most recent released version, 6113.
Features:
 * Support for the latest NVIDIA GPUs including GeForce 6800 Series
 * Improved interaction with -CURRENT's new threading libraries.

It also brings some more general fixes to the port:
 * Utilizes PORTDOCS
 * New knobs added
 * pkg-plist fixed

Special note for -CURRENT users: nVidia driver now depends
on mem.ko kernel module.

Submitted by:	Alexey Dokuchaev <danfe@regency.nsu.ru> (maintainer)
PR:		70561
2004-08-17 11:54:09 +00:00
Kris Kennaway
0ae6921d66 This now seems to build on 5.x 2004-08-17 10:22:39 +00:00
Alexander Nedotsukov
d3f751b05c Fix plist.
Reported by:	pointyhat
2004-08-17 07:03:40 +00:00
Alexander Nedotsukov
97d09e4663 Add missed install/uninstall handlers for gconf schemas.
Reported by:	pointyhat
2004-08-17 04:32:47 +00:00
Alexander Nedotsukov
cc4e17a48e USE_INTLTOOL_VER -> USE_INC_LIBTOOL_VER to let lthack actually
axe .la garbage.

I didn't pay much attention to the fact how _INC get lost after
repocopy when was told about this problem in
x11-tookits/libpanelappetmm.

Reported by:	pointyhat
2004-08-17 04:02:17 +00:00
Joe Marcus Clarke
103670c02a Chase the gstreamer shared lib bump. 2004-08-16 21:28:25 +00:00
Jeremy Messenger
3ffe74f7b2 Update to 0.10.1, this fixed some serious bugs of 0.10.0.
- Ruby/GTK: Fix compiling error under GTK+-2.0.x.
	- Ruby/GtkSourceView: Fix compiling error.
	- Ruby/GdkPixbuf: Fix some bugs.
2004-08-16 18:48:33 +00:00
Kirill Ponomarev
e967428bc6 Update to version 196 2004-08-16 07:17:21 +00:00
Jeremy Messenger
9d5625269d - Add ruby-gtksourceview and ruby-panelapplet.
- Bump PORTREVISION.
2004-08-15 17:03:50 +00:00
Jeremy Messenger
338404f1b3 - Update to 0.10.0.
- Un-broke/enable multimedia/ruby-gst; it works with current gstreamer now.
- Change some that have CP to INSTALL_*.
- Few small clean up.

BTW: ruby-gtksourceview and ruby-panelapplet will be add very soon when I
     create and test them. They are going to be part of ruby-gnome2-all meta
     port.
2004-08-15 07:11:57 +00:00
Alexander Nedotsukov
d0e2283bb8 Add nvidia-settings 1.0, Display Control Panel for XFree86/X.org NVidia
driver.
2004-08-15 04:57:54 +00:00
Oliver Lehmann
fbd795109a update to 1.1
remove BROKEN
2004-08-15 02:12:26 +00:00
Kris Kennaway
d0e7992781 BROKEN: Unfetchable 2004-08-14 21:46:28 +00:00
Kris Kennaway
bfc266a17f Reset maintainer: auto-responds with a request to check a website that
is not configured.
2004-08-14 21:34:35 +00:00
Kirill Ponomarev
52241f53e6 Restore break.
Submitted by:	Andrey Slusar <anray@inet.ua>
2004-08-14 10:45:15 +00:00
Kirill Ponomarev
30cd14fe16 Handle 'default' in switch more neatly.
Submitted by:	Andrey Slusar <anray@inet.ua>
2004-08-14 06:50:05 +00:00
Kirill Ponomarev
a0cfd57dc7 Fix build with gcc-3.4
Submitted by:	maintainer
2004-08-13 20:35:50 +00:00
Alexander Nedotsukov
3c50ead8b2 Add sisctrl 0.0.20040622, Display Control Panel for XFree86/X.org SiS
driver.
2004-08-13 17:44:31 +00:00
Kirill Ponomarev
8df8617cc8 Support CFLAGS properly
Support PLIST_FILES
Fix WWW: line

PR:		ports/70414
Submitted by:	Ports Fury
2004-08-13 15:54:54 +00:00
Michael Nottebrock
a4d6c1c4b5 Add another missed patch. 2004-08-12 21:28:53 +00:00
Michael Nottebrock
c59d8458d7 A couple of patches didn't make it from the kde-freebsd repo into ports.
Here they are... PORTREVISION needs to be bumped again (sorry).

Pointy hat to: me
2004-08-12 21:16:20 +00:00
Michael Nottebrock
4a695692d0 Forgot to commit this bit, without it the koffice-i18n ports break. 2004-08-12 16:21:53 +00:00
Michael Nottebrock
c625071daf Tell genkdmconf to ignore existing bits of xdm/kdm configuration, if it
finds them and just create defaults as intended.
2004-08-12 11:05:27 +00:00
Joe Marcus Clarke
271451d576 Update to 2.6.1.2. 2004-08-11 01:32:01 +00:00
Michael Nottebrock
461f3c5adb Factor out all but one of the build switches of the KDE main module ports
into separate ports. The OPTIONS will remain as of yet and trigger dependencies
now, for easy transition.

Update KOffice to version 1.3.2.

Add patches to fix a number of issues, including:

- fix kxkb on Xorg
- fix kdemultimedia WITH_MPEGLIB (now mpeglib_artsplug) compilation on gcc 3.4.2
  with optimizations greater than -O

Add security related patches and entries to portaudit.txt.
2004-08-11 01:27:37 +00:00
Kirill Ponomarev
18d4df6e80 Add uxterm support.
Submitted by:	Marcoen Hirschberg <marcoen@bigfoot.com>
2004-08-10 12:16:25 +00:00
Pav Lucistnik
c28c472aa3 - Detect and use xorg
PR:		ports/70193
Submitted by:	Sergey N. Voronkov <serg@tmn.ru>
Approved by:	maintainer
2004-08-10 07:51:48 +00:00
Alexander Nedotsukov
b2110025e2 - Cache distfile locally.
- Minor cleanups.
2004-08-10 06:35:20 +00:00
Joe Marcus Clarke
42c2cdc260 Update XFree86 clients to 4.4 release. Release notes are available at
http://www.xfree86.org/4.4.0/RELNOTES.html

PR:		ports/67733 imake
		ports/67508 libraries
		ports/67510 clients
		ports/67513 server
		ports/67776 100dpi fonts
		ports/67777 75dpi fonts
		ports/67778 cyrillic fonts
		ports/67779 default bitmap fonts
		ports/67781 font encodings
		ports/67783 scalable fonts
		ports/67784 font server
		ports/67785 XFree86 meta-port
		ports/67775 documents
		ports/67786 manpages
		ports/67787 nest server
		ports/67788 print server
		ports/67789 virtual framebuffer server
		ports/56487 (Upgrading Xfree86-clients from ports overwrites xdm config files)
		ports/44252 (XFree86-4-Server port removes/overwrites config files)
Submitted by:	Dejan Lesjak (dejan DOT lesjak AT ijs DOT si)
Additional changes by:	anholt
			Jung-uk Kim (jkim AT niksun DOT com)
			arved
Tested by:	pointyhat
		linimon
2004-08-10 01:29:22 +00:00
Eric Anholt
55eccf8659 s/BUILD_DEPENDS/RUN_DEPENDS/ for the xterm-static dependency to make sure that
xterm gets installed in the package case.

Reported by:	kensmith
2004-08-09 21:21:18 +00:00
Kirill Ponomarev
0f39a6456b Update to version 195
o Correct length used for blinking text, make the last column blink.
o Start changes to make doublesize characters work with TrueType fonts.
o Trim leading/trailing blanks from color resources.
o Fixes for showBlinkAsBold resource.
2004-08-09 20:59:17 +00:00
Kirill Ponomarev
4876033200 Pet portlint. 2004-08-04 09:05:36 +00:00
Kirill Ponomarev
2e13e6ad83 Add more MASTER_SITES for redundancy. 2004-08-04 08:14:24 +00:00
Joe Marcus Clarke
7c3c515b5e Bump PORTREVISION to chase the gstreamer shared lib version. 2004-08-02 20:15:42 +00:00
Pav Lucistnik
bcc5a7a330 - Fix build with gcc-3.4
PR:		ports/69834
Submitted by:	Jake Hamby <jhamby@anobject.com>
Obtained from:	GNOME CVS
2004-07-31 13:26:23 +00:00
Kirill Ponomarev
6f963abeec Fix typo in plist
Use -f with ln(1)
2004-07-30 04:52:15 +00:00
Pav Lucistnik
caa4559991 - Fix distinfo
PR:		ports/69711
Submitted by:	Matt Lancereau <matt@bsdfly.org> (maintainer)
2004-07-29 19:21:24 +00:00
Adam Weinberger
193bb941b2 Remove extra directory. 2004-07-29 15:34:15 +00:00
Adam Weinberger
5948abb16a Install the gdm/Sessions directory manually. 2004-07-29 15:22:10 +00:00
Pav Lucistnik
b7ad3af71f Add bbappconf, an utility that makes it possible to set some options
for the windows blackbox opens, like:

    * on which desktop they should open
    * if it should be displayed without titlebar
    * if it should be sticky
    * position size of windows

PR:		ports/69613
Submitted by:	Gerrit Beine <tux@pinguru.net>
2004-07-28 21:17:49 +00:00
Adam Weinberger
c4ab51f484 Move a bunch of now unique stuff out of gnomehier and into
the ports that really own the directories.
2004-07-28 14:36:31 +00:00
Kirill Ponomarev
4dff00bd77 Update to version 194 2004-07-28 09:08:09 +00:00
Kirill Ponomarev
7376dd4b7b Add MASTER_SITES for more redundancy. 2004-07-27 15:01:19 +00:00
Kirill Ponomarev
21f21b268d Fix package build
Submitted by:	roam
2004-07-27 08:20:07 +00:00
Kirill Ponomarev
2613a127c7 Add one more hack allowing users to update with xterm
dependency.

Approved by:	anholt
2004-07-27 00:06:59 +00:00
Kirill Ponomarev
5a88de8d65 Add superugly hack allowing users to update xorg-clients to
last revision.
2004-07-27 00:05:13 +00:00
Joe Marcus Clarke
9f1f99bfcd Add gnomesu to the list of "geek toys." 2004-07-26 21:29:33 +00:00
Kirill Ponomarev
037a87c0ce Remove CONFLICTS with x11/xorg-clients
Remove superfluous dependencies.
Bump PORTREVISION.
2004-07-26 20:14:18 +00:00
Kirill Ponomarev
b3eb115f52 Move x11/xterm to BUILD_DEPENDS.
Remove superfluous dependencies.
Pet portlint.
Bump PORTREVISION.

Approved by:	anholt
2004-07-26 20:12:44 +00:00
Eric Anholt
cf80d22f0c Register missing CONFLICTS, mostly on xorg-libraries-*
Reported by:	Kent Stewart <kstewart@owt.com>
2004-07-26 18:32:46 +00:00