aboutsummaryrefslogtreecommitdiffstats
path: root/devel
Commit message (Collapse)AuthorAgeFilesLines
* Fix annoying error in `ld' build process.lev2008-01-301-0/+41
| | | | | PR: ports/119688 Submitted by: Naram Qashat
* Update to latest 4.2.1lev2008-01-3011-2524/+4661
|
* - Update to 2.9clsung2008-01-302-4/+4
| | | | Changes: http://search.cpan.org/dist/AnyEvent/Changes
* - Update to 0.11clsung2008-01-303-9/+20
| | | | Changes: http://search.cpan.org/dist/IO-Async/Changes
* - Update to 0.27clsung2008-01-303-5/+7
| | | | Changes: http://search.cpan.org/dist/forks/CHANGELOG
* - Update to 1.12leeym2008-01-302-4/+4
| | | | | | PR: 119882 Submitted by: leeym Approved by: maintainer
* - update to 2.1.1clsung2008-01-303-6/+7
| | | | | | Changes: PR: ports/119087 Submitted by: TAKATSU Tomonari <tota_AT_rtfm dot jp>
* - Update to 0.6.4clsung2008-01-304-19/+8
| | | | | | | | - Reset maintainership Changes: PR: ports/115052 Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org>
* - Update to 0.82rafan2008-01-302-4/+4
|
* Change the previous BROKEN into MANUAL_PACKAGE_BUILD as it'serwin2008-01-301-1/+1
| | | | | | caused by the old CPU architecture in the pointyhat nodes. Submitted by: az
* Mark BROKEN with GCC 4.2erwin2008-01-301-0/+2
|
* - Update `devel/libixp' to version 0.4 [1]danfe2008-01-293-20/+36
| | | | | | | | | | | | - Update `x11-wm/wmii' to version 3.6 [2] - Remove CENKES as they do not carry new distfiles - Minor tweaks in pkg-descr for `devel/libixp' PRs: ports/119281 [1] ports/119282 [2] Submitted by: Daniel Roethlisberger Reworked by: danfe (myself) Go ahead from: sat (maintainer) [1]
* Update to r3.14.a3.11lev2008-01-293-8/+10
| | | | PR: ports/119366
* Add proper CONFLICTS clauses.lev2008-01-2910-4/+10
| | | | | PR: ports/119782 Submitted by: TAOKA Fumiyoshi
* Download compressed book [1]lev2008-01-2912-304/+228
| | | | | | | | Change some hard-coded paths to variables [1] Fix pkg-plist for Java bindings [2] PR: ports/119782 [1], ports/117357 [2] Submitted by: TAOKA Fumiyoshi [1], bf [2]
* - Update to 1.1.0miwi2008-01-293-9/+10
| | | | | | PR: 119749 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> Approved by: maintainer
* Add SHA256 checksum for alpha binarieslth2008-01-296-24/+24
| | | | | PR: ports/118192 Submitted by: Philip M. Gollucci <pgollucci@p6m7g8.com>
* Update to 2.2.5skv2008-01-293-4/+5
| | | | Changes: http://lists.otrs.org/pipermail/announce/2008/000084.html
* - Update to 1.22tabthorpe2008-01-292-6/+5
| | | | | | PR: ports/120079 Submitted by: Philippe Audeoud <jadawin tuxaco.net> Approved by: Martin Jackson <mhjacks swbell.net> (maintainer)
* Add PHP and Python to the list of supported languages.thierry2008-01-291-1/+1
| | | | Notified by: Bruno Pages <bouml (at) free.fr> (Author)
* Update to 4.0_1: this actually installs the Python generator.thierry2008-01-293-6/+7
|
* Add bunny, a closed loop, high-performance, general purpose protocol-blindehaupt2008-01-294-0/+55
| | | | | | | | | | | | | fuzzer for C programs. Uses compiler-level integration to seamlessly inject precise and reliable instrumentation hooks into the traced program. These hooks enable the fuzzer to receive real-time feedback on changes to the function call path, call parameters, and return values in response to variations in input data. This architecture makes it possible to significantly improve the coverage of the testing process without a noticeable performance impact usually associated with other attempts to peek into run-time internals.
* Update to 2.20.4.mezz2008-01-293-4/+7
|
* Installing DecoratorTools gives access to the peak.util.decorators module.dryice2008-01-284-0/+39
| | | | | | | | | | | | The tools in this module have been bundled for years inside of PEAK, PyProtocols, RuleDispatch, and the zope.interface package, so they have been widely used and tested. Recent versions of the TurboGears framework (ported to FreeBSD as www/py-turbogears) require the DecoratorTools package. PR: ports/119835 Submitted by: alexander smishlajev <alex@ank-sia.com>
* The peak.util.extremes module provides a production-quality implementationdryice2008-01-285-0/+45
| | | | | | | of the Min and Max objects from PEP 326. PR: ports/119915 Submitted by: alexander smishlajev <alex@tycobka.lv>
* - Disable regression tests on pointyhat - they are trying to allocate infinitepav2008-01-281-0/+2
| | | | | | amount of memory With hat: portmgr
* - update URL in pkg-descrleeym2008-01-281-1/+1
|
* Upgrade to 4.0.thierry2008-01-283-5/+27
|
* Upgrade to 4.0: adding support of Python.thierry2008-01-282-5/+4
| | | | | | | Author's note : this is a beta version, I encourage you to backup your projects before using it. Changelog available at <http://bouml.free.fr/historic.html>.
* - Forgot to up the PORTREVISIONdb2008-01-281-1/+1
| | | | Pointyhat to: myself
* - The x86 inline assembler version of the SDL macro SDL_revcpy() sets thedb2008-01-281-0/+10
| | | | | | | | | | | | | | | direction flag ("std"), but does not clear it ("cld"). This is invalid according to GCC (inline assembler, which sets the direction flag, must reset it[0]) and the SYS V ABI (functions must leave with the direction flag cleared[1]). The macro is (indirectly, exact call sequence below) used in SDL_BlitSurface(), so this call sometimes returns with the direction flag set. This happens for bliting a surface onto itself with the destination coordinates set right/down of the source coordinates (typical use of this is scrolling left/up). Later on other parts of the code (like inlined memcpy()) cause memory corruption. [1] - Give maintaintership to submitter (as discussed on irc) PR: ports/120052 [1]
* Update to 0.06lbr2008-01-282-10/+8
|
* Update to 0.36lbr2008-01-282-4/+4
|
* Mark BROKEN: does not installerwin2008-01-281-0/+2
|
* - Fix a typo (Last update broke some dependent ports)miwi2008-01-271-1/+2
| | | | | | PR: 119084 Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> Approved by: maintainer timeout (3 week)
* - Mark IGNORE on FreeBSD 7.x and up, kernel module cannot be loadedpav2008-01-271-0/+4
| | | | | | PR: ports/118972 Submitted by: Marcus von Appen <mva@sysfault.org> Approved by: maintainer timeout (jylefort; 1 month)
* - Update to 0.14.0miwi2008-01-273-8/+9
| | | | | PR: 119796 Submitted by: Marcus von Appen <mva@sysfault.org> (maintainer)
* - Pass maintainership to the last submittermiwi2008-01-271-1/+1
| | | | Submitted by: Marcus von Appen <mva@sysfault.org> (request via irc)
* Add support for FreeBSD 7.x.ale2008-01-261-0/+3
| | | | | PR: ports/120004 Submitted by: Cristian KLEIN <cristi@net.utcluj.ro>
* paexec -- Parallel executor, distributes tasks over network.chinsan2008-01-265-0/+71
| | | | | | | | paexec distributes performing the given tasks across several CPUs or machines on a network and collects the results from those CPUs/machines WWW: http://sourceforge.net/projects/paexec
* The LIBMAA library provides many low-level data structures which arechinsan2008-01-267-0/+86
| | | | | | | | | | | | | helpful for writing compilers, including hash tables, sets, lists, debugging support, and memory management. Although LIBMAA was designed and implemented as a foundation for the Khepera Transformation System, the data structures are generally applicable to a wide range of programming problems. The memory management routines are especially helpful for improving the performance of memory-intensive applications. WWW: http://www.dict.org/
* pipestatus - source file for POSIX shell that allowschinsan2008-01-264-0/+59
| | | | | | | | | | | | | | | | | | | | | | to obtain an exit status of every program in a pipe. MOTIVATION When we program in shell we often run pipes like this prog1 args1 | prog2 args2 | ... | progN argsN POSIX says that exit status of pipe is the exit status of LAST program in it, i.e. progN in our example. That is, exit status of all other programs in pipe is silently ignored. But in many situations exit status of all programs in pipe should be checked to make program robust. Some shells like BASH and ZSH have special extensions for doing this but POSIX shell unfortunately doesn't provide an EASY way for doing this. In order to solve the problem, described above pipestatus was written. WWW: http://sourceforge.net/projects/pipestatus/
* Update to 2.14.11.kwm2008-01-262-4/+4
| | | | Small bug fix release.
* - Update to 1.7.1chinsan2008-01-252-7/+14
| | | | - Changelog: http://pear.php.net/package/PEAR_Info/download/
* - Update to 1.31chinsan2008-01-252-4/+4
| | | | - Changelog: http://search.cpan.org/dist/Term-Menus/ChangeLog
* - Update to 0.07clsung2008-01-252-4/+4
| | | | | | Changes: PR: ports/119941 Submitted by: maintainer (<hideo_AT_lastamericanempire dot com>)
* - Update to 0.6.1miwi2008-01-252-4/+4
| | | | | PR: 119950 Submitted by: Max Brazhnikov <makc@issp.ac.ru> (maintainer)
* update to0.5a0.dev-r2306. Thanks alexander smishlajev <alex@ank-sia.com> for ↵dryice2008-01-252-8/+7
| | | | pointing out.
* Reset maintainer: aquatique-ports@rambler.ru bounces.linimon2008-01-241-1/+1
|
* Add p5-Class-Workflow 0.08, lightweight workflow system.skv2008-01-245-0/+81
|
* - Update to 3.2700 (3.27)clsung2008-01-242-5/+6
| | | | Changes: http://search.cpan.org/dist/PathTools/Changes
* Consistent hashing is a scheme that provides hash table functionalityclsung2008-01-245-0/+45
| | | | | | | | | | | | | | | | in a way that the addition or removal of one slot does not significantly change the mapping of keys to slots. In contrast, in most traditional hash tables, a change in the number of array slots causes nearly all keys to be remapped. Consistent hashing was introduced in 1997 as a way of distributing requests among a changing population of web servers. More recently, it and similar techniques have been employed in distributed hash tables. WWW: http://search.cpan.org/dist/Set-ConsistentHash/ PR: ports/119587 Submitted by: Gea-Suan Lin <gslin at gslin.org>
* Gearman client libraray for PHP.clsung2008-01-249-0/+109
| | | | | | | WWW: http://bugs.joestump.net/code/Net_Gearman/ PR: ports/119586 Submitted by: Gea-Suan Lin <gslin at gslin.org>
* Update to 0.35lbr2008-01-242-5/+5
|
* Update to 0.52lbr2008-01-242-4/+4
|
* - Pass maintainership to Daniel Rucci <dan@rucci.org>beech2008-01-231-1/+1
| | | | Approved by: linimon (mentor)
* Update to 0.34. See http://search.cpan.org/src/STEVAN/Moose-0.34/Changeslbr2008-01-233-4/+24
|
* Fix gem command after last update.delphij2008-01-232-2/+2
| | | | | PR: ports/119664 Submitted by: maintainer
* - update to 0.10leeym2008-01-232-4/+4
|
* - update to 5.10leeym2008-01-233-24/+5
|
* - Update to 1.4.10. [1]perky2008-01-223-52/+57
| | | | | | | - Drop maintainership. PR: ports/119206 Submitted by: Martin Dieringer <martin.dieringer@gmx.de>
* - Update to 20071205leeym2008-01-222-4/+4
| | | | | | PR: 119112 Submitted by: leeym Approved by: maintainer timeout
* - Update to 0.1.11miwi2008-01-222-4/+4
| | | | | PR: 119871 Submitted by: Ulrich Spoerlein <uspoerlein@gmail.com> (maintainer)
* - Update to 0.2.6miwi2008-01-223-154/+4
| | | | | PR: 119872 Submitted by: Ulrich Spoerlein <uspoerlein@gmail.com> (maintainer)
* Update to cook 2.30.jasone2008-01-213-6/+7
|
* * Update to 2.01vsevolod2008-01-215-19/+60
| | | | | | * Respect -O flags in CFLAGS Reported by: pav
* - Update to 0.17.2 [1]perky2008-01-212-5/+5
| | | | | | | - Drop maintainership PR: ports/119811 [1] Submitted by: Marcus von Appen <mva@sysfault.org> [1]
* - Update to 0.26.1. [1]perky2008-01-213-15/+24
| | | | | | | - Drop maintainership. PR: ports/119810 [1] Submitted by: Marcus von Appen <mva@sysfault.org> [1]
* - Fix core-dump issue when executing make test.beech2008-01-213-3/+27
| | | | | | | | - Bump portrevision PR: ports/119539 Submitted by: Daniel Rucci <dan@rucci.org> Approved by: linimon (mentor)
* - Update to 5.1.2miwi2008-01-214-27/+8
| | | | | PR: 119721 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
* The SPL_Types extension is a collection of special typehandling classes.miwi2008-01-214-0/+37
| | | | | | | WWW: http://pecl.php.net/package/SPL_Types/ PR: ports/119678 Submitted by: Ditesh Shashikant Gathani <ditesh at gathani.org>
* The automap extension is a fast map-based autoloader.miwi2008-01-214-0/+36
| | | | | | | WWW: http://pecl.php.net/package/automap/ PR: ports/119827 Submitted by: Ditesh Shashikant Gathani <ditesh at gathani.org>
* - Update to 1.0amiwi2008-01-218-48/+86
| | | | | PR: 119798 Submitted by: peter.schuller@infidyne.com (maintainer)
* - Update to 1.5.0miwi2008-01-212-30/+9
|
* - Update to 1.1.0miwi2008-01-212-4/+4
| | | | | PR: 119677 Submitted by: Matthew D. Fuller <fullermd@over-yonder.net> (maintainer)
* - Update to 1.1miwi2008-01-216-26/+50
| | | | | PR: 119676 Submitted by: Matthew D. Fuller <fullermd@over-yonder.net> (maintainer)
* - Update to 0.93.0miwi2008-01-213-13/+22
| | | | | PR: 119146 Submitted by: Radim Kolar SF.NET <hsn@sendmail.cz> (maintainer)
* - Update to 0.28miwi2008-01-202-4/+4
|
* - Update to 2.1.araujo2008-01-202-7/+6
| | | | Approved by: stas (mentor, implicit)
* devel/p5-gearmand is replaced by devel/p5-Gearman-Serverrafan2008-01-204-72/+0
| | | | | PR: ports/116611 Submitted by: Vivek Khera <vivek at khera.org> (maintainer)
* - Update to 1.68.araujo2008-01-202-4/+5
| | | | | | PR: ports/119763 Submitted by: Felippe de Meirelles Motta <lippemail@gmail.com> Approved by: Craig Manley <cmanley@xs4all.nl> (maintainer), itetcu (mentor, implicit)
* Update to 1.38 (no relevant changes)lbr2008-01-202-4/+4
|
* The Abilities of LibRCC Librarypav2008-01-206-0/+226
| | | | | | | | | | | | | | | | | | | | | | | | =============================== * Language Autodetection * On the fly translation between languages, using online-services! * Encoding Autodetection for most of European Languages1 * Support for encoding detection plugins (besides Enca and LibRCD) * Recoding/translation of multi-language playlists! * Cache to speed-up re-recoding. * Possibility to configure new languages and encodings. * Shared configuration file. For example mentioned TagLib and LibID3 patches do not have their own user interface, but will utilize the same recoding configuration as XMMS. * As well the separate program for configuration adjustment is available. * GTK/GTK2 UI Library: you can add properties page to your GTK application with 3 lines of code. * Menu localization opportunity WWW: http://rusxmms.sourceforge.net PR: ports/119187 Submitted by: Ulrich Spoerlein <uspoerlein@gmail.com>
* Library used by ruxmms for autodetection of russian charsetpav2008-01-205-0/+33
| | | | | | | WWW: http://rusxmms.sourceforge.net/ PR: ports/119187 Submitted by: Ulrich Spoerlein <uspoerlein@gmail.comm>
* - Update to 0.17.4tabthorpe2008-01-192-4/+4
|
* Nuke NLS as I obviously didn't support it properly.bms2008-01-192-6/+2
| | | | Noticed by: pav
* Update to 2.0.1arved2008-01-193-7/+7
|
* Chase a silent update.thierry2008-01-192-3/+4
| | | | | | | Full diff available at <http://people.freebsd.org/~thierry/ports/bouml_3.5_080114_080115.diff>. Reported by: V.Chukharev <chukharev (at) mail.ru>
* Cleanup empty directories too.arved2008-01-192-1/+3
| | | | | Reported by: pointhat pointyhat^2 to: arved
* - Update to 1.0.14garga2008-01-182-5/+4
| | | | | PR: ports/119768 Submitted by: maintainer
* - fix builddinoex2008-01-182-3/+24
| | | | - require gettetxt
* Add missing manpage.skv2008-01-181-0/+2
| | | | Pointed by: pav
* Forgot to cvs add this file in the previous commit.joerg2008-01-181-0/+11
|
* Move the pkg-config file from ${prefix}/lib to ${prefix}libdata.joerg2008-01-182-3/+3
| | | | While being here, remove the now obsolete SSLDEBUG option.
* Fix USE_RC_SUBR after I renamed the script.flz2008-01-181-1/+1
| | | | | Reported by: pavbot Approved by: anholt (maintainer, implicit)
* - Update to 0.17.3tabthorpe2008-01-172-4/+4
| | | | - Changelog at http://pear.php.net/package/Date_Holidays/download/
* - Unbreak on sparc64tabthorpe2008-01-172-7/+21
| | | | | * Thanks to upline developer Carlo Wood for the patch * Thanks to Carl Johan Gustavsson for the sparc64 build test
* Rename git-daemon.in to git_daemon.in.flz2008-01-171-0/+0
| | | | | Suggested by: dougb Approved by: anholt (maintainer, implicit)
* upgrade to 1.38ijliao2008-01-172-4/+4
| | | | Submitted by: maintainer via irc
* - Update the port to 1.5.3.8.flz2008-01-175-316/+65
| | | | | | | | | | | | - Fix handling of OPTIONS as WITHOUT_GUI wouldn trigger the dependency on Tk. - Add some more manpages, and install GUI-related manpages only when necessary. - Silence some commands. - Install git-daemon rc script. - Add git-shell to /etc/shells. PR: ports/119728 Submitted by: flz Approved by: anholt (maintainer)
* Update to 0.51lbr2008-01-162-4/+4
|
* Upgrade to version 2.6.2. This is the latest 2.x version. As ofjoerg2008-01-168-142/+101
| | | | | | | version 3.x (which is still very recent), the author has chosen to no longer host the files on sourceforge.net, so I rather picked 2.x. This is a prerequisite port for aqbanki.
* Upgrade iReport to 2.0.4.thierry2008-01-163-6/+5
| | | | | Changelog at <https://sourceforge.net/project/shownotes.php?release_id=568868>.
* Update to 0.03skv2008-01-162-5/+5
| | | | Changes: http://search.cpan.org/src/RCAPUTO/POE-Stage-0.03/CHANGES
* Update to 1.08skv2008-01-162-4/+4
|
* Add p5-SVN-S4 1.022, wrapper for subversion program.skv2008-01-165-0/+57
|
* Update to 0.16skv2008-01-162-4/+4
|
* - Update to 2.18mm2008-01-153-9/+6
| | | | | | | | | - Unbreak - Fix COMMENT PR: ports/117807 Submitted by: Max Brazhnikov <makc at issp.ac.ru> Approved by: maintainer timeout
* Upgrade to 3.5.thierry2008-01-152-4/+4
| | | | Changelog at <http://bouml.sourceforge.net/historic.html>.
* - use Emacs 22 by defaultdryice2008-01-151-3/+3
| | | | - update my mail address
* - Update to 3.07clsung2008-01-152-4/+4
| | | | Changes: http://search.cpan.org/dist/Test-Harness/Changes
* - Update to 0.05clsung2008-01-152-4/+4
| | | | Changes: http://search.cpan.org/dist/Time-Duration-Parse/Changes
* - Mark as BROKEN for sparc64tabthorpe2008-01-151-2/+7
| | | | - Remove 4.X cruft while I am here
* Update to 1.6.tobez2008-01-142-4/+4
| | | | Changes: http://search.cpan.org/dist/PadWalker/Changes
* Missed two new distinfo fileslth2008-01-1412-0/+180
|
* - Update to 2007.3lth2008-01-1424-336/+342
| | | | - Also see: http://www.perforce.com/perforce/doc.073/user/relnotes.txt
* . update to a new version 1.1.20071028;bsam2008-01-143-6/+6
| | | | | | | | . add an option (-i "") to REINPLACE_CMD, thus no need to remove *.bak. PR: 119602 Submitted by: bsam (me) Approved by: Martin Tournoij <carpetsmoker at xs4all.nl> (maintainer)
* - update to 2.0.4dinoex2008-01-143-4/+15
| | | | - GPLV3
* - update to 1.2.2dinoex2008-01-142-4/+5
|
* libopkele is a c++ implementation of an OpenID decentralized identitymiwi2008-01-146-0/+71
| | | | | | | | | | system. It provides OpenID protocol handling, leaving authentication and user interaction to the implementor. WWW: http://kin.klever.net/libopkele/ PR: ports/119628 Submitted by: Sutra Zhou <zhoushuqun at gmail.com>
* QSvn is a graphical Subversion Client for Linux, UNIX, Windows andmiwi2008-01-146-0/+94
| | | | | | | | | | | Mac OS X. It uses the Subversion API for all Subversion actions and the Qt4 C++ toolkit from Trolltech for platform independent programming. WWW: http://ar.oszine.de/projects/qsvn/ PR: ports/119627 Submitted by: Max Brazhnikov <makc at issp.ac.ru>
* - Update to 1.4.6mm2008-01-1412-88/+88
| | | | | | | | - Add OPTIONS PR: ports/119152 Submitted by: mm Approved by: maintainer (timeout)
* - Update to 1.47.0 (1.470)clsung2008-01-143-4/+7
| | | | Changes: http://search.cpan.org/dist/Module-Starter/Changes
* update to 0.10.1dryice2008-01-144-14/+48
|
* update to 0.30dryice2008-01-142-4/+4
|
* TheSchwartz is a reliable job queue system. Your application can putaraujo2008-01-145-0/+52
| | | | | | | | | | | | jobs into the system, and your worker processes can pull jobs from the queue atomically to perform. Failed jobs can be left in the queue to retry later. WWW: http://search.cpan.org/dist/TheSchwartz/ PR: ports/119549 Submitted by: Gean-Suan Lin <gslin@gslin.org> Approved by: stas (mentor, implicit)
* Update to 3.4.1.kwm2008-01-143-4/+42
|
* - Update to 1.0.8chinsan2008-01-142-4/+4
| | | | - Changelog: http://pear.php.net/package/Console_Table/download/
* - Update to 5.6 snapshot 20080112rafan2008-01-132-1/+7
|
* - Fix MASTER_SITESnivit2008-01-131-1/+1
| | | | Reported by: pointyhat via erwin
* Update to 2.0.0.0.obraun2008-01-133-5/+19
|
* Update to 0.08001lbr2008-01-132-4/+4
|
* Update to 0.13lbr2008-01-132-4/+4
|
* - Update to 0.2.1miwi2008-01-122-4/+4
|
* Update to the new version 1.3.6.bsam2008-01-123-6/+164
| | | | | | PR: 119533 Submitted by: bsam (me) Approved by: Robert Gogolok <gogo at cs.uni-sb.de> (maintainer)
* - Update to version 4.22.2.alepulver2008-01-122-6/+5
|
* - Bump PORTREVISION.alepulver2008-01-122-2/+4
| | | | | - Add note in build.xml to indicate it's from the FreeBSD port (as Makefiles). - Add "test" directory to the sources, which was previously omitted.
* Pass PTHREAD_LIBS to configure script to fix segfault when used with avahiahze2008-01-121-2/+3
| | | | | PR: ports/117849 Submitted by: Robert Noland
* - Update to 3.7.2clsung2008-01-112-4/+4
| | | | Changes:
* - Update to 2.8miwi2008-01-112-4/+4
| | | | | PR: 119498 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
* - Update to 0.10.0miwi2008-01-113-5/+62
| | | | | PR: 119059 Submitted by: Robert Gogolok <gogo@cs.uni-sb.de> (maintainer)
* - Update to 0.10.1miwi2008-01-113-14/+24
| | | | | PR: 119059 Submitted by: Robert Gogolok <gogo@cs.uni-sb.de> (maintainer)
* - Drop maintainershipmiwi2008-01-111-1/+1
| | | | | PR: 119410 Submitted by: Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw> (maintainer)
* Event::Notify implements a simple Observer pattern.miwi2008-01-115-0/+37
| | | | | | | WWW: http://search.cpan.org/dist/Event-Notify/ PR: ports/119359 Submitted by: Masahiro Teramoto <markun at onohara.to>
* Update devel/p5-Scalar-Util-Clone from version 0.04 to 0.10.delphij2008-01-112-4/+4
| | | | | Submitted by: maintainer PR: ports/119495
* A try to fix package building at the ports cluster for FreeBSD-5.bsam2008-01-111-0/+2
|
* Fix the installation when gtk-doc is not installed.marcus2008-01-111-0/+13
|
* Unbreak a package building for FreeBSD-5 (convert easy_installbsam2008-01-112-47/+35
| | | | | | | | | support to bsd.python.mk). PR: 119531 Submitted by: bsam (me) Suggested by: nivit (thanks!) Approved by: Robert Gogolok <gogo at cs.uni-sb.de> (maintainer)
* Add py-polib 0.3.1, a python library to parse and manage gettextlwhsu2008-01-115-0/+40
| | | | | | | catalogs. PR: ports/119527 Submitted by: Oleg Ukraincev <oleg at ht-systems.ru>
* bitlib is a tiny library for bitwise operations.rafan2008-01-104-0/+36
| | | | WWW: http://luaforge.net/projects/bitlib/
* - Update to 1.0nivit2008-01-102-5/+5
|
* - Update to 0.2.8lwhsu2008-01-102-5/+4
| | | | | PR: ports/119523 Submitted by: Marcus von Appen <mva AT sysfault.org>
* Update to 0.1.5delphij2008-01-102-5/+4
|
* Update to 0.6.1.marcus2008-01-103-169/+190
|
* Add goffice04 after a repocopy from devel/goffice. Goffice04 is the latestmarcus2008-01-104-97/+15
| | | | goffice version 0.4 API which is still required by a few ports.
* - Update to 0.74clsung2008-01-102-5/+5
| | | | Changes: http://search.cpan.org/dist/version/Changes
* - Update to 0.68clsung2008-01-102-6/+5
| | | | Changes: http://search.cpan.org/dist/Module-Install/Changes
* Update to 0.17.marcus2008-01-103-5/+10
|
* - Update to version 1.2.1.alepulver2008-01-104-66/+91
| | | | - Build from source instead of installing (add an Ant build.xml file for this).
* - Change the order of include dirs to fix compilation in case whenstas2008-01-101-0/+11
| | | | | | | Adobe Flash(R) is installed. Otherwise jtag will try to include installed flash.h first. Reported by: Bruce M Simpson <bms@incunabulum.net>
* Update to version 2.0.8hq2008-01-102-6/+6
| | | | | PR: 119455 Submitted by: Tomas Verbaitis <tomasv@megalogika.lt>
* - Convert easy_install support to bsd.python.mknivit2008-01-104-32/+6
| | | | - Replace pkg-plist with PLIST_FILES
* - Fix download site and add a secondary onenivit2008-01-101-1/+2
|
* ``virtualenv`` is a tool to create isolated Python environments.nivit2008-01-098-0/+103
| | | | | | | | | | It creates an environment that has its own installation directories, that doesn't share libraries with other virtualenv environments (and optionally doesn't use the globally installed libraries either). Usage: virtualenv YOUR_NEW_PYTHON_ENV WWW: http://pypi.python.org/pypi/virtualenv
* - Update to 3.7.1clsung2008-01-093-88/+81
| | | | Changes:
* - Update to 3.6.6clsung2008-01-092-5/+5
| | | | Changes:
* - update to 1.1.8clsung2008-01-093-114/+113
| | | | | PR: ports/119088 Submitted by: maintainer (TAKATSU Tomonari)
* - update to 1.4.0clsung2008-01-092-5/+5
| | | | | | | | - make portlint happy PR: ports/119086 Submitted by: TAKATSU Tomonari <tota_AT_rtfm dot jp> Approved by: maintainer (Jonathan Weiss)
* - update to 0.8.1clsung2008-01-093-112/+131
| | | | | | PR: ports/119083 Submitted by: TAKATSU Tomonari <tota_AT_rtfm dot jp> Approved by: maintainer (Jonathan Weiss)
* - bad softlinkclsung2008-01-091-2/+2
| | | | | | | | - bump PORTREVISION Pointyhat to: clsung (me) Changes: Approved by: maintainer (implicit)
* Update to 0.14.tobez2008-01-092-4/+4
| | | | Changes: http://search.cpan.org/dist/Scalar-Defer/Changes
* Fix pkg-message.thierry2008-01-091-1/+1
| | | | | PR: ports/119459 Submitted by: Pietro Cerutti <gahr (at) gahr.ch>
* Fix pkg-plistarved2008-01-092-0/+3
| | | | Reported by: pointyhat
* - Update to 1.6lwhsu2008-01-082-5/+5
| | | | - Grab maintainership for python@
* - Update to 1.16lwhsu2008-01-082-4/+4
|
* - Update to 4.23lwhsu2008-01-082-4/+4
|
* - Update to 0.22clsung2008-01-082-5/+4
| | | | Changes: http://search.cpan.org/dist/Module-ExtractUse/Changes
* Update to 2.20.1.mezz2008-01-083-6/+6
|
* Update to 2.14.5.marcus2008-01-082-4/+4
|
* - Update to 0.10clsung2008-01-082-4/+7
| | | | Changes: http://search.cpan.org/dist/IO-Async/Changes
* Upgrade to version 0.1.2.3.joerg2008-01-086-287/+8
|
* Update to 2.14.1.mezz2008-01-082-4/+5
|
* fix plist turdsbms2008-01-081-0/+5
| | | | Submitted by: wxs
* Update to 0.9601erwin2008-01-082-10/+2
|
* Update to 0.9601erwin2008-01-082-8/+4
|
* - Update to 0.3.6clsung2008-01-073-4/+6
| | | | Changes:
* Update to 0.11.tobez2008-01-072-4/+4
| | | | Changes: http://search.cpan.org/dist/Algorithm-Permute/Changes
* - update to 0.61leeym2008-01-072-4/+4
|
* - Update to 1.00clsung2008-01-073-9/+8
| | | | | | | | - Reset maintainership Changes: http://search.cpan.org/dist/Test-MockRandom/Changes PR: ports/119402 Submitted by: Jin-Shan Tseng <tjs_AT_cdpa dot nsysu dot edu dot tw>
* - Update to 0.04clsung2008-01-072-4/+4
| | | | Changes: http://search.cpan.org/dist/Time-Duration-Parse/Changes
* - Update to 0.11clsung2008-01-073-9/+14
| | | | | | | | - reset maintainership Changes: http://search.cpan.org/dist/Test-Dependencies/Changes PR: ports/119401 Submitted by: Jin-Shan Tseng <tjs_AT_cdpa dot nsysu dot edu dot tw>
* - Update to 0.24clsung2008-01-072-4/+4
| | | | Changes:
* Update to 0.14.1.delphij2008-01-078-20/+66
| | | | | PR: ports/119335 Submitted by: maintainer (yuanjue)
* - default not to write to source_cache fileclsung2008-01-075-3/+51
| | | | | | | | | | | | | | | - add --no-update-sources in Makefile.common (thanks to Alexander Logvinov) - files/patch-lib-rubygems-source_info_cache.rb fix when try_file() write 4 bytes into source_cache even DEFAULT_UPDATE_SOURCES is false - files/patch-lib-rubygems-installer.rb - do not write to .require_paths file - currently we don't need it - link bin/gem18 to bin/gem - bump PORTERVISION PR: ports/119051 Submitted by: clsung Approved by: maintainer (Jonathan Weiss)
* try to fix build on -current; I have no -current system to test with, andbms2008-01-071-3/+11
| | | | it builds fine on all my systems here.
* - Update to 0.17.2tabthorpe2008-01-072-4/+8
| | | | | - Added drivers and filters for Netherlands and Norway. - Changelog at <http://pear.php.net/package/Date_Holidays/download/>
* . polish DISTNAME;bsam2008-01-062-5/+5
| | | | . update to version 2.0.1.
* Remove IGNORE for PACKAGE_BUILDING: can't reproduce it at my tinderbox.bsam2008-01-061-4/+0
| | | | Let's hope the problem vanished.
* Remove MANUAL_PACKAGE_BUILD. I hope the port will get a package.bsam2008-01-061-1/+0
| | | | | | | At least it does at my tinderbox. PR: 119355 Submitted by: bsam (me)
* - fix the broken link and use the non-versioned dist page insteadleeym2008-01-061-1/+1
|
* - Update to 1.09clsung2008-01-052-4/+4
| | | | Changes: http://search.cpan.org/dist/Class-InsideOut/Changes
* - Update to 2.8clsung2008-01-053-7/+8
| | | | Changes: http://search.cpan.org/dist/AnyEvent/Changes
* Fix an include file clash with Shockwave Flash.bms2008-01-052-0/+22
|
* - Update to 0.14clsung2008-01-053-6/+5
| | | | Changes:
* - Update to 0.040clsung2008-01-052-4/+4
| | | | Changes: http://search.cpan.org/dist/IPC-Run3/Changes
* - Update to 1.37clsung2008-01-052-6/+5
| | | | Changes:
* - Update to 3.06clsung2008-01-052-6/+5
| | | | Changes: http://search.cpan.org/dist/Test-Harness/Changes
* - Update to 0.13clsung2008-01-052-4/+4
|
* Add new port urjtag, a more recently maintained version of openwince jtagbms2008-01-057-0/+350
| | | | which can run on any platform supported by FreeBSD's ppi(4) driver and more.
* - Remove devel/cook and devel/fhist dependencies (optional).alepulver2008-01-052-3/+11
| | | | | - Add a note in pkg-message about them. - Bump PORTREVISION.
* Fix build with ghc 6.8.2.obraun2008-01-056-0/+76
|
* Aegis is a transaction-based software configuration management system. Italepulver2008-01-056-0/+345
| | | | | | | | | | | | | | | | | | | | | | | | | | provides a framework within which a team of developers may work on many changes to a program independently, and Aegis coordinates integrating these changes back into the master source of the program, with as little disruption as possible. Some key features: * All operations on the repository are based on change sets. * True configurations. All changes are reproducible snapshots. Every change set has a unique configuration identifier. * Ability to rename files without losing their history. * Binary files are supported. * File meta-data are versioned. Aegis versions permissions also. * Commits are truly atomic. No part of a commit takes effect until the entire commit has succeeded. Log messages are attached to the change set, not stored redundantly in each file. * Access controls on lines of development (branches). Creating a branch in Aegis can be accomplished with a single, fast command. * Repository synchronization, geographically distributed development. * Optimal performance for all users, local or remote (no difference). * Disconnected commits. * Peer-to-peer architecture. Work may flow in without involving a master site. * Costs are proportional to change size, not data size. WWW: http://aegis.sourceforge.net/
* Update to 0.9.obraun2008-01-053-9/+9
|
* The distfile has moved and changed name, but the size and checksums haven't.des2008-01-042-8/+5
|
* - Update to 0.27clsung2008-01-042-6/+5
|
* Don't use wget, fetch works fine.des2008-01-041-5/+0
| | | | Approved by: maintainer timeout (17 days)
* - Update to version 0.6.2.alepulver2008-01-042-4/+4
|
* - remove unwanted fileleeym2008-01-042-2/+3
|
* - Update to 1.4.1miwi2008-01-042-36/+21
| | | | | PR: 119230 Submitted by: Gerrit Beine <gerrit.beine@gmx.de> (maintainer)
* - Update to 4.7fmiwi2008-01-042-5/+5
| | | | | PR: 119242 Submitted by: Thomas Vogt <thomas@bsdunix.ch> (maintainer)
* Remove BROKEN: fetches again.erwin2008-01-041-2/+0
|
* Add new port Piklab: a KDE IDE for PIC development.bms2008-01-035-0/+139
| | | | With help from lofi@.
* Update to 2007.2.141782.bms2008-01-032-4/+4
|
* Add a patch to fix handling of .core files.arved2008-01-033-2/+13
| | | | | PR: 116422 Submitted by: Artem Naluzhnyy
* - Update to 0.13.5miwi2008-01-033-10/+10
| | | | | PR: 119163 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
* Add rubygem-open4, another variant to exeute programs from rubyarved2008-01-035-0/+42
|
* This module provides a simple interface for monitoringmiwi2008-01-035-0/+47
| | | | | | | | | | | one or more files or directories and reporting any changes that are made to them. Author: Andy Armstrong <andy@hexten.net> WWW: http://search.cpan.org/~andya/File-Monitor/ PR: ports/119131 Submitted by: Masahiro Teramoto <markun at onohara.to>
* - Bump PORTREVISION since devel/libevent are updated.mnag2008-01-036-9/+11
|
* - Update to 1.3emnag2008-01-033-6/+6
| | | | | PR: 117581 Submitted by: bf <bf2006a___yahoo.com>
* Update to 1.06.01 (distversion 1.0601)lth2008-01-022-4/+5
|
* Update to 2.20.3.marcus2008-01-022-4/+4
|
* Update to 2.0arved2008-01-023-12/+15
|
* - Update to 0.10.3.araujo2008-01-022-4/+4
| | | | Approved by: stas (mentor, implicit)
* Upgrade to 3.4.1.thierry2008-01-022-5/+4
| | | | Changelog at <http://bouml.free.fr/historic.html>.
* - Remove dependency on wgetrafan2008-01-011-8/+0
| | | | | PR: ports/119229 Submitted by: Gerrit Beine <gerrit.beine at gmx.de> (maintainer)
* - We only need avahi-app not the entire suite [*]ahze2008-01-012-7/+9
| | | | | | | - Update to latest avahi patch PR: ports/119034 [*] Submitted by: Dima Panov [*]
* - Update to 0.2.4rafan2008-01-012-4/+4
| | | | | PR: ports/119198 Submitted by: Marcus von Appen <mva at sysfault.org> (maintainer)
* - s/INSTALL_MAN/INSTALL_DATA/ for example fileslme2008-01-011-10/+10
| | | | | | | - It's .if(NOPORTEXAMPLES) not .if(NOEXAMPLES) - Bump PORTREVISION Reported by: araujo via mail
* z80asm is an assembler for the Z80 microprcessor. The assembler aims to belme2008-01-016-0/+87
| | | | | | | | | | | | | | | | | | | | | | | | portable and complete. Of course it assembles all official mnemonics, but it also aims to assemble the unofficial mnemonics. The assembler features the output of listing files which show the source with the assembled codes and address next to it. It also allows outputting of label files, in a format which can be included by other assembler source files. Other noteworthy features are complete calculation capabilities, conditional assembling of parts of the code, and inclusion of other source files. The assembler was written with the MSX computer in mind as the target platform, but it can be used for any system with a Z80 in it. The original idea was to make header files with labels of MSX specific addresses (BIOS, BDOS, system variables), but nothing like this has been done yet. WWW: http://savannah.nongnu.org/projects/z80asm/ PR: ports/119149 Submitted by: Sean McLaughlin <sigma.zx (AT) gmail.com>
* On non-i386 platforms, don't link with libsupc++, which cannot produce athierry2007-12-311-1/+8
| | | | | | shared object. Reported by: pointyhat via Pav
* Update to 0.10lbr2007-12-312-4/+4
|
* - Update to 5.64rafan2007-12-313-5/+6
|
* - Update to 2007-12-18miwi2007-12-313-5/+98
| | | | | PR: 119094 Submitted by: Martin Kammerhofer <dada@sbox.tugraz.at> (maintainer)
* update to 0.6.0oliver2007-12-312-4/+4
|
* Mark BROKEN with GCC 4.2 on all archs.erwin2007-12-311-2/+0
|
* - Update to 4.5.7tabthorpe2007-12-302-4/+4
|
* - Update to 2.5.1 (2.51)clsung2007-12-302-6/+5
| | | | Changes: http://search.cpan.org/dist/IO-AIO/Changes
* - Make the port buildable on CURRENTsem2007-12-281-3/+4
| | | | Noted by: pav, erwin
* Update to File-Append-TempFile 0.05 and add PORTDOCS.roam2007-12-282-4/+12
|
* Rascut is Ruby ActionSCript UTility :Dkuriyama2007-12-285-0/+98
| | | | WWW: http://hotchpotch.rubyforge.org/