1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-26 21:17:40 +00:00
Commit Graph

1815 Commits

Author SHA1 Message Date
Maxim Sobolev
99621b14fe Agg gnomoku and bump version to 1.4.1b2 to be in sync with GNOME folks. 2001-09-11 16:30:08 +00:00
Maxim Sobolev
b3b1995574 Update to 1.4.0.4. 2001-09-11 14:41:17 +00:00
Maxim Sobolev
1dac972c1f Update to 1.4.1.2. 2001-09-11 14:40:33 +00:00
Maxim Sobolev
a4751df979 Update version number of gtkhtml shared library. 2001-09-11 07:42:37 +00:00
Andrey A. Chernov
b51951bf31 Bump png major 2001-09-11 02:30:09 +00:00
Dmitry Sivachenko
6845ee0376 Set DIST_SUBDIR=KDE 2001-09-10 20:22:28 +00:00
Jimmy Olgeni
b9106bee89 Update port to version 0.9.1, plus a couple of patches from CVS to fix some
bugs.

Submitted by:   Jeremy Norris <ishmael27@home.com>
2001-09-07 19:59:57 +00:00
John Baldwin
ccccf88c48 Add a patch to fix up the build-bindist script to not use the extract
binary but to just use tar.
2001-09-06 23:10:35 +00:00
John Baldwin
be5469597d The 3.3.6 to 3.3.6a (3.3.7?) patch changed the name of the DGUX docs from
DGux.* to DGUX.* w/o the accompanying rename of the sgml source file.
To workaround, just rename the file in post-extract in the BUILD_XDIST
case.
2001-09-06 23:09:36 +00:00
David E. O'Brien
5ed04974ce People, if you want X11 bits with the releases, you need to leave the
checksum for xc/X336src-2.tgz in here!!
2001-09-06 21:55:53 +00:00
Maxim Sobolev
3f26dfdd7b Update to 1.1. 2001-09-05 08:22:11 +00:00
Maxim Sobolev
14316a67bc Fix gdkxft_sysinstall script on systems with perl 5.005 and earlier (4.4 and
downward).

Reported by:	JR Boyens <jboyens@iastate.edu>
2001-09-04 11:32:27 +00:00
Will Andrews
369fcbb329 Add a message to the port/package warning users about kcheckpass's
setuid root bit, which is off by default.  The purpose is to avoid
having users who don't use kcheckpass become vulnerable to a root
exploit.  For more details see the actual pkg-message.  Bump PORTREVISION
to reflect this change in the package.

As a side note, I'm a little wary about adding something like this so
close to the ports freeze for 4.4-RELEASE.  However, I decided that it
was a minimal risk and went ahead with it in the hopes of avoiding the
need for users to run into this "problem" themselves...
2001-09-03 17:48:23 +00:00
Maxim Sobolev
b327724009 Add gdkxft 1.0, an package that adds anti-aliased font support for gtk+
(XFree86-4.x required).
2001-09-03 16:54:28 +00:00
Jimmy Olgeni
5419cb66df Remove bogus file that I introduced in revision 1.40 (pointy hat).
Submitted by:	bento
2001-09-02 15:53:22 +00:00
FUJISHIMA Satsuki
72ab35fd4d sync with x11/XFree86-4. 2001-09-01 12:05:00 +00:00
Maxim Sobolev
810fcd34d2 USE_LIBTOOL implies GNU_CONFIGURE, so remove the latter where appropriate. 2001-08-31 14:20:29 +00:00
Maxim Sobolev
1eff704054 Fix the port (put back several lines accidentally removed by Ade few months
ago).

Submitted by:	bento
2001-08-31 12:48:10 +00:00
Jimmy Olgeni
2f546fc008 Support the Motif-dependent files in pkg-plist, add some missing @dirrm
entries, and move the @exec/@unexec entries to make the other @dirrms
actually work.
2001-08-31 11:27:34 +00:00
David W. Chapman Jr.
029c20540c Add bit about XFREE86_VERSION=4 in /etc/make.conf
PR:		28380
Submitted by:	edwin@mavetju.org
2001-08-31 02:25:18 +00:00
Jimmy Olgeni
38c90110d0 Add some missing @dirrm entries. 2001-08-30 20:08:48 +00:00
Akinori MUSHA
23a999b22b Make CATEGORIES and MAINTAINER overridable for japanese/kde*.
Approved by:	kde (will), demon (MAINTAINERs)
2001-08-30 18:56:50 +00:00
Jimmy Olgeni
2809677451 Fix typo: radAll -> readAll. 2001-08-30 10:59:09 +00:00
Will Andrews
174743bd5d Add patch for kdoctools/xml2man.cpp, similar to xslt.cpp patch.
Bump PORTREVISION just in case this is needed.

From Mikhail Teterin:
> Well, for  the same reason the  xslt.cpp sometimes works --  in fact, it
> worked for everyone, until someone tried it on current.
>
> In essence, the code  reads the whole file into a  buffer. It then tries
> to  turn that  buffer into  one of  qt's string-objects  (QCString). The
> class'  constructor  they chose  assumes,  it  is  passed a  valid  (aka
> \0-terminated) string and goes through  the buffer looking for the first
> 0-byte. The  file itself  does not  contain any,  so it  happily wonders
> behind the real end of the buffer  until it either finds a stray 0-byte,
> or seg-faults, trying to read a wrong page.
>
> Apparently,  more often  than  not, some  stray 0-byte  is  there --  no
> surprise. But  it will usually  create a  string that's longer  than the
> file size -- unless  the 0-byte happens to be right there  at the end of
> the  buffer.  Apparently, the  lamer, who  wrote it,  noticed  something
> strange, so he/she  explicitly truncates the created  QCString object to
> the known size of the file after instantiation:
>
>       contents.truncate(xmlFile.size())
>
> My patch  modifies the code to  use the correct QCString  constructor --
> the one,  that accepts  the maximum  size of the  string. This  does the
> right  thing  -- once  it  reaches  the end  of  the  buffer, it  stops,
> allocates the private storage (I hate  C++ for all this buffer copying),
> appends  the 0-byte  and creates  the object  of the  expected size.  No
> truncation is needed....

Thanks to Mikhail for his debugging on this problem; this patch further
removes the hazard of meinproc coredumps.

Submitted by:	mi
2001-08-29 23:16:13 +00:00
Andrew Gallatin
7148fe93a4 Allow the tga driver to load the "fb" module; without this, the driver
gets unresolved symbols when accessing fb routines at server startup.

Note, this is apparently already in the mainline XFree86 sources,
so this patch may need to be removed when the port is updated for
the next release of XFree86

Tested by: "Eric S. Van Gyzen" <eric@stat.Duke.EDU>
2001-08-29 19:20:13 +00:00
Will Andrews
d3762340a3 Fix problem with meinproc coredumping on -CURRENT. Basically what the
problem is is that there are a few sloppy pieces of code in xslt.cpp.
Bump PORTREVISION to account for recent changes (I had intended to do this
much earlier, but wanted to include these patches first, and there was
a problem getting them together correctly).

Submitted by:	mi
Tested by:	dwcjr, petef
2001-08-29 01:53:47 +00:00
Will Andrews
c2ca15ccb1 Fix problem where kdelibs.sh isn't chmod 755.. this causes some filters
and other stuff to fail.  *sigh*
2001-08-28 23:23:59 +00:00
Will Andrews
93c87329b0 Move code designed to prevent people from compiling/installing KDE N.x
when KDE (N+1).x (N = radix 2, shift 1, order 1) is installed to
pre-extract so one can still download the distfiles for (N+1).x.

PR:		30167
Submitted by:	Thierry Thomas <thierry@thomas.as>
2001-08-28 23:08:12 +00:00
Pete Fritchman
02bb9957d9 add xmotd 1.16
A message-of-the-day browser for X11 and dumb-terminals

PR:		24713
Submitted by:	Matthew West <mwest@uct.ac.za>
2001-08-28 07:13:10 +00:00
SADA Kenji
989251c4f7 - bump PORTREVISION for new patch-ab file.
- shorten pkg-comment to follow portlint's advice.
2001-08-25 06:33:07 +00:00
Will Andrews
fe68eec3e2 Reassign MAINTAINER to kde@FreeBSD.org, a group formed specifically to
maintain and improve QT/KDE on FreeBSD.  This group (at this time)
consists of:  demon, olgeni, kevlo, lauri@kde.org, rwatson, and will.

While I'm here, fail build of kdelibs11 if kdelibs2 is installed.  This
was originally supposed to be committed with the 2.2 update, but...
2001-08-25 02:17:59 +00:00
Akinori MUSHA
3d74bebb83 Conditionalize the dependency on bzip2. 2001-08-24 15:33:50 +00:00
Jean-Marc Zucconi
e6e8cc0c83 Fix a local DoS against xfs.
Submitted by:	kris
Obtained from:	XFree86 CVS repository
2001-08-23 23:43:09 +00:00
Jean-Marc Zucconi
11377e20a2 Fix a race condition in mouse device.
PR:		ports/29982
Submitted by:	Michael Robinson <robinson@netrinsics.com>
2001-08-23 22:36:49 +00:00
Mario Sergio Fujikawa Ferreira
9b9abd8ec3 o Add a buffer overflow patch in sync with rxvt port Makefile rev
1.49
o Bump PORTREVISION

Obtained from:	OpenBSD
2001-08-23 21:24:06 +00:00
Mario Sergio Fujikawa Ferreira
512dfab14f Add a buffer overflow fix
Submitted by:	kris
Obtained from:	OpenBSD
2001-08-23 21:09:26 +00:00
Kris Kennaway
3157ad19e8 Remove giffunip@asme.org as the maintainer: he no longer has the ability
to maintain these ports.  Any non-committer who wants to grab one let me
know.

Approved by:	old maintainer
2001-08-23 20:21:52 +00:00
Will Andrews
68e5f6a09c Argh! Get this plist right, for the last time...
Found by:	bento
2001-08-23 03:15:42 +00:00
John Baldwin
4645d1e48f Sigh, fix a fat-finger: epplet -> epplets. 2001-08-23 00:15:19 +00:00
John Baldwin
ffd569eb4a Bah, revert the previous change for now. There are work directories
shared among all epplets that should be created and "owned" by the
libepplet port, but they aren't.  They are created and owned by the
epplets port, so depend on epplets again until that is fixed.
2001-08-23 00:11:45 +00:00
John Baldwin
73285d263f Depend on the x11-wm/libepplet port for libepplet rather than the
x11-wm/epplets port.
2001-08-22 23:04:00 +00:00
Maxim Sobolev
71c7818b12 Update to 1.4.1.1. 2001-08-22 18:06:36 +00:00
SADA Kenji
57166f93bf Cope with Xvnc.
Submitted by:	Christophe GIAUME <christophe@giaume.com>
2001-08-22 15:29:53 +00:00
Jimmy Olgeni
d192fdb08a Remove the extra Worm.desktop screensaver entry. Leave only the screensaver
entries related to KDE's own applications.

Spotted by:	Kent Stewart <kstewart@urx.com>
2001-08-20 19:20:03 +00:00
Maxim Sobolev
d862eac50a Add launch.app 0.6.5, an application launcher for WindowMaker dock. 2001-08-20 15:58:53 +00:00
Jimmy Olgeni
22945cd44b Add @exec/@unexec lines to pkg-plist, to handle the "emptydir" template.
Being an empty directory, it is not automatically included in the binary
package.
2001-08-20 11:59:17 +00:00
Kris Kennaway
809d2c1b6d Remove a dead MASTER_SITE 2001-08-20 05:54:11 +00:00
Mike Heffner
72369c1b07 Chase checksum; trivial makefile change.
Noticed by:	bento
2001-08-20 03:03:59 +00:00
Jimmy Olgeni
15f5990532 Add a simple post-extract target: it overwrites ${WRKSRC}/mkpamserv with a
no-op script. This prevents the port from appending content to
/etc/pam.conf, which is known to break kscreensaver's password
verification, without asking first. Binary packages already left
/etc/pam.conf alone.
2001-08-19 13:34:26 +00:00
Jimmy Olgeni
e2b6e5584d Disable kappfinder_install execution at install time. This will avoid the
installation of some ".desktop" files that make packaging fail for some
users: some desktop shortcuts are not created if you don't have the
corresponding application already installed.

Users may still get the shortcuts in their local configurations by running
kappfinder as usual.
2001-08-18 23:54:35 +00:00