aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add bsdadminscripts: A small collection of administration scriptssat2006-05-164-0/+60
| | | | | | PR: ports/97293 (based on) Submitted by: Dominic Fandrey <lon_kamikaze@gmx.de> Approved by: krion (mentor)
* p5-Net-Google-Calendar --> ports/net/p5-Net-Google-Calendarsat2006-05-161-0/+1
|
* Add p5-Net-Google-Calendar: Programmatic access to Google's Calendar APIsat2006-05-165-0/+42
| | | | | | PR: ports/97284 Submitted by: Yi-Hsuan Hsin <mhsin@mhsin.org> Approved by: krion (mentor)
* - A trivial error pointed out to me by Gerard Seibert -- it'sclsung2006-05-162-4/+6
| | | | | | | | config.default.php not config.defaults.php, and the file is in the libraries sub-directory PR: ports/97334 Submitted by: maintainer (Matthew Seaman)
* - Fix IP address lease time bug on 64-bit archs. It caused clientssem2006-05-168-32/+68
| | | | | | | | (at least Windows XP) to reject a leased IP info. The reason was time_t that is 8-bytes wide on FreeBSD *64. PR: ports/97333 Submitted by: maintainer
* portlint:mezz2006-05-161-59/+59
| | | | -Use DOCSDIR and EXAMPLESDIR in plist.
* portlint:mezz2006-05-161-16/+16
| | | | -Use EXAMPLESDIR in plist.
* portlint:mezz2006-05-161-5/+5
| | | | -Use DATADIR in plist.
* portlint:mezz2006-05-163-294/+294
| | | | -Use DOCSDIR in plist.
* portlint:mezz2006-05-161-4/+4
| | | | | | -Use lowercase letter in the begin of IGNORE. -Replace some spaces by tabs. -Remove a whitespace.
* Update to 1.7perky2006-05-166-42/+68
|
* Portlint:mezz2006-05-164-17/+17
| | | | | -Use DATADIR in plist. -Add [0-9]* in the CONFLICTS.
* portlint:mezz2006-05-161-3/+3
| | | | -Use DATADIR in plist.
* portlint:mezz2006-05-161-7/+7
| | | | -Use DOCSDIR in plist.
* - Upgrade to 0.7.kuriyama2006-05-163-8/+47
| | | | | - Fix compilation with apache-2.0 (actually apr-0.9). - Add a patch for my debugging...
* portlint:mezz2006-05-162-2/+4
| | | | -Add INSTALLS_OMF, bump the PORTREVISION.
* portlint:mezz2006-05-162-6/+6
| | | | -Change the order, move USE_GHOSTSCRIPT_RUN under the *_DEPENDS.
* Add INSTALLS_ICONS, bump the PORTREVISION, found by cports.sh.mezz2006-05-161-1/+2
|
* portlint:mezz2006-05-161-2/+2
| | | | -Replace some spaces to tabs.
* portlint:mezz2006-05-162-2/+2
| | | | -Remove quotes from BROKEN.
* portlint:mezz2006-05-161-1/+1
| | | | -Reduce the COMMENT characters down to under 70 characters.
* portlint:mezz2006-05-161-25/+25
| | | | | -Use DOCSDIR in plist. -Use @dirrmtry.
* portlint:mezz2006-05-161-1/+1
| | | | -Use lowercase letter in the begin of IGNORE.
* portlint:mezz2006-05-161-24/+24
| | | | -Use DOCSDIR in plist.
* portlint:mezz2006-05-161-1/+1
| | | | -Change the order of DISTFILES by move above the DIST_SUBDIR.
* update to 0.5.7oliver2006-05-163-4/+10
|
* portlint:mezz2006-05-161-14/+14
| | | | -Use DATADIR in plist.
* portlint:mezz2006-05-161-1/+1
| | | | -Reduce the COMMENT characters down to under 70 characters.
* portlint:mezz2006-05-161-75/+75
| | | | -Use DOCSDIR in plist.
* portlint:mezz2006-05-162-11/+11
| | | | | -Use DOCSDIR in plist. -Use lowercase letter in the begin of IGNORE.
* Remove CONFLICTS with ORBacus; the devel/ORBacus was removed back in 2004.mezz2006-05-161-2/+0
|
* portlint:mezz2006-05-162-13/+14
| | | | | -Use DOCSDIR in plist. -Add INSTALLS_OMF, bump the PORTREVISION.
* portlint:mezz2006-05-164-14/+16
| | | | | -Use DOCSDIR in plist. -Add INSTALLS_OMF, bump the PORTREVISION.
* Update MASTER_SITES and WWW.kevlo2006-05-162-2/+2
|
* - update to 0.3.0clsung2006-05-164-40/+9
|
* Update to 0.8.8kevlo2006-05-162-8/+5
|
* gstreamer-plugins-dts --> ports/multimedia/gstreamer-plugins-dtsahze2006-05-161-0/+2
| | | | gstreamer-plugins-dvd --> ports/multimedia/gstreamer-plugins-dvd
* - Readd support for dvd and dtsahze2006-05-161-2/+2
|
* tcc --> ports/lang/tccjkoshy2006-05-161-0/+1
|
* - Update gstreamer-plugins to 0.10.7ahze2006-05-1611-22/+120
| | | | | | - Update bad to 0.10.3 - Update good to 0.10.3 - Readd dvd and dts plugins
* A new port for TinyCC, a small and fast C compiler.jkoshy2006-05-166-0/+74
| | | | | | | | | | | | | | | | | | | | | Tcc's features include: * Small: You can compile and execute C code everywhere, for example on rescue disks (about 100KB for x86 TCC executable, including C preprocessor, C compiler, assembler and linker). * Fast: tcc generates optimized x86 code. No byte code overhead. Compile, assemble and link several times faster than GCC. * Unlimited: Any C dynamic library can be used directly. TCC is heading torward full ISOC99 compliance. TCC can of course compile itself. * Safe: tcc includes an optional memory and bound checker. Bound checked code can be mixed freely with standard code. * Compile and execute C source directly. No linking or assembly necessary. Full C preprocessor and GNU-like assembler included. * C script supported : just add '#!/usr/local/bin/tcc -run' at the first line of your C source, and execute it directly from the command line. * With libtcc, you can use TCC as a backend for dynamic code generation.
* - update to 0.74leeym2006-05-164-4/+6
|
* Update to 3.0-rc1jylefort2006-05-165-89/+55
|
* - pkg-plist fixaaron2006-05-161-0/+4
| | | | Approved by: tobez (implicit)
* - update to 1.1.9leeym2006-05-162-4/+4
|
* - Update to 0.10.6ahze2006-05-162-7/+6
|
* Update to 2.4.1.1.marcus2006-05-166-11/+37
|
* Add PTHREAD_{CFLAGS,LIBS} to all avahi pkg-config files. This fixesmarcus2006-05-163-1/+21
| | | | | | | xmms2 builds, among others. PR: 97295 Submitted by: Alexander Botero-Lowry <alex@foxybanana.com>
* Update to 1.0.10.marcus2006-05-163-18/+4
|
* Add USE_GETTEXT to appease portlint.mezz2006-05-1680-0/+80
|
* Update to 0.1.3.marcus2006-05-168-16/+58
|
* - Add note about math/vecfem removal.jmelo2006-05-161-0/+1
| | | | Approved by: mnag (mentor)
* - Remove math/vecfem port.jmelo2006-05-161-1/+0
| | | | Approved by: mnag (mentor)
* - Remove math/vecfem, project is no longer supported.jmelo2006-05-167-394/+0
| | | | Approved by: mnag (mentor)
* Update to 0.6.1.marcus2006-05-163-6/+6
|
* Make the use of mozilla optionaledwin2006-05-163-5/+33
| | | | Noticed by: YAPHR
* o Update WIP swarming patch to revision nlioux2006-05-1623-627/+2272
| | | | | | o Save memory by using only 2 integers instead of 4 to record IPv4 addresses o Bump PORTREVISION
* - Fix PID file for system-wide daemon modebarner2006-05-163-3/+7
| | | | | | | | | - Fix package: Create /var/run/fetchmail in pkg-install instead of post-install target. - Bump PORTREVISION PR: ports/97283 Submitted by: Martin Jackson <mhjacks@swbell.net>
* Upgrade to 2.7-1.thierry2006-05-163-15/+15
|
* alienarena-data --> ports/games/alienarena-dataalepulver2006-05-161-0/+1
|
* AA2K6 is the latest in a series of standalone games based on a classic Sci-Fialepulver2006-05-165-0/+2090
| | | | | | | | | | | | | | | | | | | theme with a modern, updated visual experience. With 25 levels, five modes of play, mutators, built-in bots, 9 characters, 8 weapons (3 with alt-fire modes), the game has an endless supply of replayability. Billed as the sequel to 2004's CodeRED: Alien Arena, AA2K6 is much more than that. With the trials and tribulations of software development, endless hours of playing, gathering feedback, COR Entertainment has been able to not only fine tune and perfect it's flagship game, but add completely new dimensions to it. Note: this port only contains the data needed to run AA2K6, shared by the Linux and native ports of the game engine. To play AA2K6 you have to install one of "games/alienarena" or "games/linux-alienarena". WWW: http://red.planetarena.org/ PR: ports/91802 Approved by: garga (mentor)
* - Update to 5.5garga2006-05-166-214/+200
| | | | - Take maintainership
* - Provide a knob to build mplayer without ipv6 protocol family supportsat2006-05-161-1/+13
| | | | | | | PR: ports/96950 Submitted by: Thomas E. Zander <riggs@rrr.de> (maintainer) Suggested by: Dennis Cabooter <dennis@rootxs.nl> Approved by: krion (mentor)
* py-twistedSNMP --> ports/net-mgmt/py-twistedSNMPsat2006-05-161-0/+1
|
* Add py-twistedSNMP: Twisted Python framework for doing SNMP stuffsat2006-05-165-0/+151
| | | | | | PR: ports/97051 Submitted by: kitsune <v.velox@vvelox.net> Approved by: krion (mentor)
* xpi-searchstatus --> ports/www/xpi-searchstatussat2006-05-161-0/+1
|
* Add xpi-searchstatus: Displays Google PageRank, Alexa popularity and other statssat2006-05-165-0/+40
| | | | | | PR: ports/97294 Submitted by: Lapo Luchini <lapo@lapo.it> Approved by: krion (mentor)
* - readd ruby-mp3infopav2006-05-161-0/+1
|
* - Revive audio/ruby-mp3info, other ports depends on itpav2006-05-166-1/+90
| | | | | Reported by: INDEX build failure via cperciva Pointy hat to: pav
* ruby-mp3info is now rubygem-mp3infopav2006-05-161-1/+1
|
* - Update ruby-mp3info to 0.5 and use rubygem versionpav2006-05-1612-236/+134
| | | | | | | - Take maintainership PR: ports/97163 Submitted by: brad walker <tha_walka@hotmail.com>
* callgen is now callgen323pav2006-05-161-1/+1
|
* - Update to 2.0.0 CVSpav2006-05-167-79/+28
| | | | | | | | | | | - Move to net/callgen323 - Provide WITH_OPAL knob (net/opal instead of openh323) - Unbreak on FreeBSD >= 5.X - Take maintainership PR: ports/95488 Submitted by: Joerg Pulz <Joerg.Pulz@frm2.tum.de> Approved by: maintainer timeout (1 month)
* update to 0.2.21oliver2006-05-162-4/+4
|
* Update to 0.35.0.marcus2006-05-162-5/+5
|
* Bump PORTREVISION to reflect the "^" operator bugfix injdp2006-05-161-1/+1
| | | | | | patch-src_lib_inp_inpptree_c. Gently nudged by: kris
* p5-Math-Series --> ports/math/p5-Math-Seriesaaron2006-05-161-0/+1
|
* Adding port math/p5-Math-Series, a Perl extension dealing with mathematic seriesaaron2006-05-165-0/+63
| | | | Approved by: tobez (implicit)
* p5-Math-Sequence --> ports/math/p5-Math-Sequenceaaron2006-05-161-0/+1
|
* Adding port math/p5-Math-SequenceE, a Perl extension dealing with mathematic ↵aaron2006-05-165-0/+66
| | | | | | sequences Approved by: tobez (implicit)
* p5-Math-SymbolicX-Error --> ports/math/p5-Math-SymbolicX-Erroraaron2006-05-161-0/+1
|
* Adding port math/p5-Math-SymbolicX-Error, Parser extension for dealing with ↵aaron2006-05-165-0/+53
| | | | | | numeric errors Approved by: tobez (implicit)
* p5-Number-WithError-LaTeX --> ports/math/p5-Number-WithError-LaTeXaaron2006-05-161-0/+1
|
* Adding port math/p5-Number-WithError-LaTeX, LaTeX output for Number::WithErroraaron2006-05-165-0/+59
| | | | Approved by: tobez (implicit)
* p5-TeX-Encode --> ports/textproc/p5-TeX-Encodeaaron2006-05-161-0/+1
|
* Adding port textproc/p5-TeX-Encode, Encode/decode Perl utf-8 strings into TeXaaron2006-05-165-0/+61
| | | | Approved by: tobez (implicit)
* Update to 0.10.lbr2006-05-162-4/+4
| | | | Approved by: erwin (mentor)
* p5-Number-WithError --> ports/math/p5-Number-WithErroraaron2006-05-161-0/+1
|
* Adding port math/p5-Number-WithError, Numbers with error propagation and ↵aaron2006-05-165-0/+60
| | | | | | scientific rounding Approved by: tobez (implicit)
* p5-Math-Symbolic-Custom-Transformation --> ↵aaron2006-05-151-0/+1
| | | | ports/math/p5-Math-Symbolic-Custom-Transformation
* Adding port math/p5-Math-Symbolic-Custom-Transformation, Transform ↵aaron2006-05-155-0/+65
| | | | | | Math::Symbolic trees Approved by: tobez (implicit)
* p5-Math-Symbolic-Custom-Simplification --> ↵aaron2006-05-151-0/+1
| | | | ports/math/p5-Math-Symbolic-Custom-Simplification
* Adding port math/p5-Math-Symbolic-Custom-Simplification, User defined ↵aaron2006-05-155-0/+64
| | | | | | simplification routines Approved by: tobez (implicit)
* p5-Math-Symbolic-Custom-Pattern --> ports/math/p5-Math-Symbolic-Custom-Patternaaron2006-05-151-0/+1
|
* Adding port math/p5-Math-Symbolic-Custom-Pattern, Pattern matching on ↵aaron2006-05-155-0/+64
| | | | | | Math::Symbolic trees Approved by: tobez (implicit)
* p5-Math-Symbolic-Custom-LaTeXDumper --> ↵aaron2006-05-151-0/+1
| | | | ports/math/p5-Math-Symbolic-Custom-LaTeXDumper
* Adding port math/p5-Math-Symbolic-Custom-LaTeXDumper, Math::Symbolic LaTeX ↵aaron2006-05-155-0/+54
| | | | | | output Approved by: tobez (implicit)
* - fix build on FreeBSD 700014dinoex2006-05-151-2/+1
| | | | Submitted by: Hajimu UMEMOTO
* Upgrade to 0.3.vanilla2006-05-152-4/+4
|
* p5-Math-SymbolicX-NoSimplification --> ↵aaron2006-05-151-0/+1
| | | | ports/math/p5-Math-SymbolicX-NoSimplification
* Adding port math/p5-Math-SymbolicX-NoSimplification, Turn off Math::Symbolic ↵aaron2006-05-155-0/+59
| | | | | | simplification Approved by: tobez (implicit)
* p5-Math-SymbolicX-Statistics-Distributions --> ↵aaron2006-05-151-0/+1
| | | | ports/math/p5-Math-SymbolicX-Statistics-Distributions
* Adding port math/p5-Math-SymbolicX-Statistics-Distributions, Statistical ↵aaron2006-05-155-0/+66
| | | | | | distributions for Math::Symbolic objects Approved by: tobez (implicit)
* p5-Math-Symbolic-Custom-ErrorPropagation --> ↵aaron2006-05-151-0/+1
| | | | ports/math/p5-Math-Symbolic-Custom-ErrorPropagation
* Adding port math/p5-Math-Symbolic-Custom-ErrorPropagation, Calculate ↵aaron2006-05-155-0/+50
| | | | | | Gaussian Error Propagation Approved by: tobez (implicit)
* p5-Math-SymbolicX-Complex --> ports/math/p5-Math-SymbolicX-Complexaaron2006-05-151-0/+1
|
* Adding port math/p5-Math-SymbolicX-Complex, Complex number support for the ↵aaron2006-05-155-0/+51
| | | | | | Math::Symbolic parser Approved by: tobez (implicit)
* p5-Math-SymbolicX-BigNum --> ports/math/p5-Math-SymbolicX-BigNumaaron2006-05-151-0/+1
|
* Adding port math/p5-Math-SymbolicX-BigNum, Big number support for the ↵aaron2006-05-155-0/+51
| | | | | | Math::Symbolic parser Approved by: tobez (implicit)
* - Fix PostgreSQL supportsem2006-05-153-7/+16
| | | | | | | | | - Pet portlint - Unquote BROKEN message - Use modern USE_RC_SUBR style PR: ports/97213 Submitted by: maintainer
* Bump port revision after the last fix for apache2mbr2006-05-151-1/+1
|
* Change ap_pstrcat to apr_pstrcat for the apache22 case.mbr2006-05-151-0/+11
|
* Update to Nagios Plugins 1.4.3:pav2006-05-1515-234/+214
| | | | | | | | | | | | | | | | - Variable ordering and style realigned with bsd.port.mk - Moved manual pre-configure aclocal call to use bsd.autotools.mk (with manual tweak to ACLOCAL_ARGS required) - Listed resulting plug-in name in user configurable options - Removed remaining hard-coded variables including local state directory - Correctly identified location of Perl to configure script - Removed setlocale (LC_NUMERIC, "C") patch to plug-ins containing scanf(3) and an already defined LC_NUMERIC - Reworked all patches (named using make makepatch) - Corrected minor warning in check_ntp.pl regarding undefined use of $jitter PR: ports/97189 Submitted by: Jarrod Sayers <jarrod@netleader.com.au> (maintainer)
* - Update to 0.8.6.20060514ahze2006-05-154-13/+49
| | | | - Add dbus support (WITHOUT_DBUS, enabled by default)
* - COMMENT: fix typo and change quotationssem2006-05-151-1/+1
|
* - Fix PKGNAMESUFFIX when both Oniguruma and pthreads are enabledpav2006-05-151-1/+1
| | | | | PR: ports/97178 (based on) Submitted by: cokane
* Fix build on 4.xgarga2006-05-152-4/+12
| | | | Submitted by: maintainer and author by email
* Add CLIENT and SERVER knobs, for controlling the respective componentslawrance2006-05-151-0/+2
| | | | of a port which can build client and server components.
* - fix plist after apache updatedinoex2006-05-152-0/+2
|
* Update to 0.1.1. [1]lawrance2006-05-156-12/+12
| | | | | | | | Update maintainer's email address. PR: ports/96620 [1] Submitted by: Martin Wilke <freebsd@unixfreunde.de> [1] Approved by: semionov@mail.bg (maintainer)
* - fix perl dependency when istalled by packagesdinoex2006-05-151-0/+1
|
* Take over maintainership by agreement with anders@.des2006-05-151-1/+1
|
* - Update to 0.7.3garga2006-05-153-9/+5
| | | | | Full ChangeLog at: http://www.allard.nu/pfw/history
* Update to 0.13lth2006-05-152-4/+4
|
* Update to 2006.00, bug-fix release.itetcu2006-05-152-6/+5
| | | | | | PR: ports/97269 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: itetcu (me, maintainer), lawrance (mentor)
* Update to 0.12erwin2006-05-152-4/+4
|
* Update to 20060425.lawrance2006-05-152-8/+9
| | | | | | | Submitter takes maintainership. PR: ports/97290 Submitted by: Beech Rintoul <beech@alaskaparadise.com>
* Fix build on 4.x.lawrance2006-05-151-0/+20
| | | | | PR: ports/97288 Submitted by: Shaun Amott <shaun@inerd.com>
* Update to 1.15lth2006-05-152-4/+4
|
* Update to 3.0.1.lawrance2006-05-1515-30/+45
| | | | | | | | Run as 'nobody' rather than root. PR: ports/96637 Submitted by: Vivek Khera <vivek@khera.org> Approved by: Choe, Cheng-Dae <whitekid@gmail.com> (maintainer)
* - Update to 1.09lth2006-05-152-9/+4
| | | | - Removed obsolete code
* Update to 0.60507.tobez2006-05-154-223/+259
|
* Update to 2.4.lawrance2006-05-154-26/+13
| | | | | | | Submitter takes maintainership. PR: ports/96061 Submitted by: Frank Laszlo <laszlof@vonostingroup.com>
* Update to 1.44.lawrance2006-05-152-4/+4
| | | | | | PR: ports/96230 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: bradh@uunet.co.za (maintainer, timeout 3 weeks)
* Add SHA256 checksums.lawrance2006-05-158-57/+42
| | | | | | | | | | Make use of SUB_FILES. Use REINPLACE_CMD instead of perl. Miscellaneous other cleanups. PR: ports/96491 Submitted by: edwin Approved by: orlando@break.net (maintainer, timeout 2 weeks)
* Update to 1.3.lawrance2006-05-155-33/+22
| | | | | | PR: ports/96503 Submitted by: Antonio Querubin <tony@lava.net> Approved by: janos.mohacsi@bsd.hu (maintainer, timeout 4 weeks)
* Add kde to CATEGORIES.lawrance2006-05-152-4/+4
| | | | | | | | | | | Update MASTERSITE. Use PKGNAMEPREFIX like other theme ports. Remove INSTALLS_SHLIB. Update WWW: line. PR: ports/94630 Submitted by: Shane <decept0@gmail.com> Approved by: asm@asm.kiev.ua (maintainer, timeout 7 weeks)
* Update to 0.4.2.lawrance2006-05-152-5/+4
| | | | | | PR: ports/95940 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: lauri@kde.org (maintainer, timeout 3 weeks)
* p5-Math-SymbolicX-ParserExtensionFactory --> ↵aaron2006-05-151-0/+1
| | | | ports/math/p5-Math-SymbolicX-ParserExtensionFactory
* Adding port math/p5-Math-SymbolicX-ParserExtensionFactory, Generate parser ↵aaron2006-05-155-0/+80
| | | | | | extensions Approved by: tobez (implicit)
* Patch pptpctrl.c so that it does not pass bogus parameters to ppp.lawrance2006-05-152-4/+17
| | | | | | | | Bump PORTREVISION for the change above. PR: ports/96386 Submitted by: Stefan Bethke <stb@lassitu.de> Approved by: olmi@rentech.ru (maintainer, timeout 2 weeks)
* p5-Math-Symbolic-Custom-CCompiler --> ↵aaron2006-05-151-0/+1
| | | | ports/math/p5-Math-Symbolic-Custom-CCompiler
* Adding port math/p5-Math-Symbolic-Custom-CCompiler, Compile Math::Symbolic ↵aaron2006-05-155-0/+66
| | | | | | trees to C Approved by: tobez (implicit)
* p5-Math-SymbolicX-Inline --> ports/math/p5-Math-SymbolicX-Inlineaaron2006-05-151-0/+1
|
* Adding port math/p5-Math-SymbolicX-Inline, Inlined Math::Symbolic functionsaaron2006-05-155-0/+53
| | | | Approved by: tobez (implicit)
* Remove ffsrecov since the relevant ports/sysutils/ffsrecov has beenvd2006-05-151-1/+0
| | | | | | removed yesterday Forgotten by: jmg
* p5-Math-Symbolic-Custom-Contains --> ↵aaron2006-05-151-0/+1
| | | | ports/math/p5-Math-Symbolic-Custom-Contains
* Adding port math/p5-Math-Symbolic-Custom-Contains, Find subtrees in ↵aaron2006-05-155-0/+50
| | | | | | Math::Symbolic expressions Approved by: tobez (implicit)
* p5-Math-Symbolic --> ports/math/p5-Math-Symbolicaaron2006-05-151-0/+1
|
* Adding port math/p5-Math-Symbolic, a library for dealing with symbolic math.aaron2006-05-155-0/+131
| | | | Approved by: tobez (implicit)
* Remove ffsrecov (and thus unbreak INDEX)vd2006-05-151-1/+0
| | | | | | Hmmz, noone fixed this in 23 hours... Forgotten by: jmg
* - update to 1.2.4clsung2006-05-153-25/+25
| | | | | | PR: ports/97201 Submitted by: Martin Wilke <freebsd_AT_unixfreunde dot de> Approved by: maintainer (Choe, Cheng-Dae)
* - update to 3.8.0clsung2006-05-153-5/+4
| | | | | | PR: ports/97200 Submitted by: Martin Wilke <freebsd_AT_unixfreunde dot de> Approved by: maintainer (Choe, Cheng-Dae)
* Update to 1.2.2 and unbreak. This works courtesy ofadamw2006-05-152-7/+5
| | | | | Laszlo Karoly <laszlokaroly@hung.u-szeged.hu> who pointed me towards defining MOZ_TRUNK=0.
* - update to 0.2clsung2006-05-152-5/+4
|
* - update to 1.0clsung2006-05-153-5/+5
| | | | - refine WWW in pkg-descr
* - update to 6.17clsung2006-05-156-20/+34
| | | | | | | | | | | | | | - from submitter: This has been designated a production release by the author and includes the very useful functionality of being able to write the virtual "FileName" and "Directory" tags - allowing bulk moving and/or renaming of files according to a pattern derived from the other tags in the files. PR: ports/97267 Submitted by: rsm Reviewed by: maintainer (Tod McQuillin) Approved by: maintainer
* - Fix shebang in bin/rgettext.clsung2006-05-153-3/+3
| | | | | PR: ports/97170 Submitted by: IWATSUKI Hiroyuki <don_AT_na dot rim dot or dot jp>
* - Update to 0.0.17mnag2006-05-153-15/+24
| | | | | PR: 97268 Submitted by: Martin Wilke <freebsd___unixfreunde.de>
* - Add autoconf patchesmnag2006-05-154-34/+110
| | | | | | | - Reorganize Makefile PR: 96692 Submitted by: maintainer
* Update to 3.6.6 (stable) release.itetcu2006-05-154-24/+20
| | | | | | | | | | | (At this moment it should be indentical to mail/dspam.) Removed features: - Phased out deprecated Berkeley DB drivers Bugfixes: - when using logfile, write errors result in segfault Approved by: lawrance (mentor)
* - Update to 0.58Citetcu2006-05-152-11/+11
| | | | | | | | | - Fix OPTIONS handleing - silence portlint PR: ports/97280 Submitted by: Shaun Amott <shaun@inerd.com> Approved by: lawrance (mentor)
* Update to 0.2 [1]itetcu2006-05-154-5/+21
| | | | | | | | | Fix firefox dependency. [2] PR: ports/97249 [1] Submitted by: Stefan 'Steve' Tell <stefan.tell@crashmail.de> (maintainer) [1] itetcu (me) [2] Approved by: lawrance (mentor)
* Fix build on 4.xitetcu2006-05-151-8/+13
| | | | | | PR: ports/97258 Submitted by: Tod McQuillin <devin@spamcop.net> Approved by: maintainer, lawrance (mentor)
* Allow notification icons which use a hacked eggtrayicon.c to have ajylefort2006-05-156-2/+244
| | | | | | transparent background. Obtained from: Debian package via Bernat Tallaferro
* Update to dspam-3.6.6 release:itetcu2006-05-154-26/+23
| | | | | | | | | | | | Removed feature: - Phased out deprecated Berkeley DB drivers - Phased out legacy tools (dspam_corpus, dspam_genaliases) Bugfixes: - trainPristine preference turned "off" now overrides config turned "on" - segfault fix for when correcting messages using UIDInSignature with MySQL - when using logfile, write errors result in segfault Approved by: lawrance (mentor)
* remove conflictsmaho2006-05-151-4/+0
|
* Update to 2.0.2.9maho2006-05-154-67/+26
|
* Fix packing listhq2006-05-155-35/+213
| | | | | | PR: 97023 Submitted by: maintainer Reported by: pointyhat
* Correct last patch by using proper tabs instead of spaces.marcus2006-05-152-15/+12
| | | | Submitted by: Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp>
* Fix typos in comments.brueffer2006-05-151-3/+3
|
* xpi-flashblock --> ports/www/xpi-flashblocksat2006-05-151-0/+1
|
* Add xpi-flashblock:sat2006-05-154-0/+32
| | | | | | | | Replaces Flash objects with a button you can click to view them PR: ports/97255 Submitted by: Simon Olofsson <simon@olofsson.de> Approved by: krion (mentor)
* - Change the installation directorysat2006-05-152-11/+12
| | | | | | PR: ports/97147 Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> (maintainer) Approved by: krion (mentor)
* - Change the installation directorysat2006-05-152-2/+2
| | | | | | PR: ports/97146 Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> (maintainer) Approved by: krion (mentor)
* - Update to 0.53.0sat2006-05-155-85/+89
| | | | | | PR: ports/96867 Submitted by: HAYASHI Yasushi <yasi@yasi.to> Approved by: krion (mentor)
* ja-kana-no-quiz --> ports/japanese/kana-no-quizsat2006-05-151-0/+1
|
* Add ja-kana-no-quiz: A little tool to memorize Japanese KANA (Hiragana/Katakana)sat2006-05-155-0/+335
| | | | | | PR: ports/95583 (based on) Submitted by: Nicola Vitale <nivit@email.it> Approved by: krion (mentor)
* p5-Data-Structure-Util --> ports/devel/p5-Data-Structure-Utilsat2006-05-151-0/+1
|
* Add p5-Data-Structure-Util: Perl5 module to change the nature of data within ↵sat2006-05-155-0/+46
| | | | | | | | a structure PR: ports/95551 Submitted by: Jon Nistor <nistor@snickers.org> Approved by: krion (mentor)
* p5-CGI-Application-Plugin-HTDot --> ports/www/p5-CGI-Application-Plugin-HTDotsat2006-05-151-0/+1
|
* Add p5-CGI-Application-Plugin-HTDot:sat2006-05-155-0/+52
| | | | | | | | Enable "magic dot" notation in CGI::Application-derived applications PR: ports/94444 (based on) Submitted by: Espen Tagestad <espen@modula.no> Approved by: krion (mentor)
* Update to 0.1.2stefan2006-05-153-13/+4
| | | | Approved by: arved (mentor)
* p5-HTML-Template-Pluggable --> ports/www/p5-HTML-Template-Pluggablesat2006-05-151-0/+1
|
* Add p5-HTML-Template-Pluggable: Extends HTML::Template with plugin supportsat2006-05-155-0/+56
| | | | | | PR: ports/94444 (based on) Submitted by: Espen Tagestad <espen@modula.no> Approved by: krion (mentor)
* Add p5-Template-Provider-Encoding: Template plugin to specify encodingsat2006-05-155-0/+51
| | | | | | PR: ports/94066 Submitted by: TAKAHASHI Kaoru <kaoru@kaisei.org> Approved by: krion (mentor)
* Upgrade to 1.65.0.thierry2006-05-152-5/+4
| | | | Changelog at <http://www.geuz.org/gmsh/doc/VERSIONS>.
* p5-Template-Provider-Encoding --> ports/www/p5-Template-Provider-Encodingsat2006-05-151-0/+1
|
* Update to OpenNTPD 3.9p1 (as of OpenBSD 3.9).naddy2006-05-152-4/+4
|
* p5-Goo --> ports/deskutils/p5-Gooaaron2006-05-151-0/+1
|
* Adding port p5-Goo, an interactive shell designed to help you more ↵aaron2006-05-155-0/+372
| | | | | | efficiently work with different, but related files. Approved by: tobez (implicit)
* - update to 2.58leeym2006-05-153-5/+7
|
* Fix file order that I messed up with the last commitjeh2006-05-151-2/+2
|
* Remove the DAT only port since it is now brough in live in the scanner portjeh2006-05-159-94/+3
|
* - update to 0.05leeym2006-05-152-5/+5
| | | | - refine COMMENT
* - update to 1.49leeym2006-05-152-4/+4
|
* Update to 0.23arved2006-05-152-4/+4
| | | | | PR: 97204 Submitted by: hideo <hideo@lastamericanempire.com>
* Update to 0.88arved2006-05-152-5/+5
| | | | | | | Pass Maintainership to submitter PR: 95928 Submitted by: Martin Wilke <freebsd@unixfreunde.de>
* The spice3 "^" operator (power) did not work properly unless itsjdp2006-05-151-0/+34
| | | | | right-hand operand was a constant, because of a bug in the code to take the derivative of an expression. Add a patch to fix that.
* Update the mail/dovecot to 1.0.b8, which addresses numerous problemsitetcu2006-05-158-20/+14
| | | | | | | | | | | | | | | | | (including proper kqueue support -- that means us, BSD folks! ;) ), the most important of which is a security hole (individuals are allowed to list other users' mailboxes). [1] Also move pkg-message --> files/pkg-message.in, list it in SUB_FILES and get rid of custom hack in Makefile [2] PR: ports/97193 [1] Submitted by: Jeremy Chadwick <freebsd@jdc.parodius.com> [1] itetcu (me) [2] Approved by: Robin Breathe <robin@isometry.net> (maintainer), lawrance (mentor) Security: http://www.securityfocus.com/archive/1/433878 [1] Security: http://www.dovecot.org/list/dovecot-news/2006-May/000006.html [1]
* Update to 1.0rc1.lawrance2006-05-158-64/+35
| | | | | | | Submitter takes maintainership. PR: ports/96035 Submitted by: Dryice Liu <dryice@dryice.name>
* - update to 1.1.1itetcu2006-05-143-7/+6
| | | | | | | | | - remove pkg-plist and add PLIST_FILES in the Makefile PR: ports/97245 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: "Jonatan B" <onatan@gmail.com> (maintainer), lawrance (mentor)
* Only extract the binary RPM's, not the source ones.netchild2006-05-1410-10/+20
| | | | Submitted by: Boris Samorodov <bsam@ipt.ru>
* Update to 0.9.9. Pass maintainership to submittervs2006-05-143-51/+43
| | | | | PR: ports/95927 Submitted by: Martin Wilke
* - Update to 4.0.stefan2006-05-144-34/+42
| | | | | | | | - Assign maintainership to submitter. PR: 97226 Submitted by: Rainer Alves <rainer.alves@gmail.com> Approved by: arved (mentor)
* Update to 1.3.0stefan2006-05-143-68/+77
| | | | | | PR: 97230 Submitted by: Dmitry Marakasov <amdmi3@mail.ru> (maintainer) Approved by: arved (mentor)
* Update to 0.6.1itetcu2006-05-142-4/+4
| | | | | | | PR: ports/97246 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: Frank Laszlo <laszlof@vonostingroup.com> (maintainer), lawrance (mentor)
* Make bpm capable of handling ports with OPTIONS by using zenity tolawrance2006-05-144-4/+44
| | | | | | | | display them. PR: ports/96149 Submitted by: Panagiotis Astithas <past@ebs.gr> Approved by: Seth Kingsley <sethk@meowfishies.com> (maintainer)
* Pass maintainership to Shaun Amott <shaun@inerd.com>itetcu2006-05-146-6/+6
| | | | | | PR: ports/96289 Submitted by: Shaun Amott <shaun@inerd.com> Approved by: lawrance (mentor)
* Add optional UTF-8 supportgarga2006-05-142-0/+14
| | | | | PR: ports/97241 Submitted by: Rong-En Fan <rafan@infor.org>
* Update to 5.1.2.lawrance2006-05-143-4/+8
| | | | | | PR: ports/95941 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: karma@ez.pereslavl.ru (maintainer, timeout 3 weeks)
* - Pass maintainership to submitter.itetcu2006-05-141-1/+1
| | | | | | | | - Keep pkg-plist and use DOCSDIR macro. PR: ports/96289 Submitted by: Shaun Amott <shaun@inerd.com> Approved by: lawrance (mentor)
* - Updated from 0.27 to 0.31aaron2006-05-143-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | 0.31 FIXED: DTD wouldn't iterate in terminal node (hashes, arrays without elements are terminal) ADDED: filter argument ($setup->{FILTER_ARGUMENT}) ADDED: path elements ($setup->{__PATH_ELEMENTS}) ADDED: $setup->{__PATH_ELEMENTS} example to filter.pl ADDED: scalar_and_origine.pl 0.30 ADDED: Accept scalar variables ADDED: documentation for $Data::TreeDumper::Displaycallerlocation ADDED: PrintTree and display of caller locations 0.29 ADDED: object underlying type is displayed in the type tag FIXED; typos O for 0 and inversly 0.28 REMOVED: Allocation of console in Win32 that displayed a console for GUI apps ADDED: WRAP_WIDTH CHANGED: refactored code and merged changes with Diff module Approved by: tobez (implicit)
* - Repair patch files to remove port from unbuildable ports list.aaron2006-05-141-2/+2
| | | | | | - Make test still has some issues however. Approved by: tobez (implicit)
* Update to 1.3.0.lawrance2006-05-143-45/+47
| | | | | | PR: ports/96021 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: sec@42.org (maintainer, timeout 3 weeks)
* Update to 0.6.5.2vs2006-05-142-4/+4
| | | | | PR: ports/96670 Submitted by: maintainer
* - Add USE_GCC to remove from unbuildable ports listaaron2006-05-141-0/+1
| | | | Approved by: tobez (implicit)
* - fix categoriesdinoex2006-05-141-1/+1
| | | | Submitted by: Denis Peplin
* - Update to 107.5 (fixes broken mDNSProxyResponderPosix utility) [1]lawrance2006-05-146-33/+23
| | | | | | | | | | - Install mDNSResponder.8 manpage as mDNSResponderPosix.8 to avoid conflict with net/howl [2] - Unquote COMMENT. PR: ports/94303 [1], ports/96126 [2] Submitted by: Bruce Walker <bmw@borderware.com> [1] Eric P. Scott <eps+pbug0604@ana.com> [2]
* Add option WITH_IPMI_KMOD, allowing ipmitool to work withlawrance2006-05-141-3/+5
| | | | | | | | the ipmi-kmod port (for FreeBSD 6.x systems). PR: ports/96333 Submitted by: Nick Barkas <snb@threerings.net> Approved by: frolov@riss-telecom.ru (maintainer)
* - Move SSL block after bsd.port.pre.mkgarga2006-05-141-5/+3
| | | | | | | | - Remove USE_REINPLACE - Unquote NO_PACKAGE PR: ports/97179 Approved by: maintainer
* Update to 0.8.4.lawrance2006-05-142-4/+4
| | | | | | PR: ports/96278 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: dominic.marks@btinternet.com (maintainer, timeout 3 weeks)
* Patch to chase dbus update, thus fixing the build.lawrance2006-05-141-0/+12
| | | | | | | PR: ports/95966 Submitted by: Stephen Hurd <shurd@sasktel.net> Obtained from: pkgsrc multimedia/xfmedia, where the same issue was fixed by Joerg Sonnenberger
* Update mastersites.lawrance2006-05-144-17/+25
| | | | | | | | Make compliant with CC/CFLAGS/X11BASE. Add WWW link. PR: ports/96221 Submitted by: Ports Fury
* Up to 0.954lbr2006-05-142-6/+6
| | | | Approved by: erwin (mentor)
* Up to 0.92lbr2006-05-142-4/+4
| | | | Approved by: erwin (mentor)
* Enable build on FreeBSD7vs2006-05-143-4/+35
| | | | Submitted by: Arseny Nasokin
* Update to 1.0.4.1 [1] and unbreak.itetcu2006-05-142-10/+7
| | | | | | | | | Use vars from bsd.tcl.mk PR: ports/96998 [2], ports/96979 [3] Submitted by: Charles Swiger <chuck@pkix.net> [2], Hirohisa Yamaguchi <umq@ueo.co.jp> [3] Approved by: lawrance (mentor)
* Update to 1.0.4, release notes: http://librdf.org/RELEASE.html [1]itetcu2006-05-146-60/+56
| | | | | | | | | | Bring Makefile in line with lastest :) infrasctructure changes: USE_BDB, USE_MYSQL,OPTIONS [2] PR: ports/96978 [1] Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> [1] itetcu (me) [2] Approved by: maintainer, lawrance (mentor)
* - Update MASTER_SITESpav2006-05-142-2/+2
| | | | Reported by: krismail
* - Fix plist and use vars from bsd.tcl.mk in Makefile [1]itetcu2006-05-143-15/+20
| | | | | | | | | - Fix WWW [2] PR: ports/97176 Submitted by: Shaun Amott <shaun@inerd.com> (maintainer) [1] Adi Pircalabu <apircalabu@bitdefender.com> [2] Approved by: maintainer [2], lawrance (mentor)
* - Fix plist.itetcu2006-05-142-3/+8
| | | | | | | | | - Depend on gcc 3.3+ since there's no need to use older ggc's on 6, 7. PR: ports/96986 Submitted by: Jason Bacon <bacon@smithers.neuro.mcw.edu> (maintianer) [1] itetcu (me) [2] Approved by: maintainer [2], lawrance (mentor)
* - Update to 0.96itetcu2006-05-142-5/+5
| | | | | | | | - Pass maintainership to submitter PR: ports/97250 Submitted by: Alexander Botero-Lowry <alex@foxybanana.com> Approved by: lawrance (mentor)
* Use SUB_FILES instead of post-patch commands.lawrance2006-05-142-4/+2
| | | | | PR: ports/97225 Submitted by: Ports Fury
* Update to 0.8.3.lawrance2006-05-145-65/+16
| | | | | PR: ports/97224 Submitted by: Ports Fury
* Use SUB_FILES instead of post-patch commands.lawrance2006-05-143-16/+22
| | | | | PR: ports/97223 Submitted by: Ports Fury
* Update to 2.2.1.lawrance2006-05-142-5/+4
| | | | | PR: ports/97222 Submitted by: Ports Fury
* Update to 1.11.lawrance2006-05-142-4/+4
| | | | | PR: ports/97221 Submitted by: Ports Fury
* Update to 1.15.lawrance2006-05-144-124/+129
| | | | | PR: ports/97220 Submitted by: Ports Fury
* Use SUB_FILES instead of post-patch commands.lawrance2006-05-142-5/+3
| | | | | PR: ports/97219 Submitted by: Ports Fury
* Update to 1.5.2.lawrance2006-05-142-4/+4
| | | | | PR: ports/97218 Submitted by: Ports Fury
* Use SUB_FILES instead of pre-patch commands.lawrance2006-05-143-9/+9
| | | | | PR: port/97217 Submitted by: Ports Fury
* Update to 1.52.lawrance2006-05-142-5/+4
| | | | | PR: ports/97216 Submitted by: Ports Fury
* - Update to 1.1.1vs2006-05-149-21/+45
| | | | | | | | Full ChangeLog here: http://cvs.horde.org/diff.php/ingo/docs/CHANGES?r1=1.55.2.39&r2=1.55.2.49&ty=h PR: ports/96795 Submitted by: maintainer
* Chase rerolled tarball: Mostly whitespace/docs diffsvs2006-05-141-3/+3
|
* - Use full TCLTK mirror listvs2006-05-141-1/+2
| | | | | | | - portlint PR: ports/97016 Submitted by: Shaun Amott
* ja-ja6 --> ports/japanese/ja6sat2006-05-141-0/+1
|
* Update to the 20060512 snapshot of GCC 4.1.1.gerald2006-05-142-19/+19
|
* Ja6 is a Japanese Symbols Trainer that includes Hiragana, Katakanasat2006-05-145-0/+1422
| | | | | | | | | and Kanji symbols. It has been conceived for terminal and console use, displaying symbols as normal C ASCII text output. PR: ports/95585 Submitted by: Nicola Vitale <nivit@email.it> Approved by: krion (mentor)
* Update to the 20060513 snapshot of GCC 4.2.0.gerald2006-05-1416-128/+128
|