| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Notes:
svn path=/head/; revision=105960
|
|
|
|
| |
Notes:
svn path=/head/; revision=105959
|
|
|
|
|
|
|
|
|
|
| |
* Fixed seek table permissions bug when creating seek-enabled files from
read-only input files.
Approved by: maintainer
Notes:
svn path=/head/; revision=105958
|
|
|
|
|
|
|
|
|
|
|
| |
repo and should have read:
Fix a configure check.
PR: ports/65055
Notes:
svn path=/head/; revision=105957
|
|
|
|
| |
Notes:
svn path=/head/; revision=105956
|
|
|
|
| |
Notes:
svn path=/head/; revision=105954
|
|
|
|
|
|
|
|
| |
PR: ports/65060
Submitted by: Mark Reidel <ports@mark.reidel.info>
Notes:
svn path=/head/; revision=105953
|
|
|
|
|
|
|
| |
variables.
Notes:
svn path=/head/; revision=105952
|
|
|
|
|
|
|
|
|
| |
PR: ports/64228
Submitted by: Toshiya SAITOH <toshiya@saitoh.nu>
Approved by: maintainer timeout (2 weeks)
Notes:
svn path=/head/; revision=105951
|
|
|
|
|
|
|
|
|
| |
PR: ports/65052
Submitted by: Daniel Johansson <donnex@donnex.net>
Approved by: maintainer
Notes:
svn path=/head/; revision=105950
|
|
|
|
|
|
|
|
|
|
| |
infinite recursion.
Submitted by: mat
PR: 62422
Notes:
svn path=/head/; revision=105949
|
|
|
|
|
|
|
|
|
|
| |
category makefile.
Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk>
PR: 59651
Notes:
svn path=/head/; revision=105948
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
| |
PR: ports/64651
Submitted by: Kay Lehmann <kay_lehmann@web.de>
Notes:
svn path=/head/; revision=105945
|
|
|
|
| |
Notes:
svn path=/head/; revision=105944
|
|
|
|
|
|
|
| |
Noticed by: Frank Knobbe <frank@knobbe.us>
Notes:
svn path=/head/; revision=105943
|
|
|
|
|
|
|
|
| |
PR: ports/64580
Submitted by: Radim Kolar <hsn@netmag.cz>
Notes:
svn path=/head/; revision=105942
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
| |
PR: ports/64823
Submitted by: Serge Gagnon <gagnon_s@sympatico.ca>
Notes:
svn path=/head/; revision=105939
|
|
|
|
|
|
|
|
| |
PR: ports/65039
Submitted by: Jan-Peter Koopmann <j.koopmann@seceidos.de> (maintainer)
Notes:
svn path=/head/; revision=105938
|
|
|
|
|
|
|
|
|
| |
PR: ports/64964
Submitted by: tjr
Approved by: maintainer
Notes:
svn path=/head/; revision=105937
|
|
|
|
|
|
|
|
| |
PR: ports/65058
Submitted by: maintainer
Notes:
svn path=/head/; revision=105936
|
|
|
|
|
|
|
|
| |
PR: ports/65057
Submitted by: maintainer
Notes:
svn path=/head/; revision=105935
|
|
|
|
|
|
|
|
| |
PR: ports/65012
Submitted by: michael johnson <ahze@ahze.net>
Notes:
svn path=/head/; revision=105933
|
|
|
|
|
|
|
| |
Submitted by: maintainer
Notes:
svn path=/head/; revision=105932
|
|
|
|
|
|
|
| |
Pointy hat to: ijliao
Notes:
svn path=/head/; revision=105931
|
|
|
|
|
|
|
|
|
|
| |
- Respect CFLAGS [2]
Requested by: maintainer [1]
Submitted by: maintainer [2]
Notes:
svn path=/head/; revision=105930
|
|
|
|
|
|
|
|
| |
PR: ports/65056
Submitted by: Cheng-Lung Sung <clsung@dragon2.net> (maintainer)
Notes:
svn path=/head/; revision=105929
|
|
|
|
| |
Notes:
svn path=/head/; revision=105928
|
|
|
|
|
|
|
|
|
|
| |
- DOCSDIR in pkg-plist
PR: ports/65049
Submitted by: michael johnson <ahze@ahze.net>
Notes:
svn path=/head/; revision=105927
|
|
|
|
|
|
|
|
| |
PR: ports/65053
Submitted by: Xin LI <delphij@frontfree.net>
Notes:
svn path=/head/; revision=105926
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Notes:
svn path=/head/; revision=105923
|
|
|
|
|
|
|
|
|
|
| |
- Add WITH_THREADS knob
PR: ports/64324
Submitted by: Seva Gluschenko <gvs@rinet.ru>
Notes:
svn path=/head/; revision=105922
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
Point users to latest version in www/zope-cmf.
Notes:
svn path=/head/; revision=105918
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
Submitted by: Frankye Fattarelli <frankye@ipv5.net>
Notes:
svn path=/head/; revision=105915
|
|
|
|
|
|
|
|
| |
PR: ports/64391
Submitted by: Piotr Smyrak <piotr.smyrak@heron.pl> (maintainer)
Notes:
svn path=/head/; revision=105914
|
|
|
|
|
|
|
|
|
| |
PR: ports/65046
Requested by: Stephane Lentz <milter@free.fr>
Approved by: maintainer
Notes:
svn path=/head/; revision=105913
|
|
|
|
|
|
|
|
| |
PR: ports/65047
Submitted by: michael johnson <ahze@ahze.net>
Notes:
svn path=/head/; revision=105912
|
|
|
|
|
|
|
|
|
| |
PR: ports/63234
Submitted by: maintainer
Approved by: mat (mentor).
Notes:
svn path=/head/; revision=105911
|
|
|
|
|
|
|
|
|
| |
make package WITHOUT_PRINT=YES WITH_HTML_HELP_BROWSER=YES
Reported by: des
Notes:
svn path=/head/; revision=105910
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
| |
* several bugfixes
* [EE] shortcut
* updated translations
Notes:
svn path=/head/; revision=105907
|
|
|
|
| |
Notes:
svn path=/head/; revision=105906
|
|
|
|
|
|
|
|
|
|
| |
locations; minor bugfixes.
PR: ports/64810
Submitted by: Andreas Fehlner <fehlner@gmx.de> (maintainer)
Notes:
svn path=/head/; revision=105905
|
|
|
|
|
|
|
|
|
| |
PR: ports/65005
Approved by: mat (mentor)
Repo copied by: marcus (cvs).
Notes:
svn path=/head/; revision=105903
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|