Commit Graph

4745 Commits

Author SHA1 Message Date
kurt
450f231ad4 - update port to be based of Sun's 1.5.0 Update 11 src which includes many
bug fixes since the initial release of the 1.5 jdk. I'm sure some of the
fixes are security related but I wasn't able to find a concise list. All
the bugs fixes listed here from update 11 and lower should be fixed by
this update: http://java.sun.com/j2se/1.5.0/ReleaseNotes.html#150_11
- NOTE: License change: used to be SCSL, now is JRL (Java Research
License). Still no packages with this license but at least we get the bug
fixes and security fixes now: https://tiger.dev.java.net/
- enable version scripts on libjvm which fixes a symbol conflict with
recent xulrunner which is used by eclipse's internal swt-browser.
2007-06-27 21:51:09 +00:00
kurt
01ba206cd1 expand BUILD_DEPENDS to allow building ports with jdk-1.5.0 update 11 2007-06-27 21:33:33 +00:00
steven
1cbf991a04 forgot a piece 2007-06-27 21:09:48 +00:00
steven
107ab5068c find locale under share/locale. discussed with author a while ago. 2007-06-27 20:33:14 +00:00
ajacoutot
14b9dbf647 - fix BUILD_DEPENDS on !i386/amd64 2007-06-27 13:14:02 +00:00
jasper
faf9d57770 update vte to 0.16.6
from lteo.openbsd1 at calyptix.com

ok martynas@
2007-06-26 17:21:46 +00:00
steven
a9f2e37312 update to 0.11.
ok jasper@
2007-06-26 17:07:54 +00:00
jasper
c3355a1920 add cxxtools 2007-06-26 16:52:43 +00:00
jasper
ab4b14589a import cxxtools 1.4.4
Various unrelated, but useful C++ classes.

ok ajacoutot@
2007-06-26 16:47:37 +00:00
ajacoutot
ce44a3bea8 - disable optimization for glib on powerpc because it can lead to a segfault
under some circumstances

ok kili@ jasper@
2007-06-25 15:28:44 +00:00
ajacoutot
427335879c - use MODGCC4 for powerpc instead of manually setting depends and variables
no binary change
2007-06-25 14:25:30 +00:00
martynas
fafe944df2 add py-configobj, py-kid, py-simplejson, py-turbocheetah, py-turbojson,
py-turbokid, py-wsgiutils
2007-06-24 22:06:44 +00:00
martynas
f7dda04d7d import py-turbokid-1.0.1
This package provides a template engine plugin, allowing you to
easily use Kid with TurboGears, Buffet or other systems that support
python.templating.engines.  Kid templates are assumed to have a
"kid" extension.

ok simon@
2007-06-24 22:03:11 +00:00
martynas
1f339e1e82 import py-kid-0.9.5
Kid is a simple template language for XML based vocabularies written
in Python. It was spawned as a result of a kinky love triangle
between XSLT, TAL, and PHP. We believe many of the best features
of these languages live on in Kid with much of the limitations and
complexity stamped out (see WhatsBorrowed and WhatsDifferent).

ok simon@
2007-06-24 22:02:32 +00:00
martynas
357a5ff4e3 import py-turbocheetah-0.9.5
This package provides a template engine plugin, allowing you to
easily use Cheetah with TurboGears, Buffet and other tools that
support the python.templating.engines entry point.  Cheetah templates
are assumed to have a "tmpl" extension.

ok simon@
2007-06-24 22:01:47 +00:00
martynas
40b9cbc48c import py-turbojson-1.0
This package provides a template engine plugin, allowing you to
easily use Json with TurboGears, Buffet or other systems that support
python.templating.engines.

ok simon@
2007-06-24 21:58:12 +00:00
martynas
f7213838a1 import py-configobj-4.4.0
ConfigObj is a simple but powerful config file reader and writer:
an ini file round tripper. Its main feature is that it is very easy
to use, with a straightforward programmer's interface and a simple
syntax for config files.

ok simon@
2007-06-24 21:56:36 +00:00
martynas
4d8bc41901 import py-wsgiutils-0.7
WSGI Utils are a package of standalone utility libraries that ease
the development of simple WSGI programs.  The functionality provided
is limited at the moment.

ok jasper@
2007-06-24 21:54:42 +00:00
martynas
0f9bae17c7 import py-simplejson-1.7.1
Simplejson is a simple, fast, extensible JSON encoder/decoder for
Python.  It is compatible with Python 2.3 and later with no external
dependencies. It covers the full JSON specification for both encoding
and decoding, with unicode support.  The encoder may be subclassed
to provide serialization in any kind of situation, without any
special support by the objects to be serialized (somewhat like
pickle).  The decoder can handle incoming JSON strings of any
specified encoding.

ok simon@ (who also spotted HOMEPAGE not escaping #)
2007-06-24 21:51:30 +00:00
martynas
815893568c add py-py 2007-06-24 10:30:22 +00:00
martynas
0900e94aa9 import py-py-0.9.0
The py lib is a development support library featuring py.test,
ad-hoc distributed execution, micro-threads and svn abstractions.

feedback, ok steven@
2007-06-24 10:29:40 +00:00
martynas
630cff2d91 add py-decoratortools, py-protocols and py-ruledispatch 2007-06-23 21:47:27 +00:00
martynas
bf63700867 import py-ruledispatch-0.5r2306
Rule-based Dispatching and Generic Functions.  The dispatch module
allows Python programmers to write generic functions to handle
various problems based on rules for the arguments it receives.

"go ahead" (after some nice tweaks, actually) steven@
2007-06-23 21:43:16 +00:00
martynas
d05cb9a94c import py-protocols-1.0r2306
PyProtocols extends the PEP 246 adapt() function with a new
"declaration API" that lets you easily define your own protocols
and adapters, and declare what adapters should be used to adapt
what types, objects, or protocols.  In addition to its own Interface
type, PyProtocols can also use Twisted and Zope's Interface types.

"go ahead" (after some nice tweaks, actually) steven@
2007-06-23 21:41:54 +00:00
martynas
7513c9af03 import py-decoratortools-1.4
Use class and function decorators -- even in Python 2.3 (now with
source debugging for generated code)!  Want to use decorators, but
still need to support Python 2.3? Wish you could have class decorators,
decorate arbitrary assignments, or match decorated function signatures
to their original functions? Then you need "DecoratorTools".

"looks good" steven@
2007-06-23 21:34:44 +00:00
steven
ff1ac7ec5e update to 2.02, from maintainer Srebrenko Sehic 2007-06-23 13:40:59 +00:00
steven
9d1f58fe0b update to 1.16, from maintainer Srebrenko Sehic 2007-06-23 13:31:40 +00:00
jcs
564ee6e168 update to actionpack-1.13.3 2007-06-22 03:44:21 +00:00
jcs
2a9f219b5f update to activesupport-1.4.2 2007-06-22 03:43:01 +00:00
kili
1c78258672 The distfile changed (found by steven@).
Some autoconf fallout in generated documentation (and one source
file), so bump the PKGNAME. They even changed the default installation
path of the manpage, which requires an additional tweak to
CONFIGURE_ARGS.

No functional changes; same result for regression tests as before.

While here, force configure to use our grep and the one true awk,
even if g{grep,awk} are installed.
2007-06-21 15:13:45 +00:00
sturm
2e35a1da4d missing BUILD_DEPENDS 2007-06-20 05:32:51 +00:00
ajacoutot
1b3f81287d - make it work under powerpc (get around a gcc3/pcc bug by using gcc4)
- take maintainership
2007-06-19 21:51:30 +00:00
simon
61423a0bef new subpackage that adds support for pgsql
feedback & ok robert@
2007-06-19 16:09:12 +00:00
ajacoutot
b53948be18 - when cmake uses gcc to build things, make it correctly grab CFLAGS and
CXXFLAGS variables and don't force compiler optimizations

ok espie@
2007-06-18 11:52:26 +00:00
steven
08b37454c3 update to subversion 1.4.4
ok kili@, simon@
maintainer timeout
2007-06-18 06:34:48 +00:00
espie
12c720e6cc only call mkdir on !empty stuff that does not exist.
removes systrace warnings. reported by ajacoutout.
2007-06-16 13:01:37 +00:00
kili
c71a5ac01c Update to hmake-3.13
Take maintainership.
2007-06-15 21:28:19 +00:00
bernd
81bcd23cb9 Update to git-1.5.2.1.
Initial diff from Daniel Dickman. Thank you!
2007-06-14 21:44:49 +00:00
simon
98e69d17a9 maintenance update to version 0.07 2007-06-14 20:50:00 +00:00
alek
2206636856 Update to 0.8.1 from Will Maier <willmaier@ml1.net> 2007-06-13 15:07:34 +00:00
jakob
4e726a39eb update to PCRE v7.1 2007-06-13 07:19:06 +00:00
steven
42840433d3 fix the PKGNAME 2007-06-13 06:57:45 +00:00
jasper
4da44bb429 - update cvsgraph to 1.6.1
- some cosmetics in Makefile
- remove alek@ as maintainer (per his request)

ok alek@
2007-06-11 20:19:59 +00:00
simon
0590c5e568 the conflict is gone. remove the markers and bump
ok kevlo@, "go ahead" robert@
2007-06-11 11:01:27 +00:00
espie
e640d83dda allow cmake to proceed in color unless you `explicitly' ask it otherwise
(setting BATCH, for instance).

Synch FindQt4 with some of qt 4.3.0 stuff. Need to be fully synched with
qt 4.3.0 anyways...
2007-06-09 09:09:44 +00:00
rui
647b139ecf update libmagic to 4.21
ok mbalmer@, ajacoutot@
2007-06-08 17:49:40 +00:00
steven
15aaea3940 update to 1.144
ok msf@
2007-06-07 07:34:04 +00:00
uwe
9d15d6f23e Update devel/bluetooth-libs and net/bluetooth-tools to match the kernel
This time, the userland tools and libraries are being ported from NetBSD
(which in turn is also based on FreeBSD code).  Both packages represent
work in progress and are not fully functional yet.

ok jasper@ for the new ports, grange@ for taking over maintainership
2007-06-06 21:12:23 +00:00
kili
5bf0c0778f Update to 1.0.9, from Jon Olsson (maintainer).
Tested by me with both ghc-6.2.2 and upcoming ghc-6.6.1 on i386 and
by R.D. Thrush on amd64. Some spaces vs. tabs detected by sturm@.

ok sturm@
2007-06-06 19:52:17 +00:00
jasper
d05b070e0f update sdcc to 2.7.0
from Andreas Bihlmaier (MAINTAINER)
2007-06-06 17:23:09 +00:00