Commit graph

99109 commits

Author SHA1 Message Date
Oliver Lehmann
54070e4993 update to 3.0.3 2004-04-02 08:05:46 +00:00
Kirill Ponomarev
b3aa9d4ba7 Add kmp 0.01, a graphical interface to musicpd written with Qt.
PR:		ports/65060
Submitted by:	Mark Reidel <ports@mark.reidel.info>
2004-04-02 08:05:36 +00:00
Kris Kennaway
b318dd2a1c Set INDEX_PRISTINE and INDEX_QUIET to catch up to new index build
variables.
2004-04-02 07:43:43 +00:00
Pav Lucistnik
975294508d - Update to 1.8
PR:		ports/64228
Submitted by:	Toshiya SAITOH <toshiya@saitoh.nu>
Approved by:	maintainer timeout (2 weeks)
2004-04-02 07:42:56 +00:00
Pav Lucistnik
296cfcbc48 - Update to 0.85a
PR:		ports/65052
Submitted by:	Daniel Johansson <donnex@donnex.net>
Approved by:	maintainer
2004-04-02 07:37:11 +00:00
Kris Kennaway
003620c0c4 Use PERL_MODBUILD now that bsd.port.mk has been changed to allow it without
infinite recursion.

Submitted by:	mat
PR:		62422
2004-04-02 07:31:45 +00:00
Kris Kennaway
98dd96ee20 Remove category pkg/COMMENT files in favour of a COMMENT variable in the
category makefile.

Submitted by:	Matthew Seaman <m.seaman@infracaninophile.co.uk>
PR:		59651
2004-04-02 07:29:48 +00:00
Kris Kennaway
e74f65891d - Allow processing of info files in non-standard locations; the
INFO_PATH variable may be used to specify their location.  It defaults
  to 'share/info' for the standard PREFIX, and 'info' when PREFIX ==
  /usr. [1]

- Remove the <category>/pkg/COMMENT files in favour of a COMMENT
  variable in <category>/Makefile [2]

- Prevent patch breakage with VERSION_CONTROL=numbered [3]

- Fix some instances of incorrect WRKDIRPREFIX handling. [4]

- remove useless ${MKDIR} ${WRKSRC} in config target [5]

- remove reference to OpenBSD [6]

- Exempt devel/p5-Module-Build from the self-dependency in
  PERL_MODBUILD so that this port may use the option without getting an
  infinite dependency list [7]

- The default PERL_ARCH is currently determined as a function of
  OSVERSION. It should however be a function of PERL_LEVEL since the
  correct value depends on what Perl version one has installed (older
  Perl versions use ${ARCH}-freebsd, newer versions use mach). [8]

- Fix PORTDOCS on older (4.7, 5.0) systems [9]

- Allow 'make parallel' to generate a working makefile when not all
  categories are present (this does not mean you'll be able to build all
  ports, unless you make sure they don't have external dependencies) [10]

- Don't report symlinks as world-writable in the security check [11]

- Fix a comment that was broken by a mismerged patch [12]

- Clarify the meaning of USE_*, WANT_*, WITH_* and WITHOUT_* [13]

- Don't set _CHKSUMFILES/_IGNOREFILES if CKSUMFILES/IGNOREFILES is
  empty and DIST_SUBDIR is set. [14]

- Fix comment for DISTDIR [15]

- Update the documentation of the USE_GL variable [16]

- Check to see if NONEXISTENT exists, and fail with an error if it does [17]

- Fix fetching of new distfiles in 'make makesum' when SIZE is set [18]

- Consistently set MAKE_ENV when USE_GCC=3.2 or 3.3 are set [19]

- Rework INDEX builds: [20]

  * Fix the bsd.port.subdir.mk code that is supposed to report index
    breakage (the fallback code wasn't actually being run because make
    would halt immediately following the error).  This should help with
    INDEX error reports because it will immediately show the cause of
    failure, so we won't have to pull teeth to extract it from the
    submitter.

  * Streamline the 'make describe' code a bit.

  * Provide some basic instructions to the user when an index build
    fails, on when and how to report index build failures (turn this off
    with INDEX_QUIET=1)

  * Removed INDEX_NOSORT, because I couldn't imagine it to be very
    useful and it doesn't cost very much anyway.

  * Don't prevent INDEX builds from seeing the local host environment.
    Since a lot of users are using 'make index' thesedays they should get
    an index that reflects their local settings and installed ports.  If
    you want to build a 'default' index that isn't influenced by local
    settings (e.g. for release builds), set the INDEX_PRISTINE variable.

  * Allows parallel INDEX builds (using make -j).  The most obvious way
    of doing this doesn't work, because I/O from child makes is broken up
    into 2k chunks, and output lines from 'make describe' that exceed this
    length (*cough* GNOME *cough*) will be intertwined with the output of
    other makes, leading to a corrupted INDEX.  The I/O interleaving
    can be disabled using 'make -P', but this inserts extraneous output of
    its own, and redirects stderr, making it useless for our purposes.
    Instead, I collect the output from the child make processes in
    temporary files and recombine them at the end.

  * The number of concurrent make processes to spawn can be set using
    INDEX_JOBS.  By default this is set to 2, which seems to be a sweet
    spot for both single and dual-processor systems.  On my tests I do not
    see any significant performance changes on UP, but on a dual 4.x
    system the build time drops by 47% (6 minute index builds on one test
    machine!).  Depending on your disk and CPU hardware you might see
    further gains with INDEX_JOBS=4 or higher, so you might like to
    experiment to see what works best.  On a dual 5.x system the
    performance gains do not seem to be as great (20-30%), but this is
    still a significant net win.

PR: 		55493 [1], 59651 [2], 61552 [3], 62247 [4], 62329 [5],
		62337 [6], 62422 [7], 62441 [8], 62627 [9], 62983 [10],
		63112 [11], 63297 [12], 63335 [13], 64029 [14], 64069 [15],
		64236 [16], 64519 [17], 62958 [18], 64237 [19]

Submitted by:	lev [1],
		Matthew Seaman <m.seaman@infracaninophile.co.uk> [2],
		Joel Ray Holveck <joelh@piquan.org> [3],
		ade [4], Sergey Matveychuk <sem@ciam.ru> [5],
		markus [6], mat [7], des [8], eik [9],
		Dmitry Morozovsky <marck@rinet.ru> [10],
		Andrew <andrew@ugh.net.au> [11], vs [12], linimon [13],
		edwin [14][15], gerald [16], marcus[17][18], kris [19][20]
2004-04-02 07:25:23 +00:00
Pav Lucistnik
783ff30c63 Add cdbkup, perl utility to do tar based backups to CD-R.
PR:		ports/64651
Submitted by:	Kay Lehmann <kay_lehmann@web.de>
2004-04-02 07:21:51 +00:00
Kris Kennaway
71ffddbe0d Add LATEST_LINK=emacs20 to avoid conflict with editors/emacs 2004-04-02 07:14:19 +00:00
Kris Kennaway
fba5787df2 Fix syntax error in NOPORTDOCS case
Noticed by:	Frank Knobbe <frank@knobbe.us>
2004-04-02 07:01:02 +00:00
Pav Lucistnik
b4b424bb81 - Add patch to make this work on loopback
PR:		ports/64580
Submitted by:	Radim Kolar <hsn@netmag.cz>
2004-04-02 06:30:54 +00:00
Daichi GOTO
7d12f968ee add new ports deskutils/fusenshi
- Fusenshi is a Post-it(R) like application. You can take notes
    on your desktop and send them to others with it.
2004-04-02 06:10:43 +00:00
Pav Lucistnik
575e4029db - Fix CONFIGURE_ARGS handling
PR:		ports/64823
Submitted by:	Serge Gagnon <gagnon_s@sympatico.ca>
2004-04-02 06:09:43 +00:00
Pav Lucistnik
c6e4d4b734 - Update to 4.29.7
PR:		ports/65039
Submitted by:	Jan-Peter Koopmann <j.koopmann@seceidos.de> (maintainer)
2004-04-02 06:01:03 +00:00
Pav Lucistnik
d9b004340f - Mark IGNORE for amd64, it builds but does not work properly.
PR:		ports/64964
Submitted by:	tjr
Approved by:	maintainer
2004-04-02 05:50:21 +00:00
Kirill Ponomarev
eab8a42f14 - Update to version 0.9.6.1
PR:		ports/65058
Submitted by:	maintainer
2004-04-02 05:46:03 +00:00
Kirill Ponomarev
57b2540f4c - Update to version 7.2.9.4
PR:		ports/65057
Submitted by:	maintainer
2004-04-02 05:42:33 +00:00
Pav Lucistnik
ad7ed5c142 Add acidrip, a Perl/Gtk2 frontend for mencoder for ripping DVDs into DivX.
PR:		ports/65012
Submitted by:	michael johnson <ahze@ahze.net>
2004-04-02 05:08:54 +00:00
Pav Lucistnik
e0ee990960 - Bring back a part of revision 1.4 which was correct
Submitted by:	maintainer
2004-04-02 05:03:07 +00:00
Pav Lucistnik
d7f15c1bac - Unbreak build: correct WRKSRC
Pointy hat to:	ijliao
2004-04-02 04:27:45 +00:00
Pav Lucistnik
cfa954a5be - Revert my previous commit, it was completely bogus [1]
- Respect CFLAGS [2]

Requested by:	maintainer [1]
Submitted by:	maintainer [2]
2004-04-02 03:49:20 +00:00
Pav Lucistnik
5684599bf6 - Fix MSN nickname display problem
PR:		ports/65056
Submitted by:	Cheng-Lung Sung <clsung@dragon2.net> (maintainer)
2004-04-02 03:41:14 +00:00
Ying-Chieh Liao
f0588e01fe upgrade to 0.3.5 2004-04-02 03:27:02 +00:00
Pav Lucistnik
7706ea8594 - Respect CC
- DOCSDIR in pkg-plist

PR:		ports/65049
Submitted by:	michael johnson <ahze@ahze.net>
2004-04-02 01:56:13 +00:00
Pav Lucistnik
1b5f385894 - Kill trailing whitespace
PR:		ports/65053
Submitted by:	Xin LI <delphij@frontfree.net>
2004-04-02 01:50:40 +00:00
Pav Lucistnik
99a2a9d13c Add pdftk, a simple tool for doing everyday things with PDF documents.
Keep one in the top drawer of your desktop and use it to:

Merge PDF Documents
Split PDF Pages into a New Document
Decrypt Input as Necessary (Password Required)
Encrypt Output as Desired
Burst a PDF Document into Single Pages
Report on PDF Metrics, including Metadata and Bookmarks
Uncompress and Re-Compress Page Streams
Repair Corrupted PDF (Where Possible)

PR:		ports/64555
Submitted by:	Patrick Dung <patrick_dkt@yahoo.com.hk>
2004-04-02 01:47:27 +00:00
Ying-Chieh Liao
f4e0de85b8 upgrade to 5.07.1 2004-04-02 00:57:50 +00:00
Pav Lucistnik
ec008f19d4 - Change tcl dependency from :build to :extract
- Add WITH_THREADS knob

PR:		ports/64324
Submitted by:	Seva Gluschenko <gvs@rinet.ru>
2004-04-02 00:53:31 +00:00
Pav Lucistnik
dbd898b4a9 Add ljclive, a command line client for posting LiveJournal entries.
LiveJournal is an online journal (blog/friends) community, see
www.livejournal.com. This program does basically the same as
(graphical) tools like ljcharm, kluje and logjam - already in ports.

PR:		ports/64669
Submitted by:	Johan van Selst <johans@stack.nl>
2004-04-02 00:32:39 +00:00
Pav Lucistnik
bc4cd30966 - Update to 2.7.0
PR:		ports/63265
Submitted by:	Gerhard Schmidt <estartu@augusta.de>
Approved by:	crowds on python@ via perky (in general)
2004-04-02 00:00:29 +00:00
Pav Lucistnik
6bb3236433 Remove www/zope-cmf13, the reasons for it's existence disappeared.
Point users to latest version in www/zope-cmf.
2004-04-01 23:26:49 +00:00
Pav Lucistnik
03c9298349 Add pal, a command line calendar that can keep track of events. It has
similarities with the Unix cal command, the more complex GNU gcal program,
and the calendar program distributed with the BSDs.

PR:		ports/64353
Submitted by:	Herbert J. Skuhra <herbert.skuhra@gmx.at>
2004-04-01 23:16:59 +00:00
Jacques Vidrine
a0b833d3a4 Correct usage message for tidy.sh.
Submitted by:	Frankye Fattarelli <frankye@ipv5.net>
2004-04-01 22:41:02 +00:00
Pav Lucistnik
d4e53543a1 - Update to 2.0pre8
PR:		ports/64391
Submitted by:	Piotr Smyrak <piotr.smyrak@heron.pl> (maintainer)
2004-04-01 22:12:01 +00:00
Pav Lucistnik
9df9189f0c - Update to 5.0.2
PR:		ports/65046
Requested by:	Stephane Lentz <milter@free.fr>
Approved by:	maintainer
2004-04-01 21:49:20 +00:00
Pav Lucistnik
3f70845465 - Respect ${CC} and ${CFLAGS}
PR:		ports/65047
Submitted by:	michael johnson <ahze@ahze.net>
2004-04-01 21:42:02 +00:00
Thierry Thomas
f11cf33459 Follow-up to the initial submission.
PR:		ports/63234
Submitted by:	maintainer
Approved by:	mat (mentor).
2004-04-01 21:37:50 +00:00
Joe Marcus Clarke
0a6fffb515 Fix make package in the case when gimp is built with:
make package WITHOUT_PRINT=YES WITH_HTML_HELP_BROWSER=YES

Reported by:	des
2004-04-01 21:37:03 +00:00
Thierry Thomas
5c3fbe2d58 Add pear-HTML_QuickForm 3.2.2, a PEAR package providing methods
for creating, validating and processing HTML forms.

PR:		64954
Submitted by:	Gerrit Beine (<gerrit@beine-computer.de>)
Approved by:	mat (mentor).
2004-04-01 21:28:10 +00:00
Christian Weisgerber
34d2eea617 Update to 1.2.2. Changes in this release:
* several bugfixes
* [EE] shortcut
* updated translations
2004-04-01 21:01:40 +00:00
Jacques Vidrine
fe2e811ddd Update vxquery 0.1 -> 0.2 2004-04-01 20:35:35 +00:00
Mark Linimon
a903a14280 Update to 1.11: adds the possibility to change the font size in some
locations; minor bugfixes.

PR:		ports/64810
Submitted by:	Andreas Fehlner <fehlner@gmx.de> (maintainer)
2004-04-01 19:45:34 +00:00
Thierry Thomas
594bafc6a4 Repocopy textproc/no-aspell to textproc/nn-aspell.
PR:		ports/65005
Approved by:	mat (mentor)
Repo copied by:	marcus (cvs).
2004-04-01 17:39:56 +00:00
Pav Lucistnik
02da8d0611 Add phpua-engine, a PHP based backedn that enables gaming server
administrators to manage their servers via a website interface and
to display server information including live statistics to the public.

Plugin ports will come soon.

PR:		ports/64874
Submitted by:	Hideki Machida <hido@neojapangz.com>
2004-04-01 17:37:22 +00:00
Mathieu Arnold
6b36417c29 Update to 1.2
PR:		64821
Submitted by:	Tim Bishop <tim@bishnet.net>
2004-04-01 17:13:10 +00:00
Pav Lucistnik
0858a4149f - Update to 0.6.8
PR:		ports/65041
Submitted by:	Piet Delport <pjd@303.za.net>
2004-04-01 17:08:56 +00:00
Mathieu Arnold
e508735848 Add p5-Parse-CPAN-Packages 2.20, parse 02packages.details.txt.gz from
CPAN.

PR:		ports/64834
Submitted by:	Lars Thegler <lars@thegler.dk>
2004-04-01 16:56:56 +00:00
Pav Lucistnik
1f00b9d5b6 Add gnarwl, the email autoresponder.
Unlike the original vacation(1) program, gnarwl is based on LDAP.
Traditionally you had to give every user, who wanted to use autoreply
facilities full fledged system accounts (trusting them to set their
forwarding up properly, cursing when they didn't).

With gnarwl this is history. User information is now stored in LDAP.
Thats right, no more messing around with system accounts or homedirs for
users who just want their email working, but don't care to fuss around
with shell commands.

WWW: http://www.oss.billiton.de/software.shtml

PR:		ports/64895
Submitted by:	Xavier Beaudouin <kiwi@oav.net>
2004-04-01 16:48:37 +00:00
Mathieu Arnold
c08819178e Add p5-CPAN-DistnameInfo 0.03, extract distribution name and version
from a CPAN filename.

PR:		ports/64833
Submitted by:	Lars Thegler <lars@thegler.dk>
2004-04-01 16:46:02 +00:00