Commit graph

17840 commits

Author SHA1 Message Date
Cheng-Lung Sung
ab62edf931 - Update to 0.09
- Move to perl@FreeBSD.org

PR:		ports/106513
Submitted by:	Gea-Suan Lin <gslin_AT_gslin dot org>
2006-12-12 00:55:21 +00:00
Cheng-Lung Sung
3ce60ea6d2 - Update to 0.18
- Move to perl@FreeBSD.org

PR:		ports/106511
Submitted by:	Gea-Suan Lin <gslin_AT_gslin dot org>
2006-12-12 00:54:34 +00:00
Thierry Thomas
a63a4a3a93 Upgrade to 2.20.
Changelog at <http://bouml.free.fr/historic.html>.
2006-12-11 19:57:41 +00:00
Frank J. Laszlo
59af966688 Update to 0.28 2006-12-11 17:54:14 +00:00
Anton Berezin
739f5c6f70 Update to 1.9703. 2006-12-11 10:56:19 +00:00
Cheng-Lung Sung
6136e6b03a - Update to 0.22 [1], [2]
- Move to perl@FreeBSD.org [2]

PR:		ports/105734 [1], ports/106514 [2]
Submitted by:	Jin-Shan Tseng <tjs_AT_cdpa dot nsysu dot edu dot tw> [1],Gea-Suan Lin <gslin_AT_gslin dot org> [2]
Approved by:	maintainer (timeout)
2006-12-11 05:19:29 +00:00
Cheng-Lung Sung
252a2defe4 - Update to 1.03.01
- maintainership move to perl@FreeBSD.org

PR:		ports/106510
Submitted by:	Gea-Suan Lin <gslin_AT_gslin dot org>
2006-12-11 03:30:34 +00:00
Cheng-Lung Sung
3e9a8924ff - Update to 1.02
- maintainership move to perl@FreeBSD.org

PR:		ports/106509
Submitted by:	Gea-Suan Lin <gslin_AT_gslin dot org>
2006-12-11 03:29:41 +00:00
Cheng-Lung Sung
7fe6debc40 Add p5-Sub-WrapPackages 1.2, add pre- and post-execution wrappers.
PR:		ports/103393
Submitted by:	George Hartzell <hartzell at alerce.com>
2006-12-11 03:10:13 +00:00
Cheng-Lung Sung
d5a3eaa7e4 - Update to 0.24 2006-12-11 03:08:19 +00:00
Shaun Amott
7b5e47e331 Do a bit of patch work to improve handling of modern (large/complex,
possibly C++) software.

PR:		ports/106491
Submitted by:	Julian Elischer <julian@pan.ironport.com>
2006-12-11 00:29:07 +00:00
Jimmy Olgeni
1ff944518e Upgrade to version 0.96.0626 and unbreak. 2006-12-10 21:05:22 +00:00
Joe Marcus Clarke
7693cfc733 Correct a dump shift typo to fix the plist.
Reported by:	pointyhat via kris
2006-12-10 19:36:32 +00:00
Martin Wilke
52ff871d1e - Fix Makefile
PR:             ports/106550
Submitted by:   Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
Approved by:    common sense
2006-12-10 08:43:44 +00:00
Kris Kennaway
d1402ff1db BROKEN: Unfetchable 2006-12-10 06:16:38 +00:00
Nicola Vitale
bd6fa393f8 - Updated email address in my ports
Approved by:	alexbl (mentor)
2006-12-10 01:21:51 +00:00
Martin Wilke
3115829d19 - Update to 4.5.2
- Add back MASTER_SITES
2006-12-10 00:10:45 +00:00
Nicola Vitale
0e0113049f - Added ${MASTER_SITE_LOCAL} as mirror
PR:		104791
Submitted by:	Aron Stansvik <elvstone@gmail.com>
Approved by:	alexbl (mentor)
2006-12-09 23:05:54 +00:00
Rong-En Fan
a1767758f3 - Respect X11BASE in various module functions
This fixes build with non-standard X11BASE for math/vtk* and
  possible others.

OKed by:	arved
Approved by:	portmgr (linimon)
2006-12-09 20:56:44 +00:00
Stanislav Sedov
6a0650cec3 - Update to 5.11.2
- Use new framework
- Honor permissions
2006-12-09 18:08:13 +00:00
Norikatsu Shigemura
f31ea515c8 o Respect PTHREAD_LIBS. [1]
o USE_LDCONFIG instead of INSTALLS_SHLIB. [2]

Approved by:	Antoine Brodin <antoine.brodin@laposte.net> (maintainer) [1]
Reviewed by:	thierry [1]
Requested by:	Antoine Brodin <antoine.brodin@laposte.net> (maintainer) [2]
2006-12-09 16:59:22 +00:00
Rong-En Fan
1c348e4c30 - Respect X11BASE
Approved by:	portmgr (linimon)
2006-12-09 16:30:59 +00:00
Martin Wilke
f92a3ddd60 - Fix pkg-plist
- Add manpages to Makefile
2006-12-09 16:05:43 +00:00
Martin Wilke
83307fd8a2 This module implements asynchronous I/O using whatever means your
operating system supports.

Asynchronous means that operations that can normally block your
program (e.g. reading from disk) will be done asynchronously: the
operation will still block, but you can do something else in the
meantime. This is extremely useful for programs that need to stay
interactive even when doing heavy I/O (GUI programs, high performance
network servers etc.), but can also be used to easily do operations in
parallel that are normally done sequentially, e.g. stat'ing many files,
which is much faster on a RAID volume or over NFS when you do a number
of stat operations concurrently.

While most of this works on all types of file descriptors (for example
sockets), using these functions on file descriptors that support
nonblocking operation (again, sockets, pipes etc.) is very inefficient
or might not work (aio_read fails on sockets/pipes/fifos). Use an
event loop for that (such as the Event module): IO::AIO will naturally
fit into such an event loop itself.

WWW:	http://search.cpan.org/dist/IO-AIO/

Notes: For index unbreak.

PR:		ports/106526
Submitted by:	Gea-Suan Lin <gslin at gslin.org>
2006-12-09 15:48:32 +00:00
Martin Wilke
eecb982234 AnyEvent provides an identical interface to multiple event loops.
This allows module authors to utilise an event loop without forcing
module users to use the same event loop (as only a single event loop
can coexist peacefully at any one time).

The interface itself is vaguely similar but not identical to the Event
module.

On the first call of any method, the module tries to detect the
currently loaded event loop by probing wether any of the following
modules is loaded: Coro::Event, Event, Glib, Tk. The first one found
is used. If none is found, the module tries to load these modules in
the order given. The first one that could be successfully loaded will
be used. If still none could be found, AnyEvent will fall back to a
pure-perl event loop, which is also not very efficient.

WWW:	http://search.cpan.org/dist/AnyEvent/

Noted: For index unbreak :(

PR:		ports/106527
Submitted by:	Gea-Suan Lin <gslin at gslin.org>
2006-12-09 15:46:55 +00:00
Gabor Kovesdan
6cbeaeaf41 - Update to 4.5
- portlint(1)

PR:		ports/106339
Submitted by:	gabor
Approved by:	erwin (mentor)
2006-12-09 13:36:02 +00:00
Martin Wilke
72428dcd61 - Update to 3.1.1
PR:		106528
Submitted by:	Gea-Suan Lin <gslin@gslin.org>
2006-12-09 13:35:41 +00:00
Martin Wilke
75312a8f7b IPC::Signal - Utility functions dealing with signals
This module contains utility functions for dealing with signals.

WWW: http://search.cpan.org/dist/IPC-Signal/

PR:		ports/103882
Submitted by:	Rouslan Iskhakov <rouslan at rshell.net>
2006-12-09 12:48:57 +00:00
Stanislav Sedov
e8d0d9ab85 - Update to 1.0.27
- Drop my email
2006-12-09 11:59:21 +00:00
Stanislav Sedov
c1a736db3e - Update to 2.2.5
- Change my email
2006-12-09 11:50:09 +00:00
Stanislav Sedov
d343c0e793 - Update to 2.9.8
- Change my email
2006-12-09 11:46:41 +00:00
Stanislav Sedov
bf9a306327 - Update to 1.7.4
- Change my email
2006-12-09 11:44:09 +00:00
Stanislav Sedov
05cdf71ba8 - Update to 3.0.20 2006-12-09 11:39:14 +00:00
Stanislav Sedov
1c03e54f9c - Update to 0.2.0 2006-12-09 11:24:23 +00:00
Dirk Meyer
46a27a37f1 - add Local/Library/ApplicationSupport
- add Local/Tools/Resources
2006-12-09 09:27:51 +00:00
Ade Lovett
21a360a3f2 Since we're using NO_MTREE, we need to completely clean up behind us.
Curiously, with a 'normal test sequence' of PREFIX=/build make ...
this didn't flag any errors.

Submitted by:	pointyhat
2006-12-09 07:00:16 +00:00
Cheng-Lung Sung
1438bb1882 - Update to 1.53 2006-12-09 06:07:22 +00:00
Shaun Amott
cb7949dc0f Fix build on ia64. 2006-12-09 03:38:17 +00:00
Rong-En Fan
7a0b97a334 - Respect X11BASE for Qt
Reported by:	pointyhat
Approved by:	portmgr (linimon)
2006-12-09 03:21:40 +00:00
Martin Wilke
f53f6264e0 - Pass maintainership to submitter
- Update to 1.0
- Set PHP to version 4 a default

PR:		ports/106478
Submitted by:	Gerrit Beine<gerrit.beine@gmx.de>
2006-12-08 22:26:50 +00:00
Alexander Botero-Lowry
ad1bbf1835 - Mark devel/py-ctypes IGNORE with Python 2.5 [1]
- add a PYCTYPES dependency macro to bsd.python.mk to unbreak ctypes using
   ports on Python 2.5 [2]
 - Update two of the four ports using ctypes to this macro [3]

PR: 104587 [1]
Submitted by:	Marcus von Appen <mva@sysfault.org> [1]
Approved by:	portmgr (pav, linimon) [2], myself [3]
2006-12-08 21:50:20 +00:00
Gabor Kovesdan
7dc52a691f Change my e-mail address.
Approved by:	erwin (mentor)
2006-12-08 13:46:35 +00:00
Jun Kuriyama
c389785e76 Add missing PKGNAMEPREFIX=p5- which I forgot.
Reported by:	"Eric W. Bates" <ericx@vineyard.net>
2006-12-08 12:09:54 +00:00
Boris Samorodov
49f3a25e6d Update to new version 22591. Changelog is not available.
Approved by:	anray
2006-12-08 11:51:04 +00:00
Tim Bishop
57dccff46e - Update to 0.6.0 2006-12-08 10:26:00 +00:00
Martin Wilke
90cb03f58f - Pass maintainership to submitter
PR:		ports/106469
Submitted by:	Marcus von Appen <mva@sysfault.org>
2006-12-08 09:01:38 +00:00
Joe Marcus Clarke
65e6d3fbc9 Update to 1.10.2, and fix plug-in detection on 64-bit platforms (most
notably amd64).  With this fix, ekiga will now work on amd64 (at least).

Approved by:	maintainer
2006-12-08 07:47:27 +00:00
Shaun Amott
e3ddec92ef Update to 0.07.0.
PR:		ports/102633
Submitted by:	Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
Approved by:	aaron (maintainer, EBUSY blanket)
2006-12-08 02:47:55 +00:00
Frank J. Laszlo
67b8ad14c8 - Update to 0.26
- Use BUILD_DEPENDS=${RUN_DEPENDS} to prevent from unused run-depends when
	using PERL_MODBUILD=yes (it will add something to BUILD_DEPENDS)
- No Clone dependency anymore, and add GraphViz dependency
- Storable 2.04 is in Perl 5.8.0+

PR:		ports/102667
Submitted by:	Gea-Suan Lin <gslin@gslin.org>
Approved by:	maintainer timeout (3 months)
2006-12-07 15:32:42 +00:00
Ade Lovett
26e1e82aa2 Say hello to automake 1.10 after repocopy 2006-12-07 10:57:12 +00:00
Ade Lovett
781b45454c Put autoconf-2.61 into its correct location after repocopy 2006-12-07 10:52:38 +00:00
Rong-En Fan
864e187e58 Add PAR-Packer 0.970, a part of the PAR Toolkit that can generate
stand-alone executables and ".par" archives.
2006-12-07 06:50:56 +00:00
Rong-En Fan
9f17237f05 - Update to 0.970
All executable files are moved to another distribution: PAR-Packer,
  which will hit the tree shortly
2006-12-07 04:15:09 +00:00
Rong-En Fan
f9c51ecc7f - Respect X11BASE
Submitter has another but miwi and I think mine is better.
- Use DATADIR

PR:		ports/105910
Submitted by:	trasz <trasz at pin.if.uz.zgora.pl>
OKed by:	miwi (PR holder)
Approved by:	portmgr (linimon)
2006-12-06 17:54:34 +00:00
Cheng-Lung Sung
a79089ca3a - update to 1.02
- change category from devel/ to net/

PR:		ports/104210
Submitted by:	maintainer (Roman Streltsov)
2006-12-06 14:37:10 +00:00
Martin Wilke
0f5ec3a0bd - Update to 0.04
PR:		ports/106176
Submitted by:	Christopher Boumenot <boumenot@gmail.com>
Approved by:	maintainer
2006-12-06 12:35:36 +00:00
Philip Paeps
693d83d1aa Update lua-app 1.70 -> 1.72
PR:		ports/106409
Submitted by:	Andrew Turner <andrew+ports@fubar.geek.nz> (maintainer)
2006-12-06 07:54:26 +00:00
Philip Paeps
463177d875 Add devel/lua-pty to work with Lua 5.0 and Lua 5.1 and turn devel/lua50-pty
into a slave port of it.

PR:		ports/106347
Submitted by:	Andrew Turner <andrew+ports@fubar.geek.nz> (maintainer)
Repocopy by:	marcus
2006-12-05 22:51:12 +00:00
Martin Wilke
acce02c16c - Update to 2.25
PR:		ports/106185
Submitted by:	Christopher Boumenot <boumenot@gmail.com>
Approved by:	maintainer
2006-12-05 22:23:51 +00:00
Martin Wilke
987d5f1f9f - Update to 1.1.2
PR:		ports/106383
Submitted by:	Thomas Abthorpe <thomas@goodking.ca> (maintainer)
2006-12-05 20:10:30 +00:00
Martin Wilke
b1a741e2b7 ANTLRWorks is a simple but efficient IDE for ANTLR 3 grammars.
It allows users to edit, visualize, interpret and debug
any ANTLR 3 grammar through an easy-to-use GUI.

WWW: http://www.antlr.org/works/

PR:		ports/106388
Submitted by:	Matthias Sund <m.sund at arcor.de>
2006-12-05 20:03:55 +00:00
Frank J. Laszlo
3adc656756 Update to version 5.2
Submitted by:	self (maintainer)
2006-12-05 20:02:32 +00:00
Ade Lovett
6a6e03f398 Fix building documentation under FreeBSD < 6.0
PR:		106385 (with modifications)
Submitted by:	Jonathan Lennox <lennox@cs.columbia.edu>
2006-12-05 19:28:07 +00:00
Ade Lovett
cfd7ec46dc Unbreak on FreeBSD < 6.0
PR:		106379 (with minor changes)
Submitted by:	Jonathan Lennox <lennox@cs.columbia.edu>
2006-12-05 18:36:17 +00:00
Marcus Alves Grando
654f115b69 - Bump PORT_REVISION and change LIB_DEPENDS to reflect update in devel/libevent
- Fix many wrong BUILD_DEPENDS. Thanks to ldd(1)
2006-12-05 13:29:01 +00:00
Marcus Alves Grando
c56342eecb - Hardcode version in pkg-plist to in future remember to bump all ports that use it. 2006-12-05 12:06:35 +00:00
Lev A. Serebryakov
68e411768a Add optional iconv support to gcc.
PR:		ports/87120
Submitted by:	MOROHOSHI Akihiko <moro@remus.dti.ne.jpg>
2006-12-05 11:32:32 +00:00
Frank J. Laszlo
92000302b5 New port: devel/rubygem-hoe
Hoe is a simple rake/rubygems helper for project Rakefiles. It
generates all the usual tasks for projects including rdoc generation,
testing, packaging, and deployment.

WWW: http://rubyforge.org/projects/seattlerb/

PR:		ports/106313
Submitted by:	Jonathan Weiss<jw@innerewut.de>
2006-12-05 03:23:17 +00:00
Yen-Ming Lee
1405c2b832 - update to 0.66 2006-12-05 00:28:50 +00:00
Erwin Lansing
0f15c23870 - Deprecate
- Set EXPIRATION_DATE

PR:		106322
Submitted by:	gabor
2006-12-04 21:15:57 +00:00
Erwin Lansing
4451d998d8 - Deprecate
- Set EXPIRATION_DATE

PR:		106321
Submitted by:	gabor
2006-12-04 21:10:31 +00:00
Oliver Lehmann
b837d3b89c update to 0.2.24 2006-12-04 18:11:20 +00:00
Frank J. Laszlo
14c6803dca Update to version 3.1.1
PR:		ports/105750
Submitted by:	mistral@imasy.or.jp (maintainer)
2006-12-04 16:20:56 +00:00
Lev A. Serebryakov
92cce7baf1 Update to 3.4.5.20060117.1.
This release doesn't have patch for official sources, switch
to mingw32's ones.
2006-12-04 13:56:43 +00:00
Lev A. Serebryakov
fdfe2da85d Update to Runtime 3.8, API 3.3 2006-12-04 13:55:41 +00:00
Lev A. Serebryakov
c8d41d614c Update to 2.16.91.20050827.1 2006-12-04 13:55:08 +00:00
Marcus Alves Grando
4b73072bc5 - Update to 1.2a 2006-12-04 13:46:14 +00:00
Vasil Dimov
a61d3f6bed Remove expired ports:
2006-12-01 audio/xmms-rateplug: Project disappeared from the internet
2006-12-01 chinese/iiimf-le-chewing: fails to install (dependency problem)
2006-12-01 deskutils/mhc-xemacs21-mule: hangs during build
2006-12-01 devel/alleyoop: Does not compile
2006-12-01 devel/hs-crypto: is incompatible with current GHC, needs updating
2006-12-01 editors/gedit-autocomplete-plugin: Not compatible with gedit versions >= 2.14
2006-12-01 emulators/basiliskII: Does not compile
2006-12-01 emulators/vmware-tools2: Unfetchable
2006-12-01 emulators/vmware2: Unfetchable
2006-12-03 finance/ccard: Project disappeared from the internet
2006-12-04 13:10:31 +00:00
Ade Lovett
52a1b388f0 Bleh. Thought I included the manpage. Obviously not.
Submitted by:	pointyhat
2006-12-04 06:57:58 +00:00
Cheng-Lung Sung
3566c9f701 - Update to 0.22 2006-12-04 05:53:37 +00:00
Ade Lovett
0b7022143c Update to 1.10 2006-12-04 03:40:25 +00:00
Ade Lovett
de1c1d751b Update to 2.61 2006-12-04 03:39:54 +00:00
Ade Lovett
5c261d66af Update to 2.3
PR:		101718
Submitted by:	Stanislav Sedov <ssedov@mbsd.msk.ru>
2006-12-04 01:29:10 +00:00
Ade Lovett
977bf46f15 Update to 1.4.8 2006-12-04 01:22:21 +00:00
Ade Lovett
5e0683283f Say hello to autoconf-2.6.1 after repository copy from autoconf259 2006-12-04 01:03:48 +00:00
Pav Lucistnik
ada0c53107 A simplistic script which automates a limited set of rubyforge operations
WWW: http://www.rubyforge.org/
WWW: http://codeforpeople.com/lib/ruby/rubyforge/

PR:		ports/106280
Submitted by:	Jonathan Weiss <jw@innerewut.de>
2006-12-04 00:09:14 +00:00
Pav Lucistnik
9a1de45a28 - Update to 1.3.5
PR:		ports/101041
Submitted by:	Radim Kolar <hsn@netmag.cz>
Approved by:	maintainer timeout (seanc; 4 months)
2006-12-03 23:45:48 +00:00
Pav Lucistnik
d55e845d9a - Fix build on FreeBSD 4.X
PR:		ports/100088
Submitted by:	Kostik Belousov <kostikbel@gmail.com>
Approved by:	maintainer timeout (seanc; 5 months)
2006-12-03 23:35:40 +00:00
Martin Wilke
2d099b3760 - Update to 1.12
PR:		ports/106179
Submitted by:	Christopher Boumenot <boumenot@gmail.com>
Approved by:	maintainer
2006-12-03 23:10:53 +00:00
Martin Wilke
e9de9a9336 - Update to 0.11
PR:		ports/106175
Submitted by:	Christopher Boumenot <boumenot@gmail.com>
Approved by:	maintainer
2006-12-03 23:10:19 +00:00
Martin Wilke
6b15d3c17b - Unbreak fix build on 5.X
PR:		ports/106197
Submitted by:	Peter Johnson <johnson.peter@gmail.com>
2006-12-03 22:51:53 +00:00
Thierry Thomas
fc68f5733d Upgrade to 2.19.5.
Changelog at <http://bouml.free.fr/historic.html>.
2006-12-03 22:47:31 +00:00
Martin Wilke
8e361cd274 - Update to 106270
PR:		ports/106270
Submitted by:	Gerrit Beine<gerrit.beine@gmx.de> (maintainer)
2006-12-03 22:28:00 +00:00
Martin Wilke
8a2e81cbfd - Update to 0.09
PR:		ports/106256
Submitted by:	"Philip M. Gollucci"<pgollucci@p6m7g8.com> (maintainer)
2006-12-03 22:27:45 +00:00
Jeremy Messenger
d14a8e72d0 - Update to 2.16.1.
- Remove desktopfileutils dependency and remove manual run
  update-desktop-database. It has no mimetype in .desktop file since 2.16.0
  and maybe more below than that.
2006-12-03 22:26:47 +00:00
Joe Marcus Clarke
29935df67f Update to 2.14.5. 2006-12-03 19:52:29 +00:00
Sergey Matveychuk
1c2a46f0a4 - A work around for creating threads with THR_NEW_LWP.
LWP is not directly applicable to FreeBSD threading model.

PR:		ports/105794
Submitted by:	Andriy Gapon <avg at icyb.net.ua>
2006-12-03 19:42:31 +00:00
Max Khon
964faf4300 Update to 2.2.
PR:		106181
Submitted by:	Christopher Boumenot
2006-12-03 15:56:11 +00:00
Pav Lucistnik
58f61ed4d4 - Re-add, update to 3.5.0
- Guarantee permissions safety
- Make the port PREFIX-clean

PR:		ports/102664
Submitted by:	stas
Approved by:	maintainer timeout (seanc; 3 months)
2006-12-03 14:32:22 +00:00
Pav Lucistnik
2fe6ff7c79 - Update to 3.5.0
- Switch to rubygem distribution

PR:		ports/102856
Submitted by:	Ying-Chieh Liao <ijliao@csie.nctu.edu.tw>
Approved by:	maintainer timeout (seanc; 3 months)
Repocopy by:	marcus
2006-12-03 13:30:40 +00:00
Dmitry Sivachenko
274e5c4ab3 Correct path to Compress::Zlib.pm after recent p5-Compress-Zlib update. 2006-12-03 12:45:59 +00:00
Rong-En Fan
426c3ec0df - share/sgml/docbook/catalog was removed in previous docbook update
Change these ports to use package dependency instead.

This should fix build on hs-haddock and gmat.

Reported by:	pointyhat
2006-12-03 11:55:11 +00:00
Stanislav Sedov
9377b98f8f - Update to current snapshot (should fix compatiblity problems with the new
gnome)
- PREFIX-cleaness

Approved by:	mezz (maintainer, implicitly)
2006-12-02 18:34:38 +00:00
Wes Peters
6b764a1582 Clean up after myself properly. 2006-12-02 15:29:03 +00:00
Anton Berezin
258284ea30 Update to 0.36.
Parts of PR 105780 by chinsan were used in this commit.
2006-12-02 15:22:54 +00:00
Anton Berezin
c63b5c9e52 Update to 0.552. 2006-12-02 14:49:05 +00:00
Rong-En Fan
155d08b741 - Respect X11BASE
Reported by:	pointyhat
2006-12-02 14:42:03 +00:00
Anton Berezin
2b227af340 Update to 0.53.
PR:		106173
Submitted by:	Christopher Boumenot <boumenot@gmail.com>
2006-12-02 14:40:56 +00:00
Dmitry Sivachenko
fb21b3ec84 Update to 1.17.
PR:		106180
Submitted by:	Christopher Boumenot <boumenot@gmail.com>
2006-12-02 14:12:13 +00:00
Yen-Ming Lee
1a406b997e - update to 0.28
PR:		106184
Submitted by:	Christopher Boumenot <boumenot at gmail.com>
2006-12-02 09:16:13 +00:00
Anton Berezin
667942b47c Update to 1.97.
Submitted by:	Christopher Boumenot <boumenot@gmail.com>
PR:		106178
2006-12-02 08:57:06 +00:00
Alexander Botero-Lowry
5fd67b2b57 - unbreak for new devel/ruby-gem
Submitted by:	krismail
2006-12-02 06:33:28 +00:00
Jeremy Messenger
9c1c27d440 - Update to 1.1.7.
- Do not let its Makefile to compress the manpages. Let our ports to take
  care of it for anyone can control it.
- USE_X_PREFIX -> USE_XLIB.
2006-12-02 06:08:45 +00:00
Martin Wilke
a67c56803d - Update 0.9.4
PR:		ports/106102
Submitted by:	Choe, Cheng-Dae<whitekid@gmail.com>
2006-12-02 00:04:11 +00:00
Martin Wilke
225bfbc387 - Update to 1.2.8
PR:		ports/106150
Submitted by:	Thomas Abthorpe <thomas@goodking.ca> (maintainer)
2006-12-01 23:48:02 +00:00
Dirk Meyer
49259fd300 - cleanup
forget to mention
Obtained from:	NetBSD
2006-12-01 20:54:04 +00:00
Dirk Meyer
ecb3785407 ObjectiveLib provides two primary services: containers and algorithms.
An important part of the library that keeps everything moving is
iterators.  ObjectiveLib is designed to offer the same functionality
to Objective-C programmers that the Standard Template Library offers
to C++ programmers. Therefore, anyone familiar with the STL will have
no trouble using and understanding the machinery of ObjectiveLib.

WWW: http://objectivelib.sourceforge.net/
2006-12-01 20:31:28 +00:00
Renato Botelho
40d8825ffb - Fix WWW
- Cosmetic changes on pkg-descr
2006-12-01 16:31:55 +00:00
Sergey Skvortsov
fb0c87bd45 Update to 0.30
PR:		ports/105637
Submitted by:	skv
Approved by:	maintainer timeout (14 days)
2006-12-01 11:45:28 +00:00
Martin Wilke
66e47a5822 - Unbreak on 5.X
PR:		ports/106110
Submitted by:	Peter Johnson <johnson.peter@gmail.com>
2006-12-01 07:49:16 +00:00
Pav Lucistnik
d750615763 - Use features of bsd.wx.mk, especially USE_WX
PR:		ports/101613
Submitted by:	alepulver
2006-12-01 07:39:02 +00:00
Cheng-Lung Sung
ced7bd58ad - fix pkg-plist
Noted by:	krismail
2006-12-01 04:35:00 +00:00
Frank J. Laszlo
cd0389f8a1 Change patch submitters email address per his request.
Approved by: flz (implicit)
2006-12-01 03:27:19 +00:00
Kris Kennaway
e7b89d14de BROKEN on sparc64: Does not compile 2006-11-30 23:41:02 +00:00
Kris Kennaway
1f9565a383 BROKEN: Incorrect pkg-plist 2006-11-30 23:27:03 +00:00
Alejandro Pulver
efb7d42835 - Back out last commit. 2006-11-30 23:01:12 +00:00
Philip Paeps
972fe1b9a6 Add Lua 5.1 ports to bsd.lua.mk so they can be used in LUA_COMPS. Revert
miwi's stopgap to devel/Makefile.  This should make everything happy again.

Submitted by:	droso, Andrew Turner <andrew+ports@fubar.geek.nz>
Pointy hat to:	philip
2006-11-30 21:51:05 +00:00
Martin Wilke
7680f28ec5 Fix index for 4.X
Submitted by:	droso, pav
Pointyhat to:   philip
2006-11-30 20:33:05 +00:00
Alejandro Pulver
4dda5339a5 - Change CATEGORIES to "net" (after repocopy) to fix PKGORIGIN.
Reported by:	erwin
2006-11-30 19:12:42 +00:00
Frank J. Laszlo
d434e24cb8 Add a patch to possibly fix build issues on sparc64. There seems to be issues building with CFLAGS+= -fpic on sparc64
Submitted by:	John Wood <john@charpa.org>
Approved by:	flz
2006-11-30 18:08:52 +00:00
Dirk Meyer
513143d1aa Encore is a set of utility classes written in Objective-C for GNUstep and
Mac OS X.  The motivation of writting these classes was driven by
implementing the projects BDB and FT. The classes may be useful for other
projects as well.

The classes include
  - logging:  A flexible logging mechanism similiar to log4j. Supports
    logging levels, logging contexts, different output channels per context,
    configuration per xml, ...

  - XML-based reflection: a configuration mechanism which is based on XML and
    uses inversion of control (see tests for an example)

  - a simple testing framework

  - StringUtils class

  - an iterator interface

WWW: http://fortytwo.sourceforge.net/
2006-11-30 17:14:30 +00:00
Yen-Ming Lee
fe4b30f492 - update to 0.0.6 2006-11-30 14:48:10 +00:00
Yen-Ming Lee
07e0535db8 - update to 1.17 2006-11-30 14:31:07 +00:00
Philip Paeps
b7d021c8c2 Hook up devel/lua-filename. 2006-11-30 10:53:08 +00:00
Philip Paeps
9e1851c430 Add devel/lua-filename to work with Lua 5.0 and Lua 5.1 and turn
devel/lua50-filename into a slave port of it.

PR:		ports/105990
Submitted by:	Andrew Turner <andrew+ports@fubar.geek.nz> (maintainer)
Repocopy by:	marcus
2006-11-30 10:49:04 +00:00
Wes Peters
8f795b6a5f The C++ Portable Components consists of four libraries providing a
platform abstraction layer for system interfaces, an XML parser
with SAX2 and DOM interfaces and an XML writer, classes for working
with configuration files and command line arguments, and a number
of network protocols.
2006-11-29 23:25:10 +00:00
Thierry Thomas
0d396e6b18 Upgrade to 2.19.4.
Changelog at <http://bouml.free.fr/historic.html>.
2006-11-29 21:13:17 +00:00
Anton Berezin
b52aa7ad3e Update to 1.95. 2006-11-29 19:40:59 +00:00
Marcus Alves Grando
b04e3e9715 - Real fix to run in FreeBSD < 5.1. Use CLOCK_REALTIME when CLOCK_MONOTONIC does not exists. 2006-11-29 17:46:10 +00:00
Marcus Alves Grando
485e3029aa - Fix build in FreeBSD < 5.1
- Take MAINTAINER
2006-11-29 17:13:24 +00:00
Stanislav Sedov
7e5111077b - Add port for devel/fga
FGA is a simple yet powerful implementation of a general genetic algorithm, and
provides many types of crossover and selection procedures.

It is suitable to solve mathematical problems such as combinatorical
optimization ones, as well as to build artificial life simulations.
2006-11-29 14:49:24 +00:00
Norikatsu Shigemura
8c551f6335 PTHREAD_LIB-safeness.
Approved by:	ahze (gnome)
2006-11-29 14:14:13 +00:00
Cheng-Lung Sung
a8a6d457c7 - Update to 0.9.0
- fix pkg-plist
- fix WWW

PR:		ports/103699
Submitted by:	Geraud CONTINSOUZAS <geraud_AT_gcu dot info>
Approved by:	maintainer (Jonathan Weiss)
2006-11-29 03:42:09 +00:00
Vanilla I. Shu
cdd2a9ce41 Fix DISTNAME.
Submitted by:	kris via email.
Pointyhat by:	me
2006-11-29 02:40:20 +00:00
Jun Kuriyama
631071eaac - Upgrade to 0.11. 2006-11-29 01:09:56 +00:00
Erwin Lansing
3c2be8f592 Update to 0.99.45 2006-11-28 21:47:24 +00:00
Erwin Lansing
64c63686cd Update to 1.5.2 2006-11-28 21:21:04 +00:00
Lars Thegler
5203cae857 - Fixed OSVERSION check [1]
- Fixed IGNORE spelling

Noticed by:	pointyhat via kris [1]
2006-11-28 21:11:47 +00:00
Andrej Zverev
47c56cad84 -Update to 0.096 2006-11-28 19:01:01 +00:00
Anton Berezin
dc76293c02 Update to 0.08. 2006-11-28 14:36:34 +00:00
Anton Berezin
b01b6310cc Update to 0.99. 2006-11-28 14:28:26 +00:00
Anton Berezin
71ca33ae46 Update to 1.302. 2006-11-28 14:17:00 +00:00
Erwin Lansing
9653a854dc - Deprecate
- Set EXPIRATION_DATE

PR:		105926
Submitted by:	gabor
2006-11-28 13:46:23 +00:00
Erwin Lansing
fe2460f618 - Deprecate
- Set EXPIRATION_DATE

PR:		105927
Submitted by:	gabor
2006-11-28 13:43:56 +00:00
Anton Berezin
cc22fc39b7 Update to 0.14. 2006-11-28 13:22:45 +00:00
Anton Berezin
b7295d2d60 Update to 0.22. 2006-11-28 12:18:02 +00:00
Anton Berezin
6955dd0892 Update to 0.07. 2006-11-28 12:14:15 +00:00
Anton Berezin
267acae8b3 Update to 0.551. 2006-11-28 12:05:24 +00:00
Vasil Dimov
f867b74a64 * Drop xgettext from BUILD_DEPENDS [1]
* Put CONFIGURE_* variables right after GNU_CONFIGURE [1]
* Remove gettext version check from the pre-configure: target and incorporate
  it in the USE_GETTEXT variable
* Bump PORTREVISION

PR:		ports/105848 [1]
Submitted by:	Alex Kozlov <spam@rm-rf.kiev.ua>
2006-11-28 08:37:27 +00:00
Alex Dupre
ab7bd66066 Update to 3.2.0 release, compatible with php 5.2.0. 2006-11-28 07:37:43 +00:00
Lars Thegler
9a0d0f4e01 Update to 1.08 2006-11-27 16:04:01 +00:00
Vanilla I. Shu
7ee7ff8b98 Change PKGNAME from sge to sdl_sge to avoid vuxml check.
Submitted by:	remko@, infofarmer@
2006-11-26 15:51:53 +00:00
Tilman Keskinoz
33faa7baa7 Update to 2.4.4 2006-11-26 15:25:52 +00:00
Dirk Meyer
f8dc60b0ec - fix build on FreeBSD5 and FreeBSD4
PR:		105149
Approved by:	(maintainer timeout)
2006-11-26 11:59:57 +00:00
Stefan Walter
d0094563b2 Update to 1.4.7. 2006-11-26 10:33:37 +00:00
Jean-Yves Lefort
dfa1f4de4b - Update openthreads to 1.5
- Update openproducer to 1.1 and move to LOCALBASE
- Update osg to 1.2 and move to LOCALBASE
- Take maintainerships

PR:		ports/105729
Submitted by:	jylefort
Approved by:	maintainers
2006-11-26 04:09:23 +00:00
Vanilla I. Shu
46bb3e21cf Move devel/sge to devel/sdl_sge. 2006-11-26 03:16:17 +00:00
Vanilla I. Shu
6711d647b4 Disconnect devel/sge, connect devel/sdl_sge. 2006-11-26 03:11:44 +00:00
Vanilla I. Shu
8a0ec63c3a Move devel/sge to devel/sdl_sge.
PR:		ports/102602
Submitted by:	maintainer
2006-11-26 03:09:43 +00:00
Joe Marcus Clarke
4da8cefd2f Update to 2.9.2.
* Replace a dead autotools link with a FreeBSD-based link instead [1]
* Replace USE_*_VER with USE_AUTOTOOLS instead [2]
* Check for a valid EXPIRATION_DATE [3]

PR:		104042 [3]
Requested by:	piotr.smyrak@heron.pl [1]
Reported by:	ahze [2]
Submitted by:	vd [3]
2006-11-25 20:02:50 +00:00
Lars Thegler
d20a139897 Update to 3.3 2006-11-25 18:04:35 +00:00
Mark Linimon
d5e3867768 Reassign ports from archie@ back to pool at his request.
Hat:		portmgr
2006-11-25 16:46:44 +00:00
Martin Wilke
c035025f69 - Update MASTER_SITES
PR:		ports/105841
Submitted by:	nivit@email.it (Nicola Vitale) (maintainer)
2006-11-25 10:15:50 +00:00
Alexander Botero-Lowry
2cfd90e3b0 - update to 0.2.3
PR:		105699
Submitted by:	Marcus von Appen <mva@sysfault.org> (maintainer)
2006-11-25 10:03:45 +00:00
Cheng-Lung Sung
0cadcadfa9 - Update to 1.27
- I'm interested in it.
2006-11-25 01:38:08 +00:00
Alexander Botero-Lowry
df09ae031f - pass py-simplejson and py-gui to python@ 2006-11-24 09:28:13 +00:00
Joe Marcus Clarke
4dcd72247d Add the "cpu model" property to the sysinfo list. 2006-11-24 07:59:41 +00:00
Cheng-Lung Sung
e52c3f6b33 - Update to 1.2 2006-11-24 00:40:48 +00:00
Cheng-Lung Sung
34faa3b92a - Update to 1.043
- maintainer to perl@
2006-11-24 00:40:23 +00:00
Shaun Amott
9fed815c9b Add a port of the modern make from FreeBSD 5.x and above. 2006-11-23 16:44:44 +00:00
Sergey Skvortsov
fe54a8282b Update to 0.1904
Changes:	http://search.cpan.org/src/GWYN/POE-Component-IKC-0.1904/Changes
2006-11-23 15:00:39 +00:00
Mark Linimon
b117aff762 Update maintainer's email address.
Submitted by:		maintainer via email
2006-11-23 09:51:59 +00:00
Stanislav Sedov
79b7275486 - Fix fetching.
Reported by:	kris
2006-11-23 08:14:44 +00:00
Cheng-Lung Sung
db612f6cc8 - Update to 3.9 2006-11-23 07:26:12 +00:00
Michael Johnson
a93f815e63 Update to 4.6.4 2006-11-23 03:43:22 +00:00
Cheng-Lung Sung
9ad4f57c87 - This upgrades devel/otrs from 2.0.4-01 to the latest release, 2.1.3.
PR:		ports/105760
Submitted by:	maintainer (Nick Barkas)
2006-11-23 03:26:35 +00:00
Joe Marcus Clarke
327a26e7fd Update to 1.0.1. 2006-11-23 02:02:02 +00:00
Joe Marcus Clarke
e09a49f340 Presenting GNOME 2.16.2 for FreeBSD. 2006-11-23 01:48:13 +00:00
Pav Lucistnik
a4c87a9b65 - Unbreak: fix build with PHP 5.2.0
Obtained from:	vendor CVS
2006-11-23 00:29:10 +00:00
Jimmy Olgeni
8bd54d39b9 Upgrade to version 2.0.3. 2006-11-22 21:27:29 +00:00
Shaun Amott
caa5b4df2d Fix build on !i386. 2006-11-22 21:24:55 +00:00
Erwin Lansing
5e2cfd98c1 Update to 3.24 2006-11-22 20:59:44 +00:00
Martin Wilke
b0cb37ded6 - Update to 0.15
PR:		ports/105754
Submitted by:	miwi
Approved by:	maintainer
2006-11-22 20:49:33 +00:00
Martin Wilke
9227f11f7d - Unbreak
- Bump PORTREVISION

PR:		ports/105749
Submitted by:	trasz
2006-11-22 20:38:47 +00:00
Martin Wilke
acaf56f9f1 - Update to 1.4.7
PR:		ports/105751
Submitted by:	Thomas Abthorpe (maintainer)
2006-11-22 20:33:34 +00:00
Erwin Lansing
20d93e24a6 Update to 0.14 2006-11-22 20:26:16 +00:00
Martin Wilke
e9b3f1f28f - Update to 0.34 2006-11-22 20:21:07 +00:00
Shaun Amott
3e73643799 Fix build on sparc64. 2006-11-22 16:48:45 +00:00
Rong-En Fan
0143d3c183 - Update to 1.53
- Add missing dependency

PR:		ports/105219
Submitted by:	Paul Dlug <paul at aps.org>
Approved by:	maintainer timeout (15 days)
2006-11-22 12:09:55 +00:00
Rong-En Fan
0e4a150c86 - Update to 0.960 2006-11-22 12:08:07 +00:00