Trevor Johnson
859d9dce9e
Use the maintainer's new e-mail address.
...
Obtained from: PR 64000
2004-03-18 03:46:12 +00:00
Trevor Johnson
e1177f5c54
Add size data.
...
Approved by: maintainers
2004-03-18 02:27:55 +00:00
Michael Nottebrock
3aaf8aee77
s/pre-install/pre-su-install/ because we're creating directories under
...
${PREFIX}.
2004-03-18 01:06:21 +00:00
Trevor Johnson
33fdc4cde2
SIZEify.
2004-03-17 18:29:46 +00:00
Ying-Chieh Liao
030759dfc9
add p5-qt 3.008
...
A set of Perl bindings for the Qt toolkit
2004-03-17 03:25:28 +00:00
Joe Marcus Clarke
96995f7fa4
Add a directory I left out in my previous commit, and chase the new home
...
for Xft.
2004-03-17 00:33:17 +00:00
Joe Marcus Clarke
61b3a6bec8
Chase the new location of libXft.
2004-03-16 22:54:05 +00:00
Joe Marcus Clarke
08df871869
Fix some build issues with the new freetype2.
2004-03-16 22:21:54 +00:00
Joe Marcus Clarke
360f630419
Add a patch to prevent the Industrial theme from crashing if handed a NULL
...
widget.
2004-03-16 22:01:12 +00:00
Joe Marcus Clarke
1daae62d43
Update to properly build with and support the new freetype2.
2004-03-16 21:29:03 +00:00
Edwin Groothuis
c9ea361463
Chase library bump of libSDL-1.1 for all ports which were depending
...
on sdl12-1.2.5
2004-03-16 04:23:56 +00:00
Trevor Johnson
8f5787d0bc
This isn't 64-bit clean.
...
Noticed by: kris
2004-03-16 00:34:06 +00:00
Joe Marcus Clarke
9aea7f06eb
Update to 2.2.10.
2004-03-15 19:30:57 +00:00
Kris Kennaway
66525750e2
BROKEN on 5.x: Does not build
2004-03-15 12:34:31 +00:00
Kris Kennaway
74fab5a147
Fix build on amd64 (shared library objects must be compiled with -fPIC)
2004-03-15 12:11:09 +00:00
Ying-Chieh Liao
2afd0f0feb
fix build on -stable
2004-03-15 02:39:31 +00:00
Oliver Lehmann
1459c36b40
update to xfce 4.0.4
2004-03-14 23:44:33 +00:00
Dirk Meyer
3030e51d7e
- unbreak autoconf
2004-03-14 14:20:13 +00:00
Jun Kuriyama
4a868f8a2a
o Bump $LIB_DEPENDS line to chase expat's shlib version.
...
o Bump $PORTREVISION.
2004-03-14 07:58:26 +00:00
Joe Marcus Clarke
189664d44f
Make sure we use the right include path to find our own header files. This
...
should unbreak libXt.
Obtained from: Freedesktop CVS repo
2004-03-14 07:23:48 +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
ce93dde7c5
Fix the threaad support to stay inline with the way it's done for Python.
...
Prompted by: kris
2004-03-14 00:16:54 +00:00
Joe Marcus Clarke
e0c94fddfd
Correct a typo that prevented thread support from being enabled.
...
Submitted by: Davide D'Amico <dave@civetta.gufi.org>
2004-03-13 18:01:33 +00:00
Christian Weisgerber
f7d7822118
Miscellaneous clean-up, drop maintainership.
...
PR: 64031
Submitted by: Cyrille Lefevre <cyrille.lefevre@laposte.net>
2004-03-12 20:48:04 +00:00
Christian Weisgerber
3514e97c33
Clean-up and drop maintainership.
...
PR: 64023
Submitted by: Cyrille Lefevre <cyrille.lefevre@laposte.net>
2004-03-12 20:11:02 +00:00
Trevor Johnson
e98e5506d1
Remove master sites which have been offline for a long time.
...
PR: 40263
Submitted by: Andreas Schulz
2004-03-12 17:18:16 +00:00
Trevor Johnson
60de9ee5e4
The home page seems to have been offline for a long time. Instead,
...
add a link to an article by the author.
Obtained from: <URL:http://www.google.com >
2004-03-12 17:15:11 +00:00
Trevor Johnson
a4fcaafc30
Only one of the Linuxberg sites (as it happens, the Brazilian one)
...
has the original distfile. A slightly different distfile is available
from Sunsite:
diff -burN linuxberg/include/make/jx_config_common sunsite/include/make/jx_config_common
--- linuxberg/include/make/jx_config_common Sat Sep 25 19:25:40 1999
+++ sunsite/include/make/jx_config_common Wed Sep 1 02:18:53 1999
@@ -7,14 +7,14 @@
ifeq ($(findstring g++,$(CXX)),g++)
ifeq ($(CXX),g++)
- JX_HAS_GNUG_PRE_2_8 := $(shell \
- if { $(CXX) --version | egrep '^(cygnus-)?2\.[0-7]' > /dev/null; } \
- then { echo 1; } \
- else { echo 0; } fi)
- JX_HAS_GNUG_2_95 := $(shell \
- if { $(CXX) --version | egrep '^(cygnus-)?2\.95' > /dev/null; } \
- then { echo 1; } \
- else { echo 0; } fi)
+ JX_HAS_GNUG_PRE_2_8 := \
+ $(shell \
+ if $(CXX) --version | egrep '^(cygnus-)?2\.[0-7]' > /dev/null; then \
+ echo 1; else echo 0; fi)
+ JX_HAS_GNUG_2_95 := \
+ $(shell \
+ if $(CXX) --version | egrep '^(cygnus-)?2\.95' > /dev/null; then \
+ echo 1; else echo 0; fi)
else # ! g++
ifeq (eg++,$(findstring eg++,$(CXX)))
# Assume that eg++ is egcs.
diff -burN linuxberg/include/make/jx_constants sunsite/include/make/jx_constants
--- linuxberg/include/make/jx_constants Sat Sep 25 19:25:30 1999
+++ sunsite/include/make/jx_constants Tue Sep 21 20:31:57 1999
@@ -23,9 +23,9 @@
ifdef JX_INSTALL_ROOT
override JX_INSTALL_ROOT := \
- ${shell if { test -d ${JX_INSTALL_ROOT} -a -w ${JX_INSTALL_ROOT}; } \
- then { echo ${JX_INSTALL_ROOT}; } \
- else { echo; } fi }
+ ${shell if { test -d ${JX_INSTALL_ROOT} -a -w ${JX_INSTALL_ROOT} } \
+ then { echo ${JX_INSTALL_ROOT} } \
+ else { echo } fi; }
endif
ifndef JX_INSTALL_ROOT
@@ -33,10 +33,10 @@
override JX_INSTALL_ROOT := ${JX_ROOT_BIN_DIRECTORY}
else
override JX_INSTALL_ROOT := \
- ${shell if { test -d ${HOME}/bin -a -w ${HOME}/bin; } \
- then { echo ${HOME}/bin; } \
+ ${shell if { test -d ${HOME}/bin -a -w ${HOME}/bin } \
+ then { echo ${HOME}/bin } \
else { test -d ${JX_ROOT}/bin || mkdir ${JX_ROOT}/bin; \
- echo ${JX_ROOT}/bin; } fi }
+ echo ${JX_ROOT}/bin } fi; }
endif
endif
diff -burN linuxberg/libjx/code/jXUtil.cc sunsite/libjx/code/jXUtil.cc
--- linuxberg/libjx/code/jXUtil.cc Mon Sep 27 20:59:37 1999
+++ sunsite/libjx/code/jXUtil.cc Thu Aug 26 20:22:57 1999
@@ -392,7 +392,7 @@
for (JIndex i=newCount; i>origCount; i--)
{
const JString* url = fileNameList->NthElement(i);
- if (url->IsEmpty() || url->GetFirstCharacter() == kURICommentMarker)
+ if (url->GetFirstCharacter() == kURICommentMarker)
{
fileNameList->DeleteElement(i);
}
2004-03-12 17:05:45 +00:00
Trevor Johnson
4533e8af72
Update to 1.4.0, requested by Lev Serebryakov.
2004-03-12 16:45:33 +00:00
Joe Marcus Clarke
826e1090e7
Update to 1.99.11.
2004-03-12 09:53:21 +00:00
Ade Lovett
91e0c8f1a7
Replace all known incantations of WANT_{AUTOMAKE,AUTOCONF,LIBTOOL}* with
...
the USE_<x> equivalents. In the current scheme of things, the WANT_
variables in this case are synonymous with the USE_ ones, and thus need
to be exterminated.
First in a series of major autotools cleanups.
2004-03-12 02:48:25 +00:00
Joe Marcus Clarke
db3eb96f57
Update to 2.2.0.
2004-03-11 22:07:13 +00:00
Oliver Braun
621cb3588f
Fix dependencies (hopefully)
...
Submitted by: bento via kris
2004-03-11 12:34:20 +00:00
Oliver Braun
3e16e4b08f
deUSE_SIZEify.
2004-03-11 07:48:13 +00:00
Joe Marcus Clarke
633601e6ec
Add a missing dependency on gnomepanel.
...
Reported by: GNOME Tinderbox
2004-03-11 05:10:03 +00:00
Joe Marcus Clarke
866f37a41e
Update to 1.0.6.
2004-03-11 04:52:22 +00:00
Michael Nottebrock
4c59237f06
Instead of checking for the existence of spec directories, check for
...
the actual specfile to be present.
2004-03-10 21:11:02 +00:00
Michael Nottebrock
646a91ce28
Declare CONFLICTS with earlier versions of qt3.x.
...
Enforce CONFLICTS to take effect by bumping PORTREVISION.
2004-03-10 12:14:26 +00:00
Michael Nottebrock
f64c6af4f4
Update to KDE 3.2.1 / QT 3.3.1
...
Important changes:
==================
KDE:
- Audio/arts does not install artswrapper anymore, instead it is provided by
audio/artswrapper. See UPDATING.
- misc/kdeaddons3 is now a metaport with
editors/kate-plugins
editors/vimpart
games/atlantikdesigner
misc/kaddressbook-plugins
misc/kfile-plugins
misc/kicker-applets
misc/knewsticker-scripts
misc/konq-plugins
misc/ksig
misc/renamedlgplugins
multimedia/noatun-plugins
net/kontact-plugins
as slave ports.
- A number of KDE ports now uses OPTIONS do make various WITH_* options more
visible.
- Plist fixes
- devel/kdevelop should be able to detect FreeBSD's autoconf/automake now for
newly created projects.
- kdebase will no longer remove previous KDM configurations. This won't take
effect during the update from 3.2.0 to 3.2.1 (as deinstalling 3.2.0 will still
remove the configuration), but subsequent updates will merge old configs.
QT:
- Previous versions of QT could be compiled with debugging-support enabled by
defining DEBUG. This switch has been renamed to the more unambiguous
WANT_QT_DEBUG (similar to WANT_KDE_DEBUG in the KDE ports).
2004-03-09 19:41:12 +00:00
Oliver Braun
363a3cec82
Add GIO 1.2, a 'middle-ground' GUI library for Haskell.
2004-03-09 17:15:58 +00:00
Oliver Braun
1d20f1abe3
Add hs-port 1.2, a low-level GUI library for Haskell.
2004-03-09 15:16:57 +00:00
Joe Marcus Clarke
fa2f81f210
Update to 1.0.3.
2004-03-09 05:49:51 +00:00
Pav Lucistnik
1785265fbd
- Kill trailing whitespace
...
- Fix typo
- Remove dead WWW
2004-03-08 21:20:23 +00:00
Michael Nottebrock
61c6513a51
Set to IGNORE for now.
2004-03-08 17:35:41 +00:00
Edwin Groothuis
672c044e2e
Properly use SDL everywhere:
...
USE_SDL=yes -> USE_SDL=sdl (good examles everywhere)
WANT_SDL/HAVE_SDL instead of exists(localbase/lib/lib...)
See
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/using-sdl.html
for more information on how to use USE_SDL, WANT_SDL and HAVE_SDL.
PR: follow-ups of ports/55494, ports/61877
Submitted by: Edwin Groothuis <edwin@mavetju.org>
2004-03-08 01:01:31 +00:00
Oliver Braun
8006a4f52d
Set maintainer to the new created haskell@ mail alias.
2004-03-06 21:29:59 +00:00
Dirk Meyer
cc9a972ac1
- reset MAINTAINER
2004-03-06 19:36:01 +00:00
Dirk Meyer
af0e988a30
- reset MAINTIANER as nobody cares for it.
2004-03-06 19:32:12 +00:00
Pav Lucistnik
789673014d
- Restore PORTEPOCH
...
Reported by: John Merryweather Cooper <coop9211@uidaho.edu>
Pointy hat to: dinoex
2004-03-06 18:03:56 +00:00
Dirk Meyer
47fb8aaa22
- update to 8.4.6
2004-03-06 06:11:30 +00:00