1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-29 10:18:30 +00:00
Commit Graph

17691 Commits

Author SHA1 Message Date
Frank J. Laszlo
36f447f0df Fix plist.
Reported by: kris via pointyhat
Approved by: maintainer (implicit)
2006-12-12 01:09:07 +00:00
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