aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Make examples (mostly) optional, requested by obrien.Trevor Johnson2004-04-023-590/+20
| | | | Notes: svn path=/head/; revision=105960
* utilize PORTDOCS, NOPORTDOCS, and PLIST_FILESYing-Chieh Liao2004-04-022-51/+11
| | | | Notes: svn path=/head/; revision=105959
* Update to 3.5.2:Christian Weisgerber2004-04-023-4/+4
| | | | | | | | | | * Fixed seek table permissions bug when creating seek-enabled files from read-only input files. Approved by: maintainer Notes: svn path=/head/; revision=105958
* Forced commit, the last commit message was meant to go into kde-freebsd'sMichael Nottebrock2004-04-020-0/+0
| | | | | | | | | | | repo and should have read: Fix a configure check. PR: ports/65055 Notes: svn path=/head/; revision=105957
* Sync with ports (Fix a configure check)Michael Nottebrock2004-04-022-2/+6
| | | | Notes: svn path=/head/; revision=105956
* update to 3.0.3Oliver Lehmann2004-04-022-3/+3
| | | | Notes: svn path=/head/; revision=105954
* Add kmp 0.01, a graphical interface to musicpd written with Qt.Kirill Ponomarev2004-04-025-0/+41
| | | | | | | | PR: ports/65060 Submitted by: Mark Reidel <ports@mark.reidel.info> Notes: svn path=/head/; revision=105953
* Set INDEX_PRISTINE and INDEX_QUIET to catch up to new index buildKris Kennaway2004-04-021-3/+5
| | | | | | | variables. Notes: svn path=/head/; revision=105952
* - Update to 1.8Pav Lucistnik2004-04-022-3/+3
| | | | | | | | | PR: ports/64228 Submitted by: Toshiya SAITOH <toshiya@saitoh.nu> Approved by: maintainer timeout (2 weeks) Notes: svn path=/head/; revision=105951
* - Update to 0.85aPav Lucistnik2004-04-024-6/+8
| | | | | | | | | PR: ports/65052 Submitted by: Daniel Johansson <donnex@donnex.net> Approved by: maintainer Notes: svn path=/head/; revision=105950
* Use PERL_MODBUILD now that bsd.port.mk has been changed to allow it withoutKris Kennaway2004-04-021-19/+1
| | | | | | | | | | infinite recursion. Submitted by: mat PR: 62422 Notes: svn path=/head/; revision=105949
* Remove category pkg/COMMENT files in favour of a COMMENT variable in theKris Kennaway2004-04-02120-70/+138
| | | | | | | | | | category makefile. Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk> PR: 59651 Notes: svn path=/head/; revision=105948
* - Allow processing of info files in non-standard locations; theKris Kennaway2004-04-023-70/+128
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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] Notes: svn path=/head/; revision=105947
* Add cdbkup, perl utility to do tar based backups to CD-R.Pav Lucistnik2004-04-027-0/+79
| | | | | | | | PR: ports/64651 Submitted by: Kay Lehmann <kay_lehmann@web.de> Notes: svn path=/head/; revision=105945
* Add LATEST_LINK=emacs20 to avoid conflict with editors/emacsKris Kennaway2004-04-021-0/+1
| | | | Notes: svn path=/head/; revision=105944
* Fix syntax error in NOPORTDOCS caseKris Kennaway2004-04-022-2/+2
| | | | | | | Noticed by: Frank Knobbe <frank@knobbe.us> Notes: svn path=/head/; revision=105943
* - Add patch to make this work on loopbackPav Lucistnik2004-04-021-0/+20
| | | | | | | | PR: ports/64580 Submitted by: Radim Kolar <hsn@netmag.cz> Notes: svn path=/head/; revision=105942
* add new ports deskutils/fusenshiDaichi GOTO2004-04-025-0/+38
| | | | | | | | - Fusenshi is a Post-it(R) like application. You can take notes on your desktop and send them to others with it. Notes: svn path=/head/; revision=105940
* - Fix CONFIGURE_ARGS handlingPav Lucistnik2004-04-021-4/+4
| | | | | | | | PR: ports/64823 Submitted by: Serge Gagnon <gagnon_s@sympatico.ca> Notes: svn path=/head/; revision=105939
* - Update to 4.29.7Pav Lucistnik2004-04-026-48/+56
| | | | | | | | PR: ports/65039 Submitted by: Jan-Peter Koopmann <j.koopmann@seceidos.de> (maintainer) Notes: svn path=/head/; revision=105938
* - Mark IGNORE for amd64, it builds but does not work properly.Pav Lucistnik2004-04-021-0/+6
| | | | | | | | | PR: ports/64964 Submitted by: tjr Approved by: maintainer Notes: svn path=/head/; revision=105937
* - Update to version 0.9.6.1Kirill Ponomarev2004-04-026-200/+232
| | | | | | | | PR: ports/65058 Submitted by: maintainer Notes: svn path=/head/; revision=105936
* - Update to version 7.2.9.4Kirill Ponomarev2004-04-024-8/+6
| | | | | | | | PR: ports/65057 Submitted by: maintainer Notes: svn path=/head/; revision=105935
* Add acidrip, a Perl/Gtk2 frontend for mencoder for ripping DVDs into DivX.Pav Lucistnik2004-04-025-0/+75
| | | | | | | | PR: ports/65012 Submitted by: michael johnson <ahze@ahze.net> Notes: svn path=/head/; revision=105933
* - Bring back a part of revision 1.4 which was correctPav Lucistnik2004-04-021-0/+1
| | | | | | | Submitted by: maintainer Notes: svn path=/head/; revision=105932
* - Unbreak build: correct WRKSRCPav Lucistnik2004-04-021-0/+1
| | | | | | | Pointy hat to: ijliao Notes: svn path=/head/; revision=105931
* - Revert my previous commit, it was completely bogus [1]Pav Lucistnik2004-04-022-8/+1
| | | | | | | | | | - Respect CFLAGS [2] Requested by: maintainer [1] Submitted by: maintainer [2] Notes: svn path=/head/; revision=105930
* - Fix MSN nickname display problemPav Lucistnik2004-04-024-0/+34
| | | | | | | | PR: ports/65056 Submitted by: Cheng-Lung Sung <clsung@dragon2.net> (maintainer) Notes: svn path=/head/; revision=105929
* upgrade to 0.3.5Ying-Chieh Liao2004-04-025-314/+34
| | | | Notes: svn path=/head/; revision=105928
* - Respect CCPav Lucistnik2004-04-022-7/+7
| | | | | | | | | | - DOCSDIR in pkg-plist PR: ports/65049 Submitted by: michael johnson <ahze@ahze.net> Notes: svn path=/head/; revision=105927
* - Kill trailing whitespacePav Lucistnik2004-04-0210-20/+20
| | | | | | | | PR: ports/65053 Submitted by: Xin LI <delphij@frontfree.net> Notes: svn path=/head/; revision=105926
* Add pdftk, a simple tool for doing everyday things with PDF documents.Pav Lucistnik2004-04-024-0/+63
| | | | | | | | | | | | | | | | | | | 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> Notes: svn path=/head/; revision=105924
* upgrade to 5.07.1Ying-Chieh Liao2004-04-022-5/+3
| | | | Notes: svn path=/head/; revision=105923
* - Change tcl dependency from :build to :extractPav Lucistnik2004-04-021-1/+13
| | | | | | | | | | - Add WITH_THREADS knob PR: ports/64324 Submitted by: Seva Gluschenko <gvs@rinet.ru> Notes: svn path=/head/; revision=105922
* Add ljclive, a command line client for posting LiveJournal entries.Pav Lucistnik2004-04-025-0/+33
| | | | | | | | | | | | 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> Notes: svn path=/head/; revision=105920
* - Update to 2.7.0Pav Lucistnik2004-04-0273-5522/+6248
| | | | | | | | | PR: ports/63265 Submitted by: Gerhard Schmidt <estartu@augusta.de> Approved by: crowds on python@ via perky (in general) Notes: svn path=/head/; revision=105919
* Remove www/zope-cmf13, the reasons for it's existence disappeared.Pav Lucistnik2004-04-017-807/+1
| | | | | | | Point users to latest version in www/zope-cmf. Notes: svn path=/head/; revision=105918
* Add pal, a command line calendar that can keep track of events. It hasPav Lucistnik2004-04-015-0/+67
| | | | | | | | | | | 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> Notes: svn path=/head/; revision=105916
* Correct usage message for tidy.sh.Jacques Vidrine2004-04-011-1/+1
| | | | | | | Submitted by: Frankye Fattarelli <frankye@ipv5.net> Notes: svn path=/head/; revision=105915
* - Update to 2.0pre8Pav Lucistnik2004-04-015-36/+15
| | | | | | | | PR: ports/64391 Submitted by: Piotr Smyrak <piotr.smyrak@heron.pl> (maintainer) Notes: svn path=/head/; revision=105914
* - Update to 5.0.2Pav Lucistnik2004-04-016-6/+8
| | | | | | | | | PR: ports/65046 Requested by: Stephane Lentz <milter@free.fr> Approved by: maintainer Notes: svn path=/head/; revision=105913
* - Respect ${CC} and ${CFLAGS}Pav Lucistnik2004-04-011-0/+6
| | | | | | | | PR: ports/65047 Submitted by: michael johnson <ahze@ahze.net> Notes: svn path=/head/; revision=105912
* Follow-up to the initial submission.Thierry Thomas2004-04-011-1/+1
| | | | | | | | | PR: ports/63234 Submitted by: maintainer Approved by: mat (mentor). Notes: svn path=/head/; revision=105911
* Fix make package in the case when gimp is built with:Joe Marcus Clarke2004-04-016-9/+18
| | | | | | | | | make package WITHOUT_PRINT=YES WITH_HTML_HELP_BROWSER=YES Reported by: des Notes: svn path=/head/; revision=105910
* Add pear-HTML_QuickForm 3.2.2, a PEAR package providing methodsThierry Thomas2004-04-017-0/+139
| | | | | | | | | | | for creating, validating and processing HTML forms. PR: 64954 Submitted by: Gerrit Beine (<gerrit@beine-computer.de>) Approved by: mat (mentor). Notes: svn path=/head/; revision=105908
* Update to 1.2.2. Changes in this release:Christian Weisgerber2004-04-012-3/+3
| | | | | | | | | * several bugfixes * [EE] shortcut * updated translations Notes: svn path=/head/; revision=105907
* Update vxquery 0.1 -> 0.2Jacques Vidrine2004-04-012-4/+3
| | | | Notes: svn path=/head/; revision=105906
* Update to 1.11: adds the possibility to change the font size in someMark Linimon2004-04-014-12/+13
| | | | | | | | | | locations; minor bugfixes. PR: ports/64810 Submitted by: Andreas Fehlner <fehlner@gmx.de> (maintainer) Notes: svn path=/head/; revision=105905
* Repocopy textproc/no-aspell to textproc/nn-aspell.Thierry Thomas2004-04-016-29/+7
| | | | | | | | | PR: ports/65005 Approved by: mat (mentor) Repo copied by: marcus (cvs). Notes: svn path=/head/; revision=105903
* Add phpua-engine, a PHP based backedn that enables gaming serverPav Lucistnik2004-04-017-0/+290
| | | | | | | | | | | | | 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> Notes: svn path=/head/; revision=105901