aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* update to 0.2.18oliver2006-02-112-4/+4
|
* p5-Data-Types --> ports/devel/p5-Data-Typesehaupt2006-02-111-0/+1
|
* Add devel/p5-Data-Types, a perl module for validating and converting data typesehaupt2006-02-115-0/+34
| | | | | PR: 93169 Submitted by: hideo <hideo@lastamericanempire.com>
* gotthard --> ports/net/gotthardnovel2006-02-111-0/+1
|
* (Re)add gotthard 1.3, ssh through https proxy tunnel.novel2006-02-115-0/+35
| | | | | PR: ports/93177 Submitted by: Anton Karpov <toxa@toxahost.ru>
* Used wrong name for the port, so remove it. The port with the correctnovel2006-02-116-36/+0
| | | | name will be re-added.
* - Fix dependencies when WITHOUT_X11 definedsem2006-02-111-3/+3
| | | | | PR: ports/93047 Submitted by: Travis Poppe <tlp@liquidx.org>
* gothard --> ports/net/gothardnovel2006-02-111-0/+1
|
* Add gothard 1.3, ssh through https proxy tunnel.novel2006-02-115-0/+35
| | | | | PR: ports/93177 Submitted by: Anton Karpov <toxa@toxahost.ru>
* * Update of pxlib to 0.6.0sem2006-02-112-20/+23
| | | | | | | | | | * Reorganization of MAN section in alphabetical order with addition of new man pages * BUILD_DEPENDS line correction in WITH_DOCS branch * LDCONFIG_DIRS addition with appropriate lines in pkg-plist PR: ports/93161 Submitted by: Alexander Zhuravlev <zaa@zaa.pp.ru>
* make it possible to change the program which is used for authpipeoliver2006-02-111-0/+10
| | | | | PR: ports/92681 Submitted by: Henry Karpatskij <henkka@spheroid.info>
* fix compilation if libevent is installedoliver2006-02-111-1/+2
| | | | | PR: ports/92673 Submitted by: Raaf <raaf@luna.afraid.org>
* * In kill_procs(), pass in the directory and mountpoint as separatekris2006-02-111-2/+8
| | | | | | | | | | | arguments (cosmetic) * Detect if a chroot was used to run a jailed build, and first attempt to gracefully shut it down by killing everything within using pgrep(1) This has a much higher chance of succeeding that relying on fstat to identify processes that might interfere with our attempts to clean up mountpoints, which is fragile (libkvm-dependent), and inherently unreliable at best.
* Support for building ports in a jail instead of a chroot. If use_jail=1kris2006-02-111-9/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in portbuild.conf (or per-machine .conf), then construct a 127.0.0.0/8 IP address based on the build directory ID (i.e. unique for each build instance). This is bound to the lo0 interface for the duration of the 'phase 2' build. We cannot build 'phase 1' in a jail since 'make fetch' doesn't always work through a proxy (e.g. squid sometimes mangles files fetched through FTP, I think by performing CR/LF translation in FTP ASCII mode). Pass in the HTTP_PROXY variable to the jail, if set. This allows FTP/HTTP access from within the jail if the proxy is suitably configured (some ports legitimately need to fetch additional files during the build, e.g. if they have a BUILD_DEPENDS=...:configure target that needs to fetch additional distfiles). Not all ports can be built in jails (most notably the linux_base ports since they want to mount/umount linprocfs), so we will need to come up with a way to deal with this. Some ports require SYSV IPC, so security.jail.sysvipc_allowed=1 might be required. Some other ports attempt to perform DNS lookups, ping, or outbound TCP connections during the build. When it works, this provides better compartmentalization of package builds, e.g. easier termination of builds without the possibility of daemonized processes staying active; no possibility of accidental interference between jails, etc. It also allows for admin monitoring using jls(1).
* * Use ${mailto} portbuild.conf variable instead of hard-coded list [1]kris2006-02-111-4/+7
| | | | | | | | * Remove old logs and possible compressed logs before attempting the build Requested by: lofi [1] Submitted by: linimon [1] No more accidental portbuild spam: kris and krion [1]
* Use ${mailto} portbuild.conf variable instead of hard-coded listkris2006-02-111-1/+1
| | | | | | Requested by: lofi Submitted by: linimon No more accidental portbuild spam: kris and krion
* Checkpoint a major round of changes:kris2006-02-111-64/+201
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Only keep distfiles if the port passes 'make fetch', so we don't accidentally keep files with invalid checksums * Use cleanup() instead of directly exiting in some error conditions * When cleanup() is called indicating an unexpected error (possibly leaving the filesystem in an inconsistent state), mark the chroot as dirty so it will not be reused by another build * Remove packages in dependency order instead of with pkg_delete -f in possibly incorrect order. This paves the way for focusing on errors generated by pkg_delete (e.g. @dirrm that should be @dirrmtry) in the future. [1] * Detect when packages were left behind because they were still in use by other packages, indicating an incorrect or incomplete port dependency list * Partial support for ccache builds (not yet complete) * Support non-standard LOCALBASE/X11BASE settings * Delete FETCH_DEPENDS after the 'make fetch' stage. We have to add them again before 'make extract' since, due to a lack of a 'fetch cookie', 'make extract' actually *always* runs 'make fetch' again, even when distfiles have already been fetched. We need to delete them in order to: * Record an mtree spec of the 'pristine' filesystem state, for later comparison. # XXX Perhaps this can be done in stage 1 before the # 'make fetch', removing the need to delete-and-readd. * Also record an mtree spec of the filesystem state prior to the build phase. Compare this to the state of the filesystem immediately before running the install phase, to detect files that were inappropriately installed during the build phase. Doing so is a fatal error. * Prior to installing, try to run a 'regression-test' port makefile target, if it exists. This allows ports to hook their internal regression suites into the package build. This needs further infrastructure support, e.g. a default NOP target in bsd.port.mk. For now this is run with 'make -k', so regression failures will not yet actually cause package build failures. * Separate the 'make install' from 'make package' phases rather than let the latter implicitly do the install. * After the newly packaged port has been deleted, compare the state of the filesystem to the state before 'make install'. * After removing BUILD and RUN dependencies, compare the filesystem state to the pristine state before the start of the build. This also detects package dependencies that did not clean themselves up properly when deinstalling. It also detects dependencies that were 'missing' from the port INDEX: these were not pkg_added into place, so the package build had to compile them from scratch (a big waste of time and effort), so this is now also a fatal error. PR: ports/85746 (inspired by) [1] Submitted by: Boris B. Samorodov <bsam@ipt.ru> [1]
* o Do not build static libraries in default setting; this reduce themaho2006-02-114-43/+81
| | | | | | | | | build time by half. o Add support for Pentium D o timing_torerance patch is now activated via knob; this significantly reduce the build time. A lot of discussion with: "Pedro F. Giffuni" <giffunip@yahoo.com>
* Add some missed distfiles.lawrance2006-02-111-0/+9
| | | | Submitted by: Arjan van Leeuwen <avleeuwen@piwebs.com> (maintainer)
* . Fix building on amd64 (but only without cairo support). [1]glewis2006-02-112-29/+28
| | | | | | | | . Update to 3.1.1. [2] PR: 92190 Submitted by: Panagiotis Astithas <past@ebs.gr> [1] mi@ [2]
* xmldiff --> ports/textproc/xmldiffjylefort2006-02-111-0/+1
|
* Add xmldiff.jylefort2006-02-115-0/+61
| | | | | | | | | | | | xmldiff uses xmlprpr and diff to display meaningful differences in XML files in an easy to read format. Output formats available include HTML, ANSI colour, and regular diff. The coloured modes are particularly useful for viewing small differences in context within large XML files. WWW: http://software.decisionsoft.com/tools.html PR: ports/92947 Submitted by: Paul Chvostek <paul+ports@it.ca>
* Update to 1.4 [1]ehaupt2006-02-112-4/+4
| | | | | | | | | | | | | | | | | | [1] Changes: - Make tray menus popup in a more natural location. - Made menu sizes specified in terms of the size of icons. - Make the tray figure out its layout from its size if the layout isn't given explicitly. - Fixed swallow items getting more space than requested. - Made Swallow more sane when an error is encountered. - Now supports windows without a border, but with a title bar. - Fixed a key binding issue on restart. - Don't show X errors unless in debug mode. - Added "valign" and "halign" attributes for Tray. PR: 93082 Submitted by: Babak Farrokhi <babak@farrokhi.net> (maintainer)
* xmlprpr --> ports/textproc/xmlprprjylefort2006-02-111-0/+1
|
* Add xmlprpr.jylefort2006-02-114-0/+43
| | | | | | | | | | | | | | | | An XML pretty printer created to format XML that doesn't make use of mixed content. In the default mode each element is put on a separate line with consistent indentation. It can also separate attributes onto individual lines, sort attributes in a specified or alphabetic order, expand self closing tags, and more. Note that the distribution calls this tool "xmlpp", but it has been renamed so as not to conflict with an xmlpp already in the ports tree. WWW: http://software.decisionsoft.com/tools.html PR: ports/92946 Submitted by: Paul Chvostek <paul+ports@it.ca>
* * Restore the stale socket cleanup code from gamin 0.1.5 to ensure that evenmarcus2006-02-113-46/+113
| | | | | | | | | | | | | | if gamin crashes or is killed with SIGKILL, a leftover socket does not prevent gam_server from starting. * Revert to using the home-grown poller in gamin's kqueue backend instead of gamin's built-in poller. The built-in poller can still be enabled if desired via OPTIONS. * If gamin's poller is used, make sure all local file systems are handled by kqueue where as all remote file systems are handled by polling. Reviewed by: jylefort
* Fix broken .elifdef.lawrance2006-02-111-1/+1
| | | | Reported by: cperciva
* Update to 0.4.2.marcus2006-02-112-4/+4
|
* Update to 2.3.17.marcus2006-02-113-8/+13
|
* opera-devel -> ports/www/opera-devellawrance2006-02-111-0/+1
|
* Add Opera 9.0 Preview 2.lawrance2006-02-1111-0/+842
| | | | | PR: ports/92994 Submitted by: Arjan van Leeuwen <avleeuwen@piwebs.com>
* Allow frontpage ports to build with Apache 2.2.lawrance2006-02-1111-122/+320
| | | | | PR: ports/91968 Submitted by: Scot Hetzel <swhetzel@gmail.com> (maintainer)
* Correctly handle library version number dependency.vanilla2006-02-111-3/+1
| | | | | PR: ports/93158 Submitted by: maintainer
* Upgrade to 0.3.0.vanilla2006-02-113-7/+6
| | | | | PR: ports/93159 Submitted by: maintainer
* Upgrade to 2.5.2.vanilla2006-02-112-5/+4
| | | | | PR: ports/93160 Submitted by: maintainer
* Convert .error to IGNORE when a port-specific combination of otherwisekris2006-02-114-4/+4
| | | | | | | | | legal user-configurable variables is encountered; such an occurrence should not prevent global tasks like INDEX builds, only the build of the port in question. PR: ports/92443 (partial) Submitted by: linimon
* - Use $OSREL and $OSVERSION instead of .exists() to check magic.hkuriyama2006-02-111-2/+4
| | | | | | existance (unbreaking bento build on 4.x). Hint by: kris
* - update to 1.4.4clsung2006-02-116-30/+12
| | | | | PR: 93147 Submitted by: maintainer (Jie Gao)
* - update to 0.5.6clsung2006-02-116-14/+35
| | | | | PR: 93147 Submitted by: maintanier (Jie Gao)
* Update pkg-descr and WWW.lawrance2006-02-111-2/+2
| | | | | PR: ports/93119 Submitted by: Mark Foster <mark@foster.cc> (maintainer)
* Remove direct LIB_DEPENDS on fam in favour of the new USE_FAMkris2006-02-115-9/+12
| | | | | | | | | infrastructure. Default to WANT_FAM_SYSTEM=fam to be conservative since these ports either have not been tested with gamin or are known to fail (courier). PR: ports/92583 Submitted by: marcus
* p5-Kwiki-Cache -> ports/www/p5-Kwiki-Cachelawrance2006-02-111-0/+2
| | | | p5-Geo-Proj4 -> ports/www/p5-Geo-Proj4
* Convert to OPTIONS framework.lawrance2006-02-111-2/+6
| | | | | | | | | Fix misformatted IGNORE message. Tighten up CONFLICTS. PR: ports/92925 Submitted by: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com> Approved by: Josh Paetzel <josh@tcbug.org> (maintainer)
* Convert to OPTIONS framework.lawrance2006-02-111-1/+5
| | | | | | | | Fix misformatted IGNORE message. PR: ports/92911 Submitted by: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com> Approved by: Josh Paetzel <josh@tcbug.org> (maintainer)
* Change install location.lawrance2006-02-112-4/+5
| | | | | | | Fix pkg-plist. PR: ports/92891 Submitted by: Kevin Golding <kevin@caomhin.demon.co.uk> (maintainer)
* Add missing PHP- session, gd, and pdf dependencies.lawrance2006-02-113-3/+3
| | | | | PR: ports/92884 Submitted by: Francisco Alves Cabrita <include@npf.pt.freebsd.org> (maintainer)
* Update to 0.995.lawrance2006-02-112-4/+4
| | | | | | PR: ports/92874 Submitted by: Larry Rosenman <ler@lerctr.org> Approved by: Paul Chvostek <paul+fbsd@it.ca> (maintainer)
* Update to 0.4.1.lawrance2006-02-113-9/+19
| | | | | PR: ports/92849 Submitted by: hamigua <relaxbsd@gmail.com> (maintainer in disguise)
* Update to 4.2.5.lawrance2006-02-1111-643/+38
| | | | | PR: ports/92572 Submitted by: Pawel Pekala <c0rn@o2.pl>
* - Remove the use of .error in favour of BROKEN to fail more gracefullykris2006-02-111-7/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | [1] - Fix all-depends-list target with dependencies that use the ':target' syntax. [2] - Correct errors in USE_DOS2UNIX. [3], [4] - Detect conflicts between installed and requested FAM implementations and fail more gracefully instead of registering a dependency on the wrong port. Set the default implementation based on what the user has already installed. [5] - Correctly clean up info subdirectories in pkg-plist [6] - The linux ldconfig invocation has to be done in a chroot, else some FreeBSD native libs get cached in the linux ld.so.cache. Use the internal chroot feature of the linux ldconfig to do this. [7] - Update the OpenLDAP default version. [8] PR: ports/92446 [1], ports/86310 [2], ports/92584 [3], ports/92688 (partial) [4], ports/92583 [5], ports/91057 [6], ports/92322 [7], ports/86310 [9] Submitted by: linimon [1], mi [2], jylefort [3], danfe [3], Alejandro Pulver <alejandro at varnet dot biz> [4], marcus [5], gerald [6], netchild [7], vsevolod [8]
* Add missing dependency on p5-Kwiki-Cache.lawrance2006-02-111-1/+2
| | | | | PR: ports/91754 Submitted by: Francisco Alves Cabrita <include@npf.deec.uc.pt>
* Add p5-Kwiki-Cache, Kwiki Cache Plugin.lawrance2006-02-116-0/+59
| | | | | PR: ports/91754 Submitted by: Francisco Alves Cabrita <include@npf.deec.uc.pt>
* Add p5-Geo-Proj4, a Perl wrapper for the proj library.lawrance2006-02-115-0/+48
| | | | | PR: ports/92693 Submitted by: Eric Stith <estith.freebsd.ports@thelunarempire.net>
* - Fix the make_index script if PORTSDIR is a path which contains akris2006-02-111-3/+3
| | | | | | | | | | | symlink. [1] - Allow use of alternate http download utilities with 'make fetchindex'. [2] PR: ports/35767 [1], ports/92588 [2] Submitted by: Peter Jeremy <PeterJeremy at optushome dot com dot au> [1], Alexander Logvinov <user at blg dot akavia dot ru> [2]
* - Add a desktop entryjylefort2006-02-114-18/+45
| | | | | | | | | - Fix configure script; we have TCP_NODELAY - Remove useless patch PR: ports/92025 Submitted by: jylefort Approved by: maintainer timeout (23 days)
* Update to 7.0.5.hrs2006-02-114-208/+277
|
* Update maintainer's emailjylefort2006-02-111-1/+1
| | | | | PR: ports/92423 Submitted by: maintainer
* [1]:jylefort2006-02-111-4/+20
| | | | | | | | | | | | | | | | | | - Add a desktop entry - Run java with the exec statement - Move to ${X11BASE} [2]: - Update maintainer's email [1]: PR: ports/92324 Submitted by: jylefort Approved by: maintainer timeout (17 days) [2]: PR: ports/92423 Submitted by: maintainer
* [PATCH] dns/dnstracer: disable IPv6 support optionallyedwin2006-02-111-1/+9
| | | | | | | - disable IPv6 support optionally PR: ports/92872 Submitted by: Yen-Ming Lee <leeym@freebsd.org>
* Update port: misc/tinderbox to 2.3.0 + enhancementsedwin2006-02-119-234/+240
| | | | | | | | | | * update from 2.2.1 to 2.3.0 * fix options parsing so `make' in a pristine directory works as expected [1] * sort the new plist PR: ports/92881 Submitted by: Vasil Dimov <vd@FreeBSD.org>
* [PATCH] deskutils/phpicalendar: Show all files that are installededwin2006-02-113-11/+20
| | | | | | | | [SECURITY UPDATE]: deskutils/phpicalendar PR: ports/92553,ports/93131 Submitted by: Renato Botelho <garga@freebsd.org>,Wesley Shields <wxs@csh.rit.edu> Security: http://phpicalendar.net/forums/viewtopic.php?t=396
* DEPRECATED is a string, not a bool.brooks2006-02-111-1/+1
| | | | | Reported by: kris Pointy hat: brooks
* Now that I've committed a Globus Toolkit 4.0 port, mark this portbrooks2006-02-111-0/+3
| | | | deprecated with an expiration data of the first of March.
* globus4 --> ports/net/globus4brooks2006-02-111-0/+1
|
* Add a port of The Globus Toolkit 4.0. From the Globus Project website:brooks2006-02-119-0/+7832
| | | | | | | | The Globus Toolkit is an open source software toolkit used for building grids. It is being developed by the Globus Alliance and many others all over the world. A growing number of projects and companies are using the Globus Toolkit to unlock the potential of grids for their cause.
* Update to 4.01krion2006-02-112-4/+4
| | | | | | PR: ports/93153 Submitted by: krion Approved by: maintainer
* Update to 0.13.novel2006-02-114-72/+72
|
* Update to 1.11ehaupt2006-02-112-4/+4
| | | | | PR: 93137 Submitted by: Lars Balker Rasmussen <lars@balker.dk> (maintainer)
* Fix build on 4.xanray2006-02-113-119/+124
| | | | Reported by: pointyhat(kris)
* Upgrade to 7.6.thierry2006-02-112-4/+4
| | | | Changelog at <http://dist.schmorp.de/rxvt-unicode/Changes>.
* Update to 1.0.0.nork2006-02-113-25/+6
| | | | Submitted by: TAKANO Yuji <takachan@running-dog.net>
* Update to sysgather-1.0pre6.roam2006-02-114-68/+4
|
* Update to DAT 4694jeh2006-02-112-4/+4
|
* Update to DAT 4693jeh2006-02-112-4/+4
|
* Update to 1.7ehaupt2006-02-112-5/+5
| | | | | PR: 93139 Submitted by: marck
* Pet portlint by using DATADIR macro in plist.novel2006-02-111-11/+10
| | | | | | PR: 91285 (part of) Submitted by: David Le Brun <david@dyn-ns.net> Approved by: maintainer timeout (more than month)
* - Rewrite minimum OPTIONS version check, the old way was broken if the OPTIONSgarga2006-02-113-46/+13
| | | | | | | | | where set in /var/db/ports/PORTNAME/options. - Drop old knobs check, hard to maintain and conflicting with KNOBS. - Fix brain-dead CONFLICTS from MFD. PR: ports/93109 Submitted by: maintainer
* Update to 3.6.3 20060208.1807 cvs snap. [1]garga2006-02-114-50/+31
| | | | | | | | | | | Rewrite minimum OPTIONS version check, the old way was broken if the OPTIONS where set in /var/db/ports/PORTNAME/options. Drop old knobs check, hard to maintain and conflicting with KNOBS. [1] beginning with this update the SNAP_DATE is UTC instead of EST (GMT+2). PR: ports/93067 Submitted by: maintainer
* Update to 4.5.3.novel2006-02-112-4/+4
|
* Update to 1.3.4 - a security release which fixes bugs innovel2006-02-112-4/+4
| | | | libtasn1's DER decoder.
* Update to 1.2.10 - a security release which fixes bugs innovel2006-02-112-4/+4
| | | | libtasn1's DER decoder
* Update to 0.2.18 - a security release which fixes bugs in the DER decoder.novel2006-02-112-4/+4
|
* - Update to 2.9.5.0garga2006-02-104-21/+18
| | | | | PR: ports/93110 Submitted by: maintainer
* - Update to 1.0.7ahze2006-02-106-14/+22
|
* * Update to 0.7.3.3anray2006-02-108-18/+90
| | | | | * Update master sites. * Fix build and unbreak port.
* - Update to 1.09garga2006-02-102-4/+4
| | | | | PR: ports/93126 Submitted by: maintainer
* Add chinese/pcmanfm entry.vanilla2006-02-101-0/+1
|
* pcmanfm --> ports/x11-fm/pcmanfmvanilla2006-02-101-0/+1
|
* Move chinese/pcmanfm to x11-fm/pcmanfm.vanilla2006-02-105-0/+49
| | | | | PR: ports/93115 Submitted by: maintainer
* remove zh-pcmanfm.vanilla2006-02-101-1/+0
|
* move pcmanfm to x11-fm/vanilla2006-02-101-1/+0
|
* Move zh-pcmanfm to x11-fm/pcmanfm, it's new ports, so don't need repo-copy.vanilla2006-02-104-48/+0
| | | | | PR: ports/93115 Submitted by: maintainer
* - Update to 1.1.7mnag2006-02-102-6/+5
|
* - Update to 2.0.7mnag2006-02-104-6/+19
|
* - Update to 2.1.3mnag2006-02-106-15/+15
| | | | Submitted by: Herbert J. Skuhra
* - Update to 2.4.1, a bugfix releaseehaupt2006-02-102-6/+7
| | | | | | - Provide additional example files Notified by: Luca Morettoni <luca@morettoni.net> (author)
* - Update to 0.0.8 [1]ehaupt2006-02-103-5/+26
| | | | | | | | | | - Add additional master site [1] Changes in this release: The sound routine now uses a bandwidth limited synthesizer, which results in truer emulation. Channel 2 was updated to interpolation and dc offset. The NAS output now honors a requested endianness. Several enhancements were made to the player code, including for 64-bit architectures.
* Update to 1.36.tobez2006-02-103-7/+14
| | | | | Submitted by: maintainer PR: 93124
* Mark it BROKEN on ${OSVERSION} >= 700000 because of a malloc abuse.ehaupt2006-02-101-2/+2
|
* p5-File-Append-TempFile --> ports/devel/p5-File-Append-TempFileroam2006-02-101-0/+1
|
* Add p5-File-Append-TempFile 0.02, a Perl module for, well, appendingroam2006-02-105-0/+55
| | | | data to files using a temporary copy.
* - Fix a crash when vtysh was executed.sem2006-02-103-4/+15
| | | | | | | | - Remove useless target (install is default) in depends PR: ports/93094 Reported by: TANABE Hiroyasu <h@cosat.com>, John <freebsd@moe.co.uk> Submitted by: maintainer
* Add WITH_LDAP - build xemacs with ldap support.anray2006-02-103-2/+12
|
* - Add one more MASTER_SITESgarga2006-02-103-5/+21
| | | | | | | | | | | - Turn cp verbose to show which files are copied - Add a pkg-message - Change to use .zip sources because .tar.gz disapeared of main site - Transfer maintainership to submitter, maintainer is 9 months inactive PR: ports/92422 Submitted by: Jean Milanez Melo <jmelo@freebsdbrasil.com.br> Approved by: maintainer timeout (14 days)
* Removed configure arg `--with-ldap-no'. Now when ldap installed, xemacsanray2006-02-101-1/+0
| | | | | | compiled with ldap support. Reported by: vs
* Make this work with Perl 5.005:roam2006-02-103-1/+71
| | | | | | | | - supply a second argument to mkdir(); - bypass the podchecker invocation on Perl 5.005, which simply does not have it. Reported by: pointyhat via kris
* Use the right fix (PTHREAD_LIBS) to build on all OS versions.jmz2006-02-101-6/+4
| | | | Eagle eyes: kris
* Update to 2.0 release.demon2006-02-104-10/+8
| | | | | PR: 93084 Submitted by: maintainer
* Update to 3.27.lawrance2006-02-103-10/+18
| | | | | | | Use GCC 3.3 on systems with 3.4, due to an internal compiler error. PR: ports/93050 Submitted by: Fernan Aguero <fernan@iib.unsam.edu.ar> (maintainer)
* Update to 34.t25.d4.lawrance2006-02-1011-167/+155
| | | | | PR: ports/93052 Submitted by: Fernan Aguero <fernan@iib.unsam.edu.ar> (maintainer)
* * Remove print/acroread - it has expired on 2006-01-03vd2006-02-1029-547/+8
| | | | | | | | | | | | | * Remove print/acroread related ports: chinese/acroread5-chsfont chinese/acroread5-chtfont japanese/acroread5-jpnfont korean/acroread5-korfont print/acroread5-commfont * Update misc/instant-workstation to use print/acroread7 Reviewed by: netchild Approved by: garga (mentor)
* Update to 4.24. See http://www.jwz.org/xscreensaver/changelog.html for themarcus2006-02-102-6/+5
| | | | complete list of changes in this release.
* Update to 0.10erwin2006-02-102-7/+5
| | | | | PR: 93121 Submitted by: Lars Balker Rasmussen <lars@balker.dk> (maintainer)
* Update to 0.05003erwin2006-02-102-4/+4
| | | | | PR: 93120 Submitted by: Lars Balker Rasmussen <lars@balker.dk> (maintainer)
* Fix pkg-plist.lawrance2006-02-102-2/+0
| | | | Reported by: roam, kris
* Make it build with older gcc (4.X).tobez2006-02-102-1/+25
|
* Upgrade to the latest, 4.24. New versions of a few hacks, anddougb2006-02-102-10/+18
| | | | | | | several bug fixes, including the code that necessitated the sed command in the Makefile from the last version. Convert to OPTIONS, and warn users who have the old variables set.
* drupal-pubcookie --> ports/www/drupal-pubcookiebrooks2006-02-101-0/+1
|
* The pubcookie Drupal module is an external authentication module thatbrooks2006-02-105-0/+124
| | | | | | | | allows users to authenticate to Drupal using pubcookie. Pubcookie is used single sign-on to web-based applications at a site. The module also provide LDAP integration to populate user profiles as users register.
* - Unbreak on 4.x.kuriyama2006-02-102-2/+15
| | | | Reported by: pointyhat via kris
* Update to 1.07jylefort2006-02-103-5/+17
|
* Add a trivial patch to fix screen compiles on post-pmtx FreeBSD 7-currentkan2006-02-101-0/+15
| | | | | | systems. Approved by: maintainer timeout
* Reset inactive maintainer (several timeouts).linimon2006-02-102-2/+2
| | | | | Hat: portmgr Noticed by: lawrance
* - Update mail/getmail to 4.5.3, which includes a minor updates to the SSLclsung2006-02-102-4/+4
| | | | | | | retrievers to allow "~/" and "~username/" in paths. PR: 93108 Submitted by: maintainer (Linh Pham)
* - change distfile url.clsung2006-02-101-2/+2
| | | | | | | - change maintainer's email address. PR: 93096 Submitted by: maintainer (Kuang-che Wu)
* - change distfile url.clsung2006-02-101-3/+3
| | | | | | | - change maintainer's email address. PR: 93095 Submitted by: maintainer (Kuang-che Wu)
* - Update to 1.09clsung2006-02-102-4/+4
| | | | | PR: 93098 Submitted by: maintainer (Kuang-che Wu)
* - Respect MANPREFIXmnag2006-02-102-1/+43
| | | | | | | | | - Add rc.d script to easy startup - Bump PORTREVISION PR: 92391 Submitted by: mnag Approved by: markp (maintainer timeout, 14 days)
* - Update to 3.3.3 [1]mnag2006-02-104-22/+20
| | | | | | - Reorganize Makefile Submitted by: cokane [1]
* Wake up to the new Apache world order, and set USE_APACHE=2.0+ for usersmarcus2006-02-101-3/+2
| | | | of 2.1 and higher.
* Actually compile on amd64. This required copying in the config.guessbrooks2006-02-102-0/+22
| | | | | | | | replacement code from bsd.port.mk because pubcookie lives in a subdirectory of PREFIX and thus actually defining GNU_CONFIGURE won't work. Point hat: brooks
* BROKEN on amd64 7.0: Infinite loop during buildkris2006-02-101-0/+4
|
* Fix botched path correction that resulted in merges not working.anholt2006-02-101-5/+3
|
* Build fix for 4.x: don't use pthreadsjmz2006-02-101-2/+4
|
* * Update mail/mew to 4.2, pass maintainership to submitter [1]anray2006-02-1026-1298/+317
| | | | | | | | | * Fix works slave mail/mew-emacs20. * Slave mail/mew-mule marked BROKEN, added EXPIRATION_DATE - wait fixes 2 months. PR: ports/92808 Submitted by: Hiroto Kagotani <hiroto.kagotani@gmail.com> [1]
* - Update to 2.3-20060207mnag2006-02-102-4/+4
|
* Upgrade to 2.3-1.thierry2006-02-102-4/+4
|
* - update to 10.26.24dinoex2006-02-102-4/+4
|
* Fix build on 4.x.novel2006-02-101-4/+0
| | | | Reported by: poinrthat via kris
* Mark NOT_FOR_ARCHS=sparc64, maintainer did not fix the build for 7 daysvd2006-02-091-0/+3
| | | | | | after kris' mail Approved by: garga (mentor)
* - gdk-pixbuf and gtk12 are required only for xmms plugin, so dependnovel2006-02-091-7/+5
| | | | | | | | | | on gdk-pixbuf only if building xmms plugin and remove gtk12 dependency as it would be catched up xmms. - Don't print sed's output PR: 92347 Submitted by: novel Approved by: maintainer timeout (2 weeks)
* - mv pkg-message -> files/pkg-message.in, add it to SUB_FILESgarga2006-02-094-10/+16
| | | | | | | | - Add more MASTER_SITES [1] - Take maintainership [1] PR: ports/93078 [1] Submitted by: Joe Holden <joe@joeholden.co.uk> [1]
* Update to 0.2.4garga2006-02-092-4/+4
| | | | | PR: ports/93073 Submitted by: maintainer
* Update to 0.9.1blioux2006-02-094-8/+8
|
* * Update to 0.5.9vd2006-02-093-8/+20
| | | | | | | | | | | | * Fix build on 4.x The new version includes security fix: http://gnunet.org/libextractor/ http://www.idefense.com/application/poi/display?id=344&type=vulnerabilities PR: ports/91302 Submitted by: vd Approved by: garga (mentor), maintainer timeout (kevlo)
* Update to 1.1.0 release.ale2006-02-0910-64/+14
|
* - The final pkg-plist fixsem2006-02-091-0/+5
|
* Remove PERL_BUILD_DEPENDS/PERL_RUN_DEPENDS, they don't work for this port.lawrance2006-02-091-4/+4
| | | | Approved by: Rod Taylor <ports@rbt.ca> (maintainer)
* Update to 1.3.1.lawrance2006-02-094-10/+16
| | | | | PR: ports/93044 Submitted by: Michal Konieczny <mk@capri.pl> (maintainer)
* Update to work with PHP5.lawrance2006-02-094-2/+107
| | | | | PR: ports/92892 Submitted by: Simon Dick <simond@irrelevant.org> (maintainer)
* Bump the bootstrap binary version to 0.9.9.lawrance2006-02-092-7/+6
| | | | | | | PORTVERSION bump is not required as there are no functional changes. PR: ports/93043 Submitted by: NIIMI Satoshi <sa2c@sa2c.net> (maintainer)
* Use bash rather than /bin/sh due to some linuxisms.lawrance2006-02-091-2/+4
| | | | | PR: ports/92945 Submitted by: Paul Chvostek <paul+ports@it.ca> (maintainer)
* Update to 0.99 (2006-01-27).lawrance2006-02-096-2284/+2850
| | | | | PR: ports/92525 Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> (maintainer)
* Fix mbmon dependency after the mbmon utility was moved to sysutils/mbmon.jylefort2006-02-091-1/+1
| | | | | Reported by: pointyhat via kris No cookie for: jylefort
* - Update to 1.0.16pav2006-02-094-15/+29
| | | | | PR: ports/92974 Submitted by: Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
* - Take maintainershipgarga2006-02-091-1/+1
| | | | | PR: ports/93076 Submitted by: Joe Holden <joe@joeholden.co.uk>
* - Take maintainershipgarga2006-02-091-1/+1
| | | | | PR: ports/93077 Submitted by: Joe Holden <joe@joeholden.co.uk>
* - Add more MASTER_SITESgarga2006-02-091-2/+3
| | | | | | | - Take maintainership PR: ports/93075 Submitted by: Joe Holden <joe@joeholden.co.uk>
* Depessimize last commit, port only dumps core onehaupt2006-02-091-2/+2
| | | | ${ARCH} == "amd64" && ${OSVERSION} >= 700000
* Fix WWWgarga2006-02-091-1/+1
| | | | | PR: ports/93041 Submitted by: Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
* Mark it BROKEN on amd64, dumps core during runtime.ehaupt2006-02-091-1/+7
| | | | Notified by: kris via pointyhat
* - Add missing pkg-install.in script.flz2006-02-092-1/+8
| | | | | | | - Fix whitespace. Reported by: pointyhat via kris Pointy hat to: self
* Update to 2006.01.25.lawrance2006-02-092-10/+9
| | | | | PR: ports/93051 Submitted by: Fernan Aguero <fernan@iib.unsam.edu.ar> (maintainer)
* Update to 1.2.lawrance2006-02-093-7/+6
| | | | | PR: ports/93027 Submitted by: Dryice Liu <dryice@dryice.name> (maintainer)
* Update to 0.6.1.lawrance2006-02-093-6/+6
| | | | | PR: ports/93013 Submitted by: Dryice Liu <dryice@dryice.name> (maintainer)
* Update to 0.88.lawrance2006-02-093-47/+49
| | | | | PR: ports/93010 Submitted by: Shaun Amott <shaun@inerd.com> (maintainer)
* Update to sysgather-1.0pre5.roam2006-02-093-4/+7
|
* Update to 3.0.1.lawrance2006-02-095-11/+27
| | | | | PR: ports/92990 Submitted by: Brad Huntting <huntting@glarp.com> (maintainer)
* Update to 3.2.3.lawrance2006-02-093-9/+29
| | | | | PR: ports/92989 Submitted by: Babak Farrokhi <babak@farrokhi.net> (maintainer)
* - Add dependency to sdl_mixerbarner2006-02-091-1/+1
| | | | Reported by: pointyhat via kris
* Update to 4.4.20.2vd2006-02-098-16/+68
| | | | | | PR: ports/93031 Submitted by: Matthias Andree <matthias.andree@gmx.de> (maintainer) Approved by: garga (mentor)
* Add TARPIT patch by Chris Johnson <dcj-qmaildoc@palomine.net>garga2006-02-092-0/+12
| | | | | | | | | | | | What's tarpitting? It's the practice of inserting a small sleep in an SMTP session for each RCPT TO after some set number of RCPT TOs. The idea is to thwart spammers who would hand your SMTP server a single message with a long list of RCPT TOs. If a spammer were to attempt to use your server to relay a message with, say, 10,000 recipients, and you inserted a five-second delay for each recipient after the fiftieth, the spammer would be "tarpitted" and would likely assume that his connection had stalled and give up. Asked by: Joao Ricardo Mendes Pecanha <joao@redepegasus.com.br>
* Change maintainershipvd2006-02-091-1/+1
| | | | | | PR: ports/93024 Submitted by: Byung-Hee HWANG <bh@izb.knu.ac.kr> (old maintainer) Approved by: garga (mentor, implicitly), Chang bom Yoon <changbom.yoon@gmail.com> (new maintainer)
* Fix dependency.erwin2006-02-091-1/+2
| | | | | | | PR: 93028 Submitted by: Lars Balker Rasmussen <lars@balker.dk> Approved by: Fernan Aguero <fernan@iib.unsam.edu.ar> (maintainer) Noticed by: pointyhat (kris)
* It does not build with old Perl, so require Perl from ports.tobez2006-02-091-5/+2
|
* Update to 3.49; assign maintainer to perl@.tobez2006-02-092-5/+5
|
* Update to 0.25.tobez2006-02-092-4/+4
|
* Update to 3.16.tobez2006-02-092-4/+4
|
* Fix libpng-configache2006-02-092-4/+4
| | | | Submitted by: Jo Rhett <jrhett@svcolo.com>
* Add an entry for ports/devel/giterwin2006-02-091-0/+1
|
* Remove expired port finance/emmavs2006-02-0911-182/+1
|
* Make it fetchable.vanilla2006-02-091-2/+3
| | | | Submitted by: fenner's notify.
* Make it fetchable.vanilla2006-02-091-1/+2
| | | | Submitted by: fenner's notice
* - Startup script: remove FreeBSD from KEYWORDSsem2006-02-091-1/+1
|
* Add zip as build dependency too.ale2006-02-092-0/+2
| | | | Spotted by: pointyhat
* Presenting GNOME 2.12.3 for FreeBSD.marcus2006-02-092-3/+3
|
* Update to 2.2.0-RC0.nork2006-02-093-5/+6
|
* - support for options:dinoex2006-02-091-6/+33
| | | | | | | | | | APACHE_DATADIR,APACHE_CGIBIN_ROOT,APACHE_DOCUMENT_ROOT - new options: APACHE_LOCALSTATE_DIR,APACHE_LOGFILE_DIR Submitted by: Bernard J. Treves Brown - support for options: DEFAULT_PATH
* * Update to 0.1.7, and add support for file system type detection (currently,marcus2006-02-0914-201/+307
| | | | | | | | | | | | only UFS file systems are handled by kqueue, but this might change in the future if kqueue on NFS proves stable) [1] * Switch py-gamin to use USE_FAM+WANT_FAM_SYSTEM * Switch test target to regression-test so that pointyhat will run tests automatically Submitted by: ale [1]
* update to latest versions (2006-01-28 according to website)edwin2006-02-092-40/+45
|
* - Update to 0.1.1clsung2006-02-093-6/+9
| | | | | | | - Take maintainership PR: 93036 Submitted by: chinsan <chinsan dot tw AT gmail dot com>
* Update to 3.2.6.lawrance2006-02-092-7/+5
| | | | | PR: ports/92747 Submitted by: Nicola Vitale <nivit@email.it> (maintainer)
* Put PORTEPOCH back.lawrance2006-02-091-0/+1
| | | | Reported by: chkversion
* - 1) Set permissions as needed, thus opendx-samples won't change them;thierry2006-02-091-2/+6
| | | | | | | | | - 2) Define JAVA_VERSION. (No need to bump PORTREVISION) Reported by: pointyhat via Kris (1) Reminded by: hq (2)
* - Fix step to fix: don't touch files belong to omniORB portsem2006-02-092-0/+38
|
* Upgrade to version 5.1.joerg2006-02-092-4/+4
|
* Try to clean up lib/xemacs directorykris2006-02-091-0/+1
|
* Dont compile blas as it is not installed.jmz2006-02-091-4/+5
|
* BROKEN: Incorrect pkg-plistkris2006-02-091-0/+2
|
* - Update to 0.7.1.fix1mnag2006-02-092-4/+5
| | | | | PR: 93025 Submitted by: maintainer
* - Update to 1.10mnag2006-02-092-5/+4
| | | | | PR: 93022 Submitted by: maintainer
* - Update to 1.3.1mnag2006-02-092-4/+4
| | | | | PR: 93020 Submitted by: maintainer
* - Update to 1.10mnag2006-02-092-4/+4
| | | | | PR: 93021 Submitted by: maintainer
* - Update to 0.2.3mnag2006-02-092-4/+4
| | | | | PR: 93001 Submitted by: maintainer
* - Update to 20060207tdb2006-02-092-4/+4
| | | | | PR: 93004 Submitted by: Serge Gagnon <serge.gagnon@b2b2c.ca> (maintainer)
* Update to 5.1vd2006-02-092-22/+13
| | | | | | | PR: ports/92756 Submitted by: Ying-Chieh Liao <ijliao@csie.nctu.edu.tw> Reworked by: Frank Laszlo <laszlof@vonostingroup.com> (maintainer) Approved by: garga (mentor)
* Bump PORTREVISION to synchronize Wand-config with elimination of libdpstknobutaka2006-02-091-0/+1
| | | | caused by upgrade of xorg-libraries.
* Update to DAT 4692jeh2006-02-092-4/+4
|
* Fix unfetchable distfilevd2006-02-092-5/+5
| | | | | | PR: ports/93003 Submitted by: Serge Gagnon <serge.gagnon@b2b2c.ca> Approved by: garga (mentor)
* Update to 0.3.27.osa2006-02-094-8/+8
|
* - Update to 0.3.5ahze2006-02-092-7/+8
|
* Update to 2.1.1.lawrance2006-02-093-61/+13
| | | | | PR: ports/92906 Submitted by: Jean-Baptiste Quenot <jb.quenot@caraldi.com> (maintainer)
* Fix master site and WWW.lawrance2006-02-092-2/+2
| | | | | | PR: ports/92768 Submitted by: Jean Milanez Melo Approved by: Xavier Beaudouin <kiwi@oav.net> (maintainer)
* Update to 5.99.lawrance2006-02-096-130/+62
| | | | | | PR: ports/92150 Submitted by: Andrew Pantyukhin <infofarmer@gmail.com> Approved by: Tod McQuillin <devin@spamcop.net> (maintainer)
* Fix pkg-plist.lawrance2006-02-094-34/+54
| | | | | | | | Allow PostgreSQL to be used instead of MySQL (from Brian.Johnson at stellent.com). Add missing php-gd dependency when WITH_GD is specified. PR: ports/92825 Submitted by: Alex Varju <freebsd-ports@varju.ca> (maintainer)
* Un-FORBID: Subvert broken logic for disabling confirmation email.vs2006-02-092-12/+4
| | | | | | Cleanup a bit while here. Approved by: maintainer
* Update to 2.5.lawrance2006-02-082-4/+4
| | | | | PR: ports/92903 Submitted by: Soeren Straarup <xride@x12.dk> (maintainer)
* Clean up cgi-bin dir.naddy2006-02-082-1/+2
| | | | Submitted by: kris (pointyhat)
* Update to 3.1.2.nork2006-02-086-36/+36
| | | | | | Submitted by: tmclaugh References: http://lists.freebsd.org/pipermail/freebsd-eclipse/2006-January/000327.html Noticed by: Panagiotis Astithas <past@ebs.gr>
* Add another master site.lawrance2006-02-081-11/+7
| | | | | | | | | Convert to USE_PHP. Improve checks for php4-db GDBM support. PR: ports/92225 Submitted by: Stefan Bethke <stb@lassitu.de> Approved by: voisine@yahoo.com (maintainer, timeout 14 days)
* Update to 1.0.12.lawrance2006-02-082-5/+5
| | | | | | PR: ports/92500 Submitted by: KIMURA Yasuhiro <yasu@utahime.org> Approved by: Masafumi Otsune <info@otsune.com> (maintainer)
* Update to 3.65.lawrance2006-02-083-73/+17
| | | | | | PR: ports/92182 Submitted by: "Choe, Cheng-Dae" <whitekid@gmail.com> Approved by: dbader@ece.unm.edu (maintainer, timeout 14 days)
* Mark deprecated and set to expire.lawrance2006-02-081-0/+3
| | | | | | PR: ports/92307 Submitted by: Jean Milanez Melo <jmelo@freebsdbrasil.com.br> Approved by: kurlon@hotmail.com (maintainer, timeout 14 days)
* Update master sites and WWW.lawrance2006-02-083-5/+5
| | | | | | | | Add SHA256. PR: ports/92267 Submitted by: Jean Milanez Melo <jmelo@freebsdbrasil.com.br> Approved by: webmaster@topfx.com (maintainer, timeout 14 days)
* Update to 2.2.0beta8 and cosmetic sort in pkg-plist.nork2006-02-083-28/+29
|
* * Try to fix xemacs-devel japanese ports.anray2006-02-087-0/+13
| | | | | | | * I don't use the japanese. Pass maintainership for ja-xemacs-devel-* to ports@. Reported by: pointyhat(kris)
* - Fix pkg-plist on 5.x+sem2006-02-082-2/+2
| | | | | Reported by: kris mail Pointy hat to: me
* zh-pcmanfm --> ports/chinese/pcmanfmvanilla2006-02-081-0/+1
|
* Add pcmanfm 0.1.9.5, PCMan File Manager.vanilla2006-02-085-0/+49
| | | | | PR: ports/92746 Submitted by: chinsan <chinsan.tw@gmail.com>
* I actually wanted this knob to be `on' by default: not everyone wants Gnomedanfe2006-02-081-1/+1
| | | | pieces installed just to be able to edit some texts.
* - Update to 12.0 and unbreakdanfe2006-02-083-48/+46
| | | | | | | | - Make WITH_TEA_ONLY knob work as intended - Turn WITH_ASPELL kbob on by default, since aspell is pretty standard dependency these days - Lower required GCC version to 3.3 (builds fine with it too) - Remove explicit USE_REINPLACE, it's implied now
* - Make sure the rc script creates and chowns the PID file before runninglawrance2006-02-0814-56/+63
| | | | | | | | | | 'daemon'. No need for the port to create a PID file at install time (it would just be eaten by rc.d/cleanvar anyway). - Use 'ps -o comm' to grab a suitable procname. 'ps -o command' is not reliable enough. - Bump PORTREVISION since these changes fix broken rc script operation. Approved by: maintainer timeout (as part of previous update)
* Remove needless quoting and fix incorrect IGNORE text.danfe2006-02-081-2/+2
| | | | Approved by: maintainer timeout
* Update to 5.64erwin2006-02-083-9/+16
| | | | | PR: 92607 Submitted by: Lars Balker Rasmussen <lars@balker.dk> (maintainer)
* Update to 0.5erwin2006-02-082-5/+5
| | | | | PR: 92099 Submitted by: Lars Balker Rasmussen <lars@balker.dk> (maintainer)
* Update to 5.805erwin2006-02-083-16/+16
| | | | | | | | Patch used from 92460, which also does some cleaning of pkg-plist. PR: 92310, 92460 Submitted by: Lars Balker Rasmussen <lars@balker.dk>, tobez Approved by: maintainer timeout (2 weeks)
* Chase a silent update.thierry2006-02-082-5/+4
| | | | | | Diff available at <http://pompo.net/ports/CImg-1-11_060104-060109.diff>. Reported by: pointyhat via Kris
* Update to 2.13.2.demon2006-02-083-23/+6
|
* Add bsnmpd and snmpd to REQUIRE section so mrtg daemon starts afterdemon2006-02-081-1/+1
| | | | | | local snmpd. Submitted by: Jan Srzednicki <w@expro.pl>
* Remove expired port science/glensvd2006-02-089-116/+1
| | | | Approved by: garga (mentor)
* Fix plist.anray2006-02-082-3/+4
| | | | Reported by: pointyhat(kris)
* - Drop maintainershiptdb2006-02-081-1/+1
| | | | | PR: 92978 Submitted by: maintainer
* Fix expiration date (2005->2006)vs2006-02-081-1/+1
|
* Fix plist.anray2006-02-082-1/+5
| | | | Reported by: pointyhat(kris)
* Fix plist.novel2006-02-082-0/+2
| | | | | Submitted by: Stepan Zastupov (maintainer) Reported by: pointyhat via kris
* Remove expired portvd2006-02-0810-109/+1
| | | | Approved by: garga (mentor)
* - Fix build with libtool 1.5.22_1barner2006-02-081-0/+10
| | | | Reported by: pointyhat via kris
* Remove expired port comms/qtpcrvs2006-02-086-69/+1
|
* Update to 1.04erwin2006-02-083-5/+13
| | | | | PR: 93030 Submitted by: Lars Balker Rasmussen <lars@balker.dk> (maintainer)
* Update to 0.01004erwin2006-02-082-4/+4
| | | | | PR: 93029 Submitted by: Lars Balker Rasmussen <lars@balker.dk> (maintainer)