Commit graph

190617 commits

Author SHA1 Message Date
Nicola Vitale
abe351ffc0 - Update to 3.0.2 2008-01-26 17:06:52 +00:00
Yen-Ming Lee
80fdda4837 - update to 2.53 2008-01-26 16:53:19 +00:00
Jeremy Messenger
21c7fbc514 Update to 0.5.8.2, be sure to read in UPDATING before you run it. 2008-01-26 16:44:43 +00:00
Marcelo Araujo
8c35f5558b - Update to 2.1_rc6.
PR:		ports/119953
Submitted by:	Matthias Andree <matthias.andree@gmx.de> (maintainer)
Approved by:	stas (mentor, implicit)
2008-01-26 15:40:05 +00:00
Peter Pentchev
4ae818beff Forced commit to note that files/stunnel.sh was repo-copied to
files/stunnel.in before the USE_RC_SUBR transition in my last commit.
2008-01-26 14:18:12 +00:00
Peter Pentchev
644e7eb25b Finish the USE_RC_SUBR transition after marcus repo-copied stunnel.sh
to stunnel.in.
No functional changes once the port has been installed, thus
no PORTREVISION bump.
2008-01-26 14:13:43 +00:00
Marcelo Araujo
174a3405ae - Fix PORTVERSION to 2.1.p12 on the last commit.
Approved by:	Martin Tournoij <carpetsmoker@xs4all.nl> (maintainer, implicit)
		stas (mentor, implicit)
2008-01-26 14:11:44 +00:00
Thomas Abthorpe
ceb80dfeff - OPTIONify dependencies
- While I am here, use SF macro

PR:		ports/117805
Submitted by:	Roland Smith <rsmith xs4all.nl>
Reviewed by:	miwi
Sponsored by:	FreeBSD Bug-a-thon #3
2008-01-26 14:10:19 +00:00
Alex Dupre
3707b22cf9 Add support for FreeBSD 7.x.
PR:		ports/120004
Submitted by:	Cristian KLEIN <cristi@net.utcluj.ro>
2008-01-26 13:44:55 +00:00
Marcelo Araujo
3769571014 - Update to 2.1pre12.
- Pass maintainership to submitter.

PR:		ports/119958
Submitted by:	Martin Tournoij <carpetsmoker@xs4all.nl>
Approved by:	stas (mentor, implicit)
2008-01-26 13:42:06 +00:00
Marcelo Araujo
6e966fefe3 What's MyBashBurn?
Basically, it is no more than a Terminal User Interface (TUI) frontend based of
the CD burning shell script called BashBurn for GNU/Linux; this originally does
not have the best eye-candy CD-burning UI, nevertheless, MyBashBurn uses dialog
boxes/functions which draws (using ncurses) windows onto the screen. MyBashBurn
dialog boxes offer good functionality, and has very good capabilities of
automatically finding dependencies and auto detecting devices CD/DVD RW. In
short, do not reinvent the wheel - just let MyBashBurn do what you want it to
do.

WWW: http://mybashburn.sf.net

PR:		ports/119959
Submitted by:	Martin Tournoij <carpetsmoker@xs4all.nl>
Approved by:	stas (mentor, implicit)
2008-01-26 13:37:00 +00:00
Marcelo Araujo
81bfbc41e3 - Update to 2.5.
- Use SF macro.

PR:		ports/119758
Submitted by:	Felippe de Meirelles Motta <lippemail@gmail.com>
Reworked by:	Martin Tournoij <carpetsmoker@xs4all.nl> (maintainer)
Approved by:	stas (mentor, implicit)
2008-01-26 13:26:14 +00:00
Erwin Lansing
b2a1069554 Mark BROKEN: does not build 2008-01-26 13:09:01 +00:00
Li-Wen Hsu
1b93156bce - Update to 0.3.0 2008-01-26 12:11:20 +00:00
Erwin Lansing
3fcff495cd Mark BROKEN: does not build 2008-01-26 11:06:58 +00:00
Andrew Pantyukhin
aac574842a - Update to 2.1.3 2008-01-26 10:35:44 +00:00
Andrew Pantyukhin
72df17d599 - Update to 2.0.1 2008-01-26 10:05:36 +00:00
Maho Nakata
72d4cecfcc Update to SRC680_m243. 2008-01-26 10:04:19 +00:00
Chin-San Huang
c74f246143 paexec -- Parallel executor, distributes tasks over network.
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
2008-01-26 08:48:58 +00:00
Chin-San Huang
d49664bae7 The LIBMAA library provides many low-level data structures which are
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/
2008-01-26 05:39:51 +00:00
Alexey Dokuchaev
eda9d1c2b5 Clean up port descriptions for unmaintained ports in `astro' category:
markup and spelling fixes, kill EOL whitespace and extraneous attribution.
2008-01-26 05:16:13 +00:00
Thomas Abthorpe
9ce7d11f52 - Fix configure script
- While I am here, use SF macro

PR:		ports/117897
Submitted by:	Stephen Hurd <shurd sasktel.net>
Approved by:	Ying-Chieh Chen <yinjieh csie.nctu.edu.tw> (maintainer)
Sponsored by:	FreeBSD Bug-a-thon #3
2008-01-26 03:12:25 +00:00
Chin-San Huang
b7627a668a dir2ogg is a python script which converts mp3, m4a, wma and wav files into
OGG Vorbis format.  It was inspired by the perl script mp32ogg.

WWW: http://jak-linux.org/projects/dir2ogg/
2008-01-26 03:01:59 +00:00
Chin-San Huang
8ac065d74d pipestatus - source file for POSIX shell that allows
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/
2008-01-26 01:55:53 +00:00
Beech Rintoul
c51999e382 - Fix (and add) pkg-plist
Reported by:	pointyhat via pav
Approved by:	linimon (mentor)
2008-01-26 01:51:31 +00:00
Chin-San Huang
857d7a0719 A Perl implementation of the reCAPTCHA API.
From the recaptcha.net web site:

reCAPTCHA improves the process of digitizing books by sending words that
cannot be read by computers to the Web in the form of CAPTCHAs for
humans to decipher. More specifically, each word that cannot be read
correctly by OCR is placed on an image and used as a CAPTCHA. This is
possible because most OCR programs alert you when a word cannot be read
correctly.

WWW: http://search.cpan.org/dist/Captcha-reCAPTCHA/
2008-01-26 01:45:13 +00:00
Martin Wilke
533a9c25fa - Update to 20080121 2008-01-26 01:18:34 +00:00
Vanilla I. Shu
a2f37ee37a Fix pkg-plist.
Submitted by:	pav@
2008-01-26 01:12:48 +00:00
Thomas Abthorpe
6690f2ab7d - Update to 20070826
PR:		ports/118979
Submitted by:	Jesper Louis Andersen <jesper.louis.andersen gmail.com> (maintainer)
Sponsored by:	FreeBSD Bug-a-thon #3
2008-01-26 01:02:33 +00:00
Chin-San Huang
4c9379ddfc HTML::Tiny is a simple, dependency free module for generating HTML (and
XML). It concentrates on generating syntactically correct XHTML using a
simple Perl notation.

In addition to the HTML generation functions utility functions are provided
to :
    * encode and decode URL encoded strings
    * entity encode HTML
    * build query strings
    * JSON encode data structures

WWW: http://search.cpan.org/dist/HTML-Tiny/
2008-01-26 00:59:40 +00:00
Gerald Pfeifer
efec8549a6 Update to Wine 0.9.53. Among others, this includes the following changes:
- Photoshop CS/CS2 should now work, please help us testing it.
   See http://wiki.winehq.org/AdobePhotoshop for details.
 - A number of RPC fixes.
 - Various improvements to the debugger support.
 - Lots of bug fixes.
2008-01-25 22:20:04 +00:00
Gerald Pfeifer
a7060f29a7 Update to the 20080123 snapshot of GCC 4.2.3. 2008-01-25 22:13:30 +00:00
Martin Wilke
90750e6755 - File was rerolled for manpage fixes.
Submitted by:	pointyhat via pav
2008-01-25 21:20:55 +00:00
Emanuel Haupt
afdade4871 Update to 12.8.5 2008-01-25 21:19:14 +00:00
Martin Wilke
61d80b7972 - Update to 2.4.2 (fix fetch problems)
Submitted by:	pointyhat via pav
2008-01-25 20:49:45 +00:00
Erwin Lansing
b2730f8dd0 Mark BROKEN: does not package 2008-01-25 20:20:02 +00:00
Erwin Lansing
9de0783cf4 Mark BROKEN: does not deinstall 2008-01-25 20:15:26 +00:00
Erwin Lansing
b2a161bb02 Mark BROKEN: does not fetch 2008-01-25 20:05:06 +00:00
Erwin Lansing
2f4b44d871 Mark BROKEN on 8.0 2008-01-25 20:02:08 +00:00
Martin Wilke
ee2ccfecbf - Fix plist wehn ldap support enabeld is
PR:		118450
Submitted by:	Dmitriy Kirhlarov <dimma@higis.ru>
Approved by:	maintainer implicit
2008-01-25 19:55:35 +00:00
Erwin Lansing
fe7d4f05a7 Mark BROKEN: does not build 2008-01-25 19:55:00 +00:00
Jeremy Messenger
904b16f6c0 Remove link with librt, FreeBSD doesn't need it. Our clock_gettime() is in
libc and Linux is in librt. This should fix the build on FreeBSD 6.x and below
as librt was added in FreeBSD 7.x. Bump the PORTREVISION to unlink it.

Reported by:	Mike Harding <mvh@ix.netcom.com>
2008-01-25 19:46:40 +00:00
Martin Wilke
42cc3ed4b1 - Fix build
Submitted by:	pointyhat via erwin
Approved by:	maintainer implicit
2008-01-25 19:30:22 +00:00
Joe Marcus Clarke
974a7d7f6b Update to 2.12.4. 2008-01-25 18:42:19 +00:00
Jeremy Messenger
9bc0252918 The tarball has been re-rolled. The changes are pretty very small. They have
bump the version.h from 1.02 (4798) to 1.02 (4809), fix .desktop file, and
update the build tools.

	autoconf 2.59 -> 2.61
	automake 1.9.6 -> 1.10
	intltool 0.35.0 -> 0.36.2

It's not much. The fix .desktop and version.h are the reason that they
re-rolled the tarball, so bump the PORTREVISION.

Reported by:	pointyhat
2008-01-25 18:37:42 +00:00
Mikhail Teterin
fa321a7976 Remove explicit setting of CC and AS. They are safely taken by configure
from the environment. Overwriting them as is currently done by the port
breaks, when either command contains blanks (such as when using distcc
and/or ccache).

PR:	ports/119593:
Submitted by:	Dominic Fandrey
Approved by:	Thomas E. Zander (maintainer - see the PR)
2008-01-25 18:26:59 +00:00
Alexey Dokuchaev
fd133aa4d8 Revert unwanted commit while it's not too late. 2008-01-25 18:24:25 +00:00
Chin-San Huang
b48106360f Add p5-Tie-TinyURL, Tied interface to TinyURL.com. 2008-01-25 18:03:55 +00:00
Nicola Vitale
e92e487701 - Add x11-toolkits/py-gtk2 to RUN_DEPENDS
- Bump PORTREVISION
2008-01-25 17:47:09 +00:00
Nicola Vitale
9f80c4ac6c PyChess is a gnome-inspired chess client written in Python.
Features

    * CECP and UCI Engine support
    * Free on-line play on the FICS chess servers
    * Read and writes the PGN, EPD and FEN chess file formats
    * Built-in Python based engine
    * Undo and pause functions
    * Board and piece animation
    * Drag and drop
    * Tabbed interface
    * Hints and spy arrows
    * Opening book side panel using sqlite
    * Scoreplot side panel
    * "Enter game" in pgn dialog
    * Internationalised or figure pieces in notation
    * Optional sounds
    * Legal move highlighting
    * A nice and accessible look

WWW:	http://pychess.googlepages.com/
2008-01-25 17:37:57 +00:00