ĩz155726 232 2951 251 354 1566 562 197 234 388 208 126 200 187 213 128 239 141 112 141 222 251 300 300 277 339 241 264 249 280 358 379 118 123 116 181 288 264 194 187 317 503 104 228 160 277 182 269 174 219 494 147 210 112 151 329 134 1757 120 230 1027 274 225 135 165 142 128 394 113 115 555 141 141 117 122 111 116 120 187 603 196 236 195 180 186 230 362 109 256 246 268 122 193 387 210 214 198 208 239 182 156 327 183 193 193 185 217 241 198 758 148 196 491 126 112 174 150 188 146 164 148 110 192 141 108 293 320 309 168 128 119 129 113 118 142 118 117 116 118 142 122 118 152 142 115 125 122 117 123 122 123 136 127 125 130 152 119 118 113 143 121 453 112 457 162 223 190 109 166 222 177 177 148 167 110 153 107 187 167 190 107 416 127 239 170 261 157 157 157 157 187 158 326 157 107 188 108 107 234 190 209 190 268 118 507 126 124 107 784 123 195 223 211 252 183 210 276 179 230 276 110 188 230 222 215 265 111 148 119 165 175 134 237 127 K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-11T09:38:18.000000Z K 7 svn:log V 2856 Checkpoint a major round of changes: * 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 [1] END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-11T09:48:53.000000Z K 7 svn:log V 157 Use ${mailto} portbuild.conf variable instead of hard-coded list Requested by: lofi Submitted by: linimon No more accidental portbuild spam: kris and krion END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-11T09:49:53.000000Z K 7 svn:log V 260 * Use ${mailto} portbuild.conf variable instead of hard-coded list [1] * 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] END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-11T10:01:37.000000Z K 7 svn:log V 1471 Support for building ports in a jail instead of a chroot. If use_jail=1 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). END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-11T10:05:01.000000Z K 7 svn:log V 468 * In kill_procs(), pass in the directory and mountpoint as separate 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. END K 10 svn:author V 6 oliver K 8 svn:date V 27 2006-02-11T11:25:15.000000Z K 7 svn:log V 101 fix compilation if libevent is installed PR: ports/92673 Submitted by: Raaf END K 10 svn:author V 6 oliver K 8 svn:date V 27 2006-02-11T11:37:46.000000Z K 7 svn:log V 138 make it possible to change the program which is used for authpipe PR: ports/92681 Submitted by: Henry Karpatskij END K 10 svn:author V 3 sem K 8 svn:date V 27 2006-02-11T11:43:52.000000Z K 7 svn:log V 295 * Update of pxlib to 0.6.0 * 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 END K 10 svn:author V 5 novel K 8 svn:date V 27 2006-02-11T11:52:39.000000Z K 7 svn:log V 113 Add gothard 1.3, ssh through https proxy tunnel. PR: ports/93177 Submitted by: Anton Karpov END K 10 svn:author V 5 novel K 8 svn:date V 27 2006-02-11T11:52:46.000000Z K 7 svn:log V 32 gothard --> ports/net/gothard END K 10 svn:author V 3 sem K 8 svn:date V 27 2006-02-11T12:14:01.000000Z K 7 svn:log V 107 - Fix dependencies when WITHOUT_X11 defined PR: ports/93047 Submitted by: Travis Poppe END K 10 svn:author V 5 novel K 8 svn:date V 27 2006-02-11T12:20:05.000000Z K 7 svn:log V 93 Used wrong name for the port, so remove it. The port with the correct name will be re-added. END K 10 svn:author V 5 novel K 8 svn:date V 27 2006-02-11T12:25:13.000000Z K 7 svn:log V 118 (Re)add gotthard 1.3, ssh through https proxy tunnel. PR: ports/93177 Submitted by: Anton Karpov END K 10 svn:author V 5 novel K 8 svn:date V 27 2006-02-11T12:25:19.000000Z K 7 svn:log V 34 gotthard --> ports/net/gotthard END K 10 svn:author V 6 ehaupt K 8 svn:date V 27 2006-02-11T12:47:40.000000Z K 7 svn:log V 143 Add devel/p5-Data-Types, a perl module for validating and converting data types PR: 93169 Submitted by: hideo END K 10 svn:author V 6 ehaupt K 8 svn:date V 27 2006-02-11T12:47:47.000000Z K 7 svn:log V 46 p5-Data-Types --> ports/devel/p5-Data-Types END K 10 svn:author V 6 oliver K 8 svn:date V 27 2006-02-11T13:04:30.000000Z K 7 svn:log V 17 update to 0.2.18 END K 10 svn:author V 6 gerald K 8 svn:date V 27 2006-02-11T13:09:01.000000Z K 7 svn:log V 46 Update to the 20060209 snapshot of GCC 4.0.3. END K 10 svn:author V 5 tobez K 8 svn:date V 27 2006-02-11T13:36:53.000000Z K 7 svn:log V 127 Make it always use bundled sqlite source, since it does not work well if it finds and uses installed databases/sqlite library. END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T14:42:41.000000Z K 7 svn:log V 153 Add more specific COMMENT. Add SHA256. PR: ports/90007 Submitted by: chinsan Approved by: trevor (maintainer, timeout 2 months) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T14:42:45.000000Z K 7 svn:log V 202 When APR_UTIL_WITHOUT_THREADS is not set, explicitly enable threads. PR: ports/91570 Submitted by: Patrick Oliver Approved by: rodrigc@crodrigues.org (maintainer, timeout 4 weeks) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T14:42:50.000000Z K 7 svn:log V 202 Fix detection of called/calling numbers when there is no calling number. PR: ports/91284 Submitted by: Torfinn Ingolfsen Approved by: possamai@xs4all.nl (maintainer, timeout 5 weeks) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T14:42:54.000000Z K 7 svn:log V 179 Update to 0.52.2. PR: ports/91741 Submitted by: Milan Obuch Reviewed by: Ed Culp Approved by: yds@CoolRat.org (maintainer, timeout 4 weeks) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T14:42:59.000000Z K 7 svn:log V 241 Add a patch to make mod_fastcgi work with Apache 2.2. Convert to USE_APACHE framework. PR: ports/91190 Submitted by: Dominic Mitchell Approved by: JunSeon Oh (maintainer, timeout 5 weeks) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T14:43:04.000000Z K 7 svn:log V 143 Update to 1.3.25. PR: ports/91704 Submitted by: ehaupt Approved by: Dean Hollister (maintainer, timeout 4 weeks) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T14:43:10.000000Z K 7 svn:log V 166 Out with the old rc.d script, in with the new. PR: ports/91442 (requested by) Submitted by: Mike Approved by: mi (maintainer, timeout 4 weeks) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T14:43:14.000000Z K 7 svn:log V 151 Update to 0.1.1. PR: ports/91753 Submitted by: Fredrik Lindberg Approved by: henriknj@0xmilk.org (maintainer, timeout 4 weeks) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T14:43:19.000000Z K 7 svn:log V 182 Correctly define APMDEVICE for FreeBSD. PR: ports/91815 Submitted by: Darren L. LaChausse Approved by: thorsten.greiner@web.de (maintainer, timeout 4 weeks) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T14:44:20.000000Z K 7 svn:log V 260 Switch to the 5.x binary (IGNORE on 4.x). Add some additional instructions required for ymessenger to run. Bump PORTREVISION. PR: ports/91491 Submitted by: Pedro F. Giffuni Approved by: sethk@meowfishies.com (maintainer, timeout 4 weeks) END K 10 svn:author V 7 vanilla K 8 svn:date V 27 2006-02-11T15:10:31.000000Z K 7 svn:log V 282 - Update to 0.16.8 - Added two knobs: WITHOUT_ESOUND and WITHOUT_NLS - Tweaked CONFIGURE_ARGS by removing old arguments (or defaults) and stopped it from compiling the path of libraries into the binaries. PR: ports/93166 Submitted by: Sean Farley END K 10 svn:author V 7 vanilla K 8 svn:date V 27 2006-02-11T15:11:28.000000Z K 7 svn:log V 22 Upgrade to 0.16.8.02. END K 10 svn:author V 7 vanilla K 8 svn:date V 27 2006-02-11T15:13:21.000000Z K 7 svn:log V 27 Upgrade to latest version. END K 10 svn:author V 2 cy K 8 svn:date V 27 2006-02-11T15:13:51.000000Z K 7 svn:log V 25 Make LATEST_LINK unique. END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T15:18:25.000000Z K 7 svn:log V 84 Fix typo in knob name. Submitted by: Scot Hetzel (maintainer) END K 10 svn:author V 3 hrs K 8 svn:date V 27 2006-02-11T15:35:24.000000Z K 7 svn:log V 195 - Set UNAME_s=Linux since FreeBSD's native uname(1) is invoked from the wrapper script under some circumstances[*]. Bump PORTREVISION. - Add another site to MASTER_SITES. Reported by: nyan END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T16:10:56.000000Z K 7 svn:log V 166 Mark DEPRECATED (mastersite gone, no longer maintained). De-orbit in a couple months. PR: ports/92985 Submitted by: Jean Milanez Melo END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-11T16:19:59.000000Z K 7 svn:log V 97 Update to 1.2. PR: ports/93182 Submitted by: Dirk Engling (maintainer) END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-11T16:20:07.000000Z K 7 svn:log V 93 Update to 1.60 PR: 93174 Submitted by: Lars Balker Rasmussen (maintainer) END K 10 svn:author V 5 novel K 8 svn:date V 27 2006-02-11T16:53:33.000000Z K 7 svn:log V 222 - Fix building when an older version of bmpx is installed [1] - Remove curl dependency since it is not needed anymore [2] Reported by: Anish Mistry [1], David Le Brun [2] END K 10 svn:author V 8 matusita K 8 svn:date V 27 2006-02-11T17:23:19.000000Z K 7 svn:log V 405 Fix some errors, including: - Build fix when WITH_VMWARE_GTK is set. - Reorder pkg-plist so that @unexec vmware-guestd.sh successfully done. - Create directories for server modules, since xserver may not be installed. Even though this makes no "installed" content change, but bump PORTREVISION since pkg-plist/pkg-plist.tools are changed. PR: 93100 Submitted by: Scot Hetzel, swhetzel at gmail dotcom END K 10 svn:author V 4 lofi K 8 svn:date V 27 2006-02-11T17:40:20.000000Z K 7 svn:log V 11 Fix plist. END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-11T17:51:24.000000Z K 7 svn:log V 133 Add p5-DBIx-Class-WebForm 0.02, CRUD methods for DBIx::Class. PR: ports/93188 Submitted by: Lars Balker Rasmussen END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-11T17:51:40.000000Z K 7 svn:log V 66 p5-DBIx-Class-WebForm --> ports/databases/p5-DBIx-Class-WebForm END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-11T17:52:27.000000Z K 7 svn:log V 182 Add p5-Catalyst-View-TT-ControllerLocal 0.02, catalyst TT View with template names relative to the Controller. PR: ports/93189 Submitted by: Lars Balker Rasmussen END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-11T17:52:43.000000Z K 7 svn:log V 88 p5-Catalyst-View-TT-ControllerLocal --> ports/www/p5-Catalyst-View-TT-ControllerLocal END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-11T18:08:01.000000Z K 7 svn:log V 174 Add p5-Catalyst-Example-InstantCRUD , create a working CRUD Catalyst example with the least of effort. PR: ports/93192 Submitted by: Lars Balker Rasmussen END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-11T18:08:15.000000Z K 7 svn:log V 80 p5-Catalyst-Example-InstantCRUD --> ports/www/p5-Catalyst-Example-InstantCRUD END K 10 svn:author V 4 mezz K 8 svn:date V 27 2006-02-11T18:10:29.000000Z K 7 svn:log V 125 -Update to 0.5. -Make this port slave aware, the transmission-gtk2 is coming. -Update the pkg-descr, copied from the README. END K 10 svn:author V 4 mezz K 8 svn:date V 27 2006-02-11T18:12:45.000000Z K 7 svn:log V 400 Transmission is a free, lightweight BitTorrent client. It features a simple, intuitive interface on top on an efficient, cross-platform back-end. Transmission is open source (MIT license) and runs on Mac OS X (Cocoa interface), Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface) and BeOS (native interface). WWW: http://transmission.m0k.org/ -- It is a slave port, the master is net-p2p/transmission. END K 10 svn:author V 4 mezz K 8 svn:date V 27 2006-02-11T18:14:10.000000Z K 7 svn:log V 54 transmission-gtk2 --> ports/net-p2p/transmission-gtk2 END K 10 svn:author V 4 ahze K 8 svn:date V 27 2006-02-11T18:57:15.000000Z K 7 svn:log V 116 - Fix build with new libquicktime Submitted by: ankon via irc.freenode.org/#FreeBSD-GNOME Obtained from: mjpeg cvs END K 10 svn:author V 4 ahze K 8 svn:date V 27 2006-02-11T19:15:54.000000Z K 7 svn:log V 19 - Update to 2.8.12 END K 10 svn:author V 4 ahze K 8 svn:date V 27 2006-02-11T19:17:59.000000Z K 7 svn:log V 58 - Revert to making ffmpeg default instead of ffmpeg-devel END K 10 svn:author V 8 jylefort K 8 svn:date V 27 2006-02-11T19:54:22.000000Z K 7 svn:log V 231 Add xmms-msa. xmms-msa is a spectrum analyzer with some nice features like a skin support and some visualization modes (mirror, reverse, etc). WWW: http://www.xmms.org/ PR: ports/92809 Submitted by: exprim END K 10 svn:author V 8 jylefort K 8 svn:date V 27 2006-02-11T19:55:14.000000Z K 7 svn:log V 37 xmms-msa --> ports/graphics/xmms-msa END K 10 svn:author V 3 mux K 8 svn:date V 27 2006-02-11T20:08:53.000000Z K 7 svn:log V 1663 Update to csup-snap-20060211: - Add support for retries when the connection is rejected by the server and the associated -1 and -r maxRetries options. - Add missing description for the -4 and -6 options in csup.1. - Ignore the return value of a chflags() call in fattr_install() to match CVSup. This fixes csup over NFS. - Correctly handle any locking error with assertions. - Make the multiplexer code fully dynamic and cancelable. - Handle errors in the sender and receiver threads correctly by closing the multilpexer and waking up all the threads blocked on any of the channels. This means we don't hang when being disconnected for instance. - Make several functions of the chan API, most notably chan_read() and chan_write() take a struct chan * instead of an id. This saves a mutex lock and unlock for each call to these functions, and also reduces the contention on the multiplexer lock. - Change the stream API so that we can associate a stream with a void * to support the previous change. Update all the consumers. - Optimize the scheduling of the sender thread so that it's not possible to have some channels starve others. - Optimize mkdirhier() so that it saves many access() calls on average. - Always set the "no rsync" option to the collections since we don't support the rsync updating algorithm yet. I have yet to see a CVSup server trying to send me rsync updates of files in checkout mode but better safe than sorry. - Fix the RCS keyword handling. Updating the OpenBSD-src collection from an OpenBSD CVSup server now works. - Correctly handle deletion requests for directories. - And various minor bugfixes. END K 10 svn:author V 6 olgeni K 8 svn:date V 27 2006-02-11T20:43:38.000000Z K 7 svn:log V 25 Upgrade to version 1.58. END K 10 svn:author V 8 jylefort K 8 svn:date V 27 2006-02-11T20:57:38.000000Z K 7 svn:log V 132 - Update to 0.96 - Add NLS option - Change default setting of TLS and IPV6 knobs to "on" PR: ports/93196 Submitted by: maintainer END K 10 svn:author V 8 netchild K 8 svn:date V 27 2006-02-11T21:03:14.000000Z K 7 svn:log V 929 Reset maintainership to ports@ after ~4 months without any response to any PR. Thanks for contributing. Since the acroread7 port is a somewhat important port for our users, I will hand it over to emulation@ if no _active_ *committer* takes it before the ports freeze. While I'm here: - fix a little nit in the csound port (I think the intention was to create no backup file instead of creating one with a "-e" extension) - set ARCH to i386 in the amd64 case for the acroread7 port. This is a work-around to be able to install everything when a dependency is not already installed (ARCH is read-only in sub-makes, so the dependencies can't change it). This should be removed when the dependencies are fixed or converted to use bsd.linux-rpm.mk. [1] Not objected to by: portmgr (explicit: krion; silence: rest) Maintainer timeout: ~4 months Submitted by: Sangwoo Shim [1] PR: 87985 [1] END K 10 svn:author V 7 thierry K 8 svn:date V 27 2006-02-11T21:20:18.000000Z K 7 svn:log V 177 Replace tr by DOS2UNIX: when using tr with LANG or LC_ALL set to a multibyte locale, "Illegal byte sequence" were reported. Reported by: Derek Kulinski END K 10 svn:author V 7 thierry K 8 svn:date V 27 2006-02-11T21:40:39.000000Z K 7 svn:log V 128 Attempt to fix on amd64. Submitted by: Igor Pokrovsky (maintainer) Reported by: pointyhat via Kris END K 10 svn:author V 5 anray K 8 svn:date V 27 2006-02-11T21:40:51.000000Z K 7 svn:log V 41 Fix plist. Reported by: pointyhat(kris) END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-11T21:57:32.000000Z K 7 svn:log V 72 Attempt to fix the bogus missing dependencies during the package build. END K 10 svn:author V 6 anholt K 8 svn:date V 27 2006-02-11T22:04:23.000000Z K 7 svn:log V 47 Remove empty patch file. Reported by: thierry END K 10 svn:author V 6 marcus K 8 svn:date V 27 2006-02-11T23:01:40.000000Z K 7 svn:log V 33 Remove a duplicate PORTREVISION. END K 10 svn:author V 7 thierry K 8 svn:date V 27 2006-02-11T23:01:47.000000Z K 7 svn:log V 297 Chase a silent update and make fetchable again. - our patches to support FreeBSD have been included; - support of Intel C++ and Fortran compilers for Linux has been added. Full diff available at . Reported by: Ion-Mihai Tetcu on #bsdports END K 10 svn:author V 4 ahze K 8 svn:date V 27 2006-02-11T23:03:49.000000Z K 7 svn:log V 20 - Update to 0.11.18 END K 10 svn:author V 4 maho K 8 svn:date V 27 2006-02-11T23:09:16.000000Z K 7 svn:log V 22 Update to SRC680_m156 END K 10 svn:author V 6 marcus K 8 svn:date V 27 2006-02-11T23:09:42.000000Z K 7 svn:log V 459 Update to 2.8.4. * Add a check to see if PORTREVISION=0 in master ports. [1] * Add checks for direct use of the pkg_* commands. [2] * Add a check that if a port is new, it is not maintained by ports@FreeBSD.org. [3] * Do not warn about .la files if USE_KDELIBS_VER is set. [4] * Add a check for deprecated use of USE_RC_SUBR along with checks for its proper use. [5] PR: 91324 [1] 92888 [2] 92665 [3] 92586 [4] Submitted by: lofi [4] dougb [5] END K 10 svn:author V 6 gerald K 8 svn:date V 27 2006-02-11T23:22:30.000000Z K 7 svn:log V 46 Update to the 20060210 snapshot of GCC 4.1.0. END K 10 svn:author V 6 gerald K 8 svn:date V 27 2006-02-11T23:23:18.000000Z K 7 svn:log V 46 Update to the 20060207 snapshot of GCC 3.4.6. END K 10 svn:author V 4 maho K 8 svn:date V 27 2006-02-11T23:24:00.000000Z K 7 svn:log V 24 remove upstreamed patch END K 10 svn:author V 4 ahze K 8 svn:date V 27 2006-02-11T23:26:27.000000Z K 7 svn:log V 29 - Remove unneeded post-patch END K 10 svn:author V 4 mnag K 8 svn:date V 27 2006-02-11T23:55:26.000000Z K 7 svn:log V 18 - Update to 4.3p2 END K 10 svn:author V 8 netchild K 8 svn:date V 27 2006-02-11T23:55:41.000000Z K 7 svn:log V 19 Update to 8.1.036. END K 10 svn:author V 4 mnag K 8 svn:date V 27 2006-02-11T23:59:28.000000Z K 7 svn:log V 27 Forget to add HPN patches. END K 10 svn:author V 5 anray K 8 svn:date V 27 2006-02-12T00:18:46.000000Z K 7 svn:log V 93 Update to 2.3 PR: ports/92961 Submitted by: Jean Milanez Melo END K 10 svn:author V 6 glewis K 8 svn:date V 27 2006-02-12T00:28:23.000000Z K 7 svn:log V 507 . Link with the system libz instead of building the our own internal copy. This should have the following effects: . Fix problems experienced by programmes that dynamically create their own copy of the JVM and are linked against the system's zlib (e.g., eclipse). . Reduce the potential for zlib based security problems affecting the JDK. This is similar to the patch in the PR, but was actually backported from the patches for the jdk15 port, so its a touch different. PR: 92459 END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T01:27:30.000000Z K 7 svn:log V 99 Update to 4.37. PR: ports/93116 Submitted by: Maxime Zakharov (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T01:27:37.000000Z K 7 svn:log V 138 Update to 3.6.3 20060211.0037 cvs snap. PR: ports/93173 Submitted by: Ion-Mihai "IOnut" Tetcu (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T01:27:42.000000Z K 7 svn:log V 98 Update to 0.3.4. PR: ports/93129 Submitted by: Andreas Kohn (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T01:27:48.000000Z K 7 svn:log V 83 Update to 0.4.7. PR: ports/93118 Submitted by: (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T01:59:06.000000Z K 7 svn:log V 89 Update to 1.10.0. PR: ports/92822 Submitted by: Rod Taylor (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T02:06:54.000000Z K 7 svn:log V 132 Add two patches missed in the last update: Update to 1.10.0. PR: ports/92822 Submitted by: Rod Taylor (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T02:11:31.000000Z K 7 svn:log V 264 Add a patch to make mod_fastcgi work with Apache 2.2 (missed on last commit) Convert to USE_APACHE framework. PR: ports/91190 Submitted by: Dominic Mitchell Approved by: JunSeon Oh (maintainer, timeout 5 weeks) END K 10 svn:author V 4 mnag K 8 svn:date V 27 2006-02-12T03:21:11.000000Z K 7 svn:log V 16 - Update to 0.4 END K 10 svn:author V 4 mnag K 8 svn:date V 27 2006-02-12T03:44:45.000000Z K 7 svn:log V 162 - Temporary disable build of html docs. - Fix NOPORTDOCS build. - Bump PORTREVISION Reported by: Tobias Roth , Al Arzaga END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T03:50:38.000000Z K 7 svn:log V 148 Unmark BROKEN (suspect a race between the fix and BROKEN commits). PR: ports/93222 Submitted by: Andreas Kohn (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T03:53:21.000000Z K 7 svn:log V 170 Update to 1.6.0. - Suffix default configuration file with .sample - Give maintainership to submitter PR: ports/93221 Submitted by: Serge Gagnon END K 10 svn:author V 4 mnag K 8 svn:date V 27 2006-02-12T04:04:47.000000Z K 7 svn:log V 29 - Fix removing of build_docs END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T04:08:19.000000Z K 7 svn:log V 96 Update to 0.4.1. PR: ports/93112 Submitted by: Dmitry Marakasov (maintainer) END K 10 svn:author V 4 mezz K 8 svn:date V 27 2006-02-12T04:13:41.000000Z K 7 svn:log V 293 - Update to 2.8. - Add a new knob, WITH(OUT)_THUMBNAILS, to enable or disable the thumbnails in Nautilus. It's pretty cool and works very well. However, by default, it is disable unless Nautilus exists (autocheck). See changelog for details: http://comix.sourceforge.net/changelog.html END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T04:24:12.000000Z K 7 svn:log V 112 Update to 0.66. Submitter takes maintainership. PR: ports/93212 Submitted by: Larry Rosenman END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T04:26:32.000000Z K 7 svn:log V 116 Update to 1.2.2. Fix build on 4.x. PR: ports/93219 Submitted by: Andreas Kohn (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T04:29:43.000000Z K 7 svn:log V 100 Fix pkg-plist. PR: ports/93214 Submitted by: Allan Bowhill (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T04:34:21.000000Z K 7 svn:log V 110 Update WWW. PR: ports/93208 Submitted by: Ion-Mihai "IOnut" Tetcu (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T04:59:07.000000Z K 7 svn:log V 141 Update to 2.0.4. - Submitter takes maintainership - Remove stale patches PR: ports/93206 Submitted by: Babak Farrokhi END K 10 svn:author V 5 novel K 8 svn:date V 27 2006-02-12T07:28:58.000000Z K 7 svn:log V 88 Fix on 4.x. Submitted by: Stepan Zastupov (maintainer) Reported by: pointyhat via kris END K 10 svn:author V 7 thierry K 8 svn:date V 27 2006-02-12T09:38:25.000000Z K 7 svn:log V 60 Re-add patch-Makefile to respect CFLAGS / FFLAGS / CC & co. END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T10:23:42.000000Z K 7 svn:log V 229 Fix plist and enable installation of the default set of trusted SSL certificates. Missed from: Update to 0.66. Submitter takes maintainership. PR: ports/93212 Submitted by: Larry Rosenman END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T10:45:32.000000Z K 7 svn:log V 86 Update to 2.2. PR: ports/93068 Submitted by: Shane (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T10:45:39.000000Z K 7 svn:log V 96 Update to 0.3. PR: ports/93069 Submitted by: Alexander Zhuravlev (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T10:45:45.000000Z K 7 svn:log V 96 Update to 0.43. PR: ports/93080 Submitted by: TAKAHASHI Kaoru (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T10:45:51.000000Z K 7 svn:log V 88 Update to 1.3.7. PR: ports/93086 Submitted by: shane (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T10:45:57.000000Z K 7 svn:log V 119 Update to 0.6.8. Add Gentoo mirrors. PR: ports/93163 Submitted by: Phillip Neumann (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T10:46:04.000000Z K 7 svn:log V 143 Update to 0.5.91. Add new optional skim setup module (WITH_SKIM). PR: ports/93165 Submitted by: Jie Gao (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T10:46:10.000000Z K 7 svn:log V 100 Update to 0.12.11. PR: ports/93180 Submitted by: Heiner Eichmann (maintainer) END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-12T12:02:28.000000Z K 7 svn:log V 663 Catalyst::Enzyme is a layer on top of the Catalyst framework providing CRUD functionality for Class::DBI models. Enzyme uses convention and configuration to provide e.g. extensible CRUD out-of-the-box, and a common way of dealing with error handling etc. It's not completely unlike Maypole in this regard. However, at this point Enzyme isn't as feature-rich as Maypole. Enzyme is one way of bringing many Catalyst modules and concepts together into a unified whole. There are other ways to do this (obviously. This is, like... uh, Perl). WWW: http://search.cpan.org/dist/Catalyst-Enzyme/ PR: ports/93229 Submitted by: Lars Balker Rasmussen END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-12T12:02:44.000000Z K 7 svn:log V 54 p5-Catalyst-Enzyme --> ports/www/p5-Catalyst-Enzyme END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-12T12:44:32.000000Z K 7 svn:log V 99 Update to 0.9.5. PR: ports/93227 Submitted by: Stefan Walter (maintainer) END K 10 svn:author V 7 thierry K 8 svn:date V 27 2006-02-12T15:30:03.000000Z K 7 svn:log V 394 MINC (Medical Imaging NetCDF) is a medical imaging data format and an associated set of tools and libraries. MINC was created in 1993 by Peter Neelin at the McConnell Brain Imaging Centre of the Montreal Neurological Institute. Many others have contributed to the design and implementation MINC over the years. PR: ports/91918 Submitted by: Jason W. Bacon END K 10 svn:author V 7 thierry K 8 svn:date V 27 2006-02-12T15:30:15.000000Z K 7 svn:log V 30 minc --> ports/science/minc END K 10 svn:author V 4 lofi K 8 svn:date V 27 2006-02-12T16:07:35.000000Z K 7 svn:log V 19 Fix compile on 4.x END K 10 svn:author V 3 sem K 8 svn:date V 27 2006-02-12T19:26:43.000000Z K 7 svn:log V 82 - distinfo was accidently not committed with a last update Reported by: krismail END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-12T19:53:53.000000Z K 7 svn:log V 56 Update to 2.08 Hint from PR: 92175 Submitted by: aaron END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-12T19:58:17.000000Z K 7 svn:log V 94 Update to 0.0.7 PR: 93248 Submitted by: Lars Balker Rasmussen (maintainer) END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-12T20:06:21.000000Z K 7 svn:log V 52 Update to 3.44 PR: 93238 Submitted by: Ports fury END K 10 svn:author V 6 anholt K 8 svn:date V 27 2006-02-12T20:06:30.000000Z K 7 svn:log V 69 Add missing LIB_DEPENDS on expat. Reported by: pointyhat (via kris) END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-12T20:09:21.000000Z K 7 svn:log V 54 Update to 2.2.12 PR: 93239 Submitted by: Ports fury END K 10 svn:author V 5 edwin K 8 svn:date V 27 2006-02-12T20:10:11.000000Z K 7 svn:log V 16 upgrade to 0.51 END K 10 svn:author V 4 ahze K 8 svn:date V 27 2006-02-12T20:12:06.000000Z K 7 svn:log V 99 - Update to 1.0.beta3 - Add new options KQUEUE & SQLITE PR: ports/93250 Submitted by: maintainer END K 10 svn:author V 6 gerald K 8 svn:date V 27 2006-02-12T20:29:35.000000Z K 7 svn:log V 46 Update to the 20060211 snapshot of GCC 4.2.0. END K 10 svn:author V 5 edwin K 8 svn:date V 27 2006-02-12T20:37:47.000000Z K 7 svn:log V 14 fix pkg-plist END K 10 svn:author V 6 glewis K 8 svn:date V 27 2006-02-12T20:45:18.000000Z K 7 svn:log V 197 . Tweak the fix for linking with the system's version of zlib to just ignore the internal zlib source files rather than having to rm them. Submitted by: Kurt Miller END K 10 svn:author V 6 glewis K 8 svn:date V 27 2006-02-12T20:47:21.000000Z K 7 svn:log V 224 . Set the REX bits correctly on amd64. Fixes possible segfaults with Eclipse on that platform. See https://bugs.eclipse.org/bugs/show_bug.cgi?id=71987 . Bump PORTREVISION. Submitted by: Sean McNeil END K 10 svn:author V 8 jylefort K 8 svn:date V 27 2006-02-12T20:52:22.000000Z K 7 svn:log V 211 Add linux-hicolor-icon-theme (a symlink to ${X11BASE}/share/icons/hicolor, required for linux-firefox and some other Linux applications). PR: ports/92992 Submitted by: Andrew Pantyukhin END K 10 svn:author V 8 jylefort K 8 svn:date V 27 2006-02-12T20:53:23.000000Z K 7 svn:log V 71 linux-hicolor-icon-theme --> ports/x11-themes/linux-hicolor-icon-theme END K 10 svn:author V 5 anray K 8 svn:date V 27 2006-02-12T20:59:06.000000Z K 7 svn:log V 34 Fix plist. Reported by: krismail END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:00:31.000000Z K 7 svn:log V 26 BROKEN: Checksum mismatch END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:01:34.000000Z K 7 svn:log V 36 Try to remove www/data at deinstall END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:04:06.000000Z K 7 svn:log V 20 BROKEN: Unfetchable END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:06:01.000000Z K 7 svn:log V 25 BROKEN: Does not compile END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:06:31.000000Z K 7 svn:log V 49 BROKEN: Touches filesystem prior to make install END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:09:37.000000Z K 7 svn:log V 25 BROKEN: Does not install END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:10:36.000000Z K 7 svn:log V 24 BROKEN: Configure fails END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:11:38.000000Z K 7 svn:log V 23 BROKEN: Does not build END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:12:11.000000Z K 7 svn:log V 25 BROKEN: Does not compile END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:14:19.000000Z K 7 svn:log V 49 BROKEN: Does not build with read-only ports tree END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:15:18.000000Z K 7 svn:log V 29 BROKEN: Incomplete pkg-plist END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:18:21.000000Z K 7 svn:log V 25 BROKEN: Does not compile END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:19:10.000000Z K 7 svn:log V 59 BROKEN: Incorrect pkg-plist (does not compile completely?) END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:20:03.000000Z K 7 svn:log V 49 BROKEN: Touches filesystem before 'make install' END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:20:46.000000Z K 7 svn:log V 22 BROKEN: Size mismatch END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:22:34.000000Z K 7 svn:log V 32 Try to remove cgi-bin directory END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:23:05.000000Z K 7 svn:log V 29 BROKEN: Incomplete pkg-plist END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:23:39.000000Z K 7 svn:log V 24 BROKEN: Configure fails END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:24:14.000000Z K 7 svn:log V 30 BROKEN: Coredump during build END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:29:29.000000Z K 7 svn:log V 29 BROKEN: Incomplete pkg-plist END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:30:45.000000Z K 7 svn:log V 30 BROKEN: Coredump during build END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:31:35.000000Z K 7 svn:log V 43 BROKEN: Does not compile on FreeBSD >= 7.0 END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:32:29.000000Z K 7 svn:log V 34 BROKEN on !i386: Does not compile END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:35:23.000000Z K 7 svn:log V 32 BROKEN on 7.0: Does not compile END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:36:54.000000Z K 7 svn:log V 37 BROKEN on 7.0: Segfault during build END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:37:41.000000Z K 7 svn:log V 59 BROKEN: Modified files in / and does not undo on deinstall END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:39:59.000000Z K 7 svn:log V 26 Try to remove cgi-bin dir END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:40:35.000000Z K 7 svn:log V 25 BROKEN: Does not compile END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:41:58.000000Z K 7 svn:log V 20 BROKEN: Unfetchable END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:43:32.000000Z K 7 svn:log V 50 BROKEN on sparc64 and on >= 7.0: Does not compile END K 10 svn:author V 4 kris K 8 svn:date V 27 2006-02-12T22:44:33.000000Z K 7 svn:log V 28 BROKEN: Incorrect pkg-plist END K 10 svn:author V 4 lesi K 8 svn:date V 27 2006-02-12T23:14:46.000000Z K 7 svn:log V 359 Mark only for i386. xmms-quix3dn previously relied on compat4x failing on amd64 but as compat4x now installs there if fails to detect 32 libs via LIB_DEPENDS. While the failure has to do with compat4x port problems, this port nevertheless installs i386 plugin which will not work with native xmms on amd64 (and most probably not on alpha). Reported by: kris END K 10 svn:author V 6 marcus K 8 svn:date V 27 2006-02-13T00:05:20.000000Z K 7 svn:log V 17 Update to 1.8.5. END K 10 svn:author V 3 mux K 8 svn:date V 27 2006-02-13T00:40:04.000000Z K 7 svn:log V 364 Update to csup-snap-20060212: This snapshot only addresses one problem introduced in the 20060211 snapshot. Because of what seems to be a bug in CVSup, fixing the keyword expansion code so that it works correctly with OpenBSD CVSup servers broke updates from PostgreSQL CVSup servers. This snapshot "fixes" this issue by being bug-to-bug compatible with CVSup. END K 10 svn:author V 4 maho K 8 svn:date V 27 2006-02-13T02:33:44.000000Z K 7 svn:log V 69 Update to 20060201 version of SuperLU Submitted by: Pedro F.Giffuni END K 10 svn:author V 4 maho K 8 svn:date V 27 2006-02-13T02:45:09.000000Z K 7 svn:log V 129 o Update to tochnog accodingly (by version up of superlu) o cleanup PR: 92782 Submitted by: Pedro F.Giffuni END K 10 svn:author V 5 kevlo K 8 svn:date V 27 2006-02-13T05:09:19.000000Z K 7 svn:log V 96 Fix ImageMagick lib dependency. PR: ports/93235 Submitted by: Kay Lehmann END K 10 svn:author V 4 maho K 8 svn:date V 27 2006-02-13T05:38:23.000000Z K 7 svn:log V 16 Cosmetic change END K 10 svn:author V 7 thierry K 8 svn:date V 27 2006-02-13T06:35:15.000000Z K 7 svn:log V 70 Upgrade to 2.9.2. Changelog at . END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T07:36:11.000000Z K 7 svn:log V 124 No need to conditionalise USE_GETOPT_LONG. PR: ports/93225 Submitted by: Vadim Kurland (maintainer) END K 10 svn:author V 2 tg K 8 svn:date V 27 2006-02-13T07:46:05.000000Z K 7 svn:log V 86 Upgrade to 0.7.2b. PR: 93240 Submitted by: KATO Tsuguru END K 10 svn:author V 7 vanilla K 8 svn:date V 27 2006-02-13T07:46:37.000000Z K 7 svn:log V 81 Add USE_GETOPT_LONG, this will fix building on 4.X. Submitted by: kris' notify. END K 10 svn:author V 8 jylefort K 8 svn:date V 27 2006-02-13T07:54:39.000000Z K 7 svn:log V 51 Fix packing list. Reported by: pointyhat via kris END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T08:31:56.000000Z K 7 svn:log V 70 tomcat41ctl is gone, don't use it for RUN_DEPENDS. Reported by: kris END K 10 svn:author V 5 tobez K 8 svn:date V 27 2006-02-13T08:42:25.000000Z K 7 svn:log V 16 Update to 0.32. END K 10 svn:author V 5 tobez K 8 svn:date V 27 2006-02-13T08:46:44.000000Z K 7 svn:log V 59 Update to 1.14. Approved by: maintainer timeout (2 weeks) END K 10 svn:author V 3 lth K 8 svn:date V 27 2006-02-13T09:12:12.000000Z K 7 svn:log V 15 Update to 2.04 END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-13T09:31:39.000000Z K 7 svn:log V 93 Update to 0.19 PR: 93266 Submitted by: Lars Balker Rasmussen (maintainer) END K 10 svn:author V 2 vs K 8 svn:date V 27 2006-02-13T09:37:21.000000Z K 7 svn:log V 76 Mark as IGNORE: hs-crypto is incompatible with current GHC, needs updating. END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-13T09:41:29.000000Z K 7 svn:log V 96 Update to 0.02000 PR: 93267 Submitted by: Lars Balker Rasmussen (maintainer) END K 10 svn:author V 3 lth K 8 svn:date V 27 2006-02-13T09:41:40.000000Z K 7 svn:log V 15 Update to 2.97 END K 10 svn:author V 2 hq K 8 svn:date V 27 2006-02-13T09:42:13.000000Z K 7 svn:log V 324 Jalview is a multiple alignment editor written in Java. It is used widely in a variety of web pages (e.g. the EBI Clustalw server and the Pfam protein domain database) and is also available as a general purpose alignment editor. WWW: http://www.jalview.org PR: 93054 Submitted by: Fernan Aguero END K 10 svn:author V 2 hq K 8 svn:date V 27 2006-02-13T09:42:26.000000Z K 7 svn:log V 36 jalview --> ports/biology/jalview END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-13T09:42:27.000000Z K 7 svn:log V 144 Add p5-Catalyst-Model-DBIC-Schema 0.04, DBIx::Class::Schema Model Class. PR: ports/93268 Submitted by: Lars Balker Rasmussen END K 10 svn:author V 5 erwin K 8 svn:date V 27 2006-02-13T09:42:40.000000Z K 7 svn:log V 76 p5-Catalyst-Model-DBIC-Schema --> ports/www/p5-Catalyst-Model-DBIC-Schema END K 10 svn:author V 5 garga K 8 svn:date V 27 2006-02-13T09:46:26.000000Z K 7 svn:log V 166 - Fix install on FreeBSD >= 6.x [1] - Make portlint(1) happy [2] PR: ports/92754 [1] Submitted by: maintainer [1] Reported by: kris [1] Approved by: maintainer [2] END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T10:03:05.000000Z K 7 svn:log V 60 Update to 1.2.7. PR: ports/93243 Submitted by: Ports Fury END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T10:03:11.000000Z K 7 svn:log V 60 Update to 0.1.1. PR: ports/93244 Submitted by: Ports Fury END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T10:03:16.000000Z K 7 svn:log V 60 Update to 0.7.0. PR: ports/93241 Submitted by: Ports Fury END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T10:03:21.000000Z K 7 svn:log V 60 Update to 0.9.9. PR: ports/93245 Submitted by: Ports Fury END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T10:03:26.000000Z K 7 svn:log V 90 Unbreak - disable configure check for gnuplot. PR: ports/93242 Submitted by: Ports Fury END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T10:03:30.000000Z K 7 svn:log V 61 Update to 1.2.25. PR: ports/93246 Submitted by: Ports Fury END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T10:03:35.000000Z K 7 svn:log V 228 Fix instiki startup due to a change in the ruby Logger interface. Bump PORTREVISION. PR: ports/92511 Submitted by: Alastair Rankine Reviewed by: Kelley Reynolds (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T10:03:40.000000Z K 7 svn:log V 60 Update to 0.9.5. PR: ports/93247 Submitted by: Ports Fury END K 10 svn:author V 3 lth K 8 svn:date V 27 2006-02-13T10:07:23.000000Z K 7 svn:log V 15 Update to 0.18 END K 10 svn:author V 2 vd K 8 svn:date V 27 2006-02-13T10:24:18.000000Z K 7 svn:log V 97 Change `NOT_FOR_ARCHS' with `if ARCH then BROKEN' Noticed by: danfe Approved by: garga (mentor) END K 10 svn:author V 3 lth K 8 svn:date V 27 2006-02-13T10:31:12.000000Z K 7 svn:log V 16 Update to 1.0.1 END K 10 svn:author V 3 lth K 8 svn:date V 27 2006-02-13T11:53:13.000000Z K 7 svn:log V 15 Update to 1.03 END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T12:12:10.000000Z K 7 svn:log V 136 Update to 0.2.2 - fixes a problem with spec compliance. PR: ports/93231 Submitted by: Hirohisa Yamaguchi (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T12:12:16.000000Z K 7 svn:log V 93 Fix build on 4.x. PR: ports/93254 Submitted by: Ronald Klop (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T12:12:20.000000Z K 7 svn:log V 111 Update to 0.34. Submitter takes maintainership. PR: ports/93251 Submitted by: Peter Thoenen END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T12:12:25.000000Z K 7 svn:log V 93 Update to 0.8.9. PR: ports/93190 Submitted by: Nicola Vitale (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T12:12:30.000000Z K 7 svn:log V 170 Update to 1.61.17. - Pet portlint - Add OPTIONS for vorbis support - Submitter takes maintainership PR: ports/93213 Submitted by: Rainer Alves END K 10 svn:author V 3 ale K 8 svn:date V 27 2006-02-13T12:25:06.000000Z K 7 svn:log V 26 Update to 4.1.18 release. END K 10 svn:author V 3 sem K 8 svn:date V 27 2006-02-13T12:36:22.000000Z K 7 svn:log V 414 A free program for creating and solving Su Doku puzzles. You can use GNUDoku to challenge yourself, to compute solutions, or to verify your own solutions. A Su Doku puzzle is a 9x9 grid which must be filled with numbers between 1 and 9 such that each row, column, and 3x3 square contains all 9 numbers. WWW: http://icculus.org/~jcspray/GNUDoku/ PR: ports/92733 Submitted by: Dmitry Marakasov END K 10 svn:author V 3 sem K 8 svn:date V 27 2006-02-13T12:36:53.000000Z K 7 svn:log V 34 gnudoku --> ports/games/gnudoku END K 10 svn:author V 4 mnag K 8 svn:date V 27 2006-02-13T12:41:39.000000Z K 7 svn:log V 31 - Update to 2.07 - portlint(1) END K 10 svn:author V 3 lth K 8 svn:date V 27 2006-02-13T12:48:35.000000Z K 7 svn:log V 15 Update to 2.04 END K 10 svn:author V 2 hq K 8 svn:date V 27 2006-02-13T12:53:31.000000Z K 7 svn:log V 692 JabRef is an open source bibliography reference manager. The native file format used by JabRef is BibTeX, the standard LaTeX bibliography format. As such it can also be considered a BibTeX editor. JabRef runs on the Java VM (version 1.4.2 or greater). Some of its features: o Search and fetch references from Medline/PubMed and CiteSeer o Search, classify and sort entries in your BibTeX files o import and export of references in various formats o launch external viewers and insert citations into LyX and Kile o automatically generate BibTeX keys o customize (add your own) BibTeX fields WWW: http://jabref.sf.net PR: 93057 Submitted by: Fernan Aguero END K 10 svn:author V 2 hq K 8 svn:date V 27 2006-02-13T12:53:44.000000Z K 7 svn:log V 32 jabref --> ports/print/jabref END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T12:59:44.000000Z K 7 svn:log V 98 Update to 3.2.4. PR: ports/93282 Submitted by: Babak Farrokhi (maintainer) END K 10 svn:author V 8 lawrance K 8 svn:date V 27 2006-02-13T13:34:37.000000Z K 7 svn:log V 125 Update to 1.3.2.6. - Add a secondary master site PR: ports/93286 Submitted by: Nicola Vitale (maintainer) END K 10 svn:author V 6 ehaupt K 8 svn:date V 27 2006-02-13T14:15:39.000000Z K 7 svn:log V 115 - Fix build on i386 - Remove deprecated USE_REINPLACE - Remove files/patch-Makefile Notified by: kris via dosirak END K 10 svn:author V 5 garga K 8 svn:date V 27 2006-02-13T14:40:15.000000Z K 7 svn:log V 157 - Add qmail-smtpd-auth-0.31.tar.gz to my area on MASTER_SITE_LOCAL, file seems to be unfetchable. Noticed by: Vyacheslav Sotnikov END K 10 svn:author V 5 garga K 8 svn:date V 27 2006-02-13T14:41:51.000000Z K 7 svn:log V 89 - Unbreak [1] - Rework Makefile Noticed by: Marko Lerota [1] END K 10 svn:author V 5 garga K 8 svn:date V 27 2006-02-13T14:53:57.000000Z K 7 svn:log V 115 - Use USE_QMAIL_RUN knob, forgotten on qmail big patch when bsd.mail.mk was added. Approved by: portmgr (erwin) END K 10 svn:author V 4 mnag K 8 svn:date V 27 2006-02-13T14:57:51.000000Z K 7 svn:log V 182 - Migrate all knobs to OPTIONS - Add threads support [1] (mostly part) - Reorganize Makefile - Bump PORTREVISION PR: 93101 [1] Submitted by: Henry Miller [1] END K 10 svn:author V 3 sem K 8 svn:date V 27 2006-02-13T14:58:24.000000Z K 7 svn:log V 87 - Precompile python modules during install to satisfy pointyhat Reported by: krismail END K 10 svn:author V 6 jkoshy K 8 svn:date V 27 2006-02-13T15:03:12.000000Z K 7 svn:log V 134 - Upgrade to v3.6.2. - Incorporate patches from gnn to support IPv6 [1]. - Install the netpipe(1) manual page. Submitted by: gnn [1] END K 10 svn:author V 8 sumikawa K 8 svn:date V 27 2006-02-13T15:09:16.000000Z K 7 svn:log V 178 - Make an option for kinkd support. This should work on 4-STABLE - Now kinkd is disabled in default - use set_rcvar Noticed by: kris Submitted by: jau@iki.fi (set_rcvar patch) END K 10 svn:author V 4 nork K 8 svn:date V 27 2006-02-13T16:18:33.000000Z K 7 svn:log V 17 Update to 2.2.0. END K 10 svn:author V 5 leeym K 8 svn:date V 27 2006-02-13T16:28:47.000000Z K 7 svn:log V 94 - update to 0.6c (bzip2 patch now integrated into official release) - update URL in pkg-descr END K 10 svn:author V 4 mnag K 8 svn:date V 27 2006-02-13T16:53:11.000000Z K 7 svn:log V 136 - Update to 3.3.4 - Add THREADS, DEBUG and DOCS in OPTIONS - Fix build when select WITH_TCLWRAPPER and NOPORTDOCS - Reorganize Makefile END K 10 svn:author V 4 mnag K 8 svn:date V 27 2006-02-13T16:56:11.000000Z K 7 svn:log V 128 - Use OPTIONS and add more options - Add rc.d script - Bump PORTREVISION PR: 93285 Submitted by: mnag Approved by: maintainer END K 10 svn:author V 2 hq K 8 svn:date V 27 2006-02-13T17:14:19.000000Z K 7 svn:log V 123 - Update to 1.2.13 -> New log level: TRACE - Do not try to mkdir ${JAVAJARDIR} as it is part of mtree - Calm portlint END K 10 svn:author V 3 kan K 8 svn:date V 27 2006-02-13T17:26:02.000000Z K 7 svn:log V 172 Unbreak compiles on FreeBSD 4.x. Newer Linux headers (gconv.h) contain constructs not supported by GCC 2.95.x, so just use newer compiler to build linux_kdump from now on. END K 10 svn:author V 5 novel K 8 svn:date V 27 2006-02-13T17:45:17.000000Z K 7 svn:log V 17 Update to 1.4.0. END K 10 svn:author V 6 olgeni K 8 svn:date V 27 2006-02-13T18:37:06.000000Z K 7 svn:log V 53 Add java/netbeans4 after repocopy. PR: ports/92845 END K 10 svn:author V 6 olgeni K 8 svn:date V 27 2006-02-13T18:38:38.000000Z K 7 svn:log V 24 Upgrade to version 5.0. END K 10 svn:author V 6 olgeni K 8 svn:date V 27 2006-02-13T18:50:51.000000Z K 7 svn:log V 70 Upgrade to current bsd.java.mk syntax, remove commented MASTER_SITES. END K 10 svn:author V 6 olgeni K 8 svn:date V 27 2006-02-13T18:52:12.000000Z K 7 svn:log V 80 Upgrade to current bsd.java.mk syntax, fix portlint issues, cleanup whitespace. END K 10 svn:author V 6 olgeni K 8 svn:date V 27 2006-02-13T18:53:33.000000Z K 7 svn:log V 39 Upgrade to current bsd.java.mk syntax. END K 10 svn:author V 4 fjoe K 8 svn:date V 27 2006-02-13T19:16:40.000000Z K 7 svn:log V 143 - Fix the build on RELENG_4 (USE_GCC=3.2+) [1] - Fix the build on arches other than i386 [2] - Bump PORTREVISION Noted by: pointyhat [1], [2] END K 10 svn:author V 7 sobomax K 8 svn:date V 27 2006-02-13T19:19:48.000000Z K 7 svn:log V 31 pre-install -> pre-su-install. END