/sysutils/ssync/

'cgit logo'/> index : freebsd-ports-graphics
FreeBSD graphics obsolete development ports (https://github.com/freebsd/freebsd-ports-graphics)
aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* wtail does the equivalent of tail -f on several files at once.edwin2003-01-127-0/+47
| | | | | | | | The screen is split into as many parts as there are files to watch. Compiles on both -STABLE and -CURRENT. PR: ports/46958 Submitted by: Michael L. Hostbaek <mich@freebsdcluster.org>
* This is long-awaited update of x11-wm/waimea port.edwin2003-01-126-108/+43
| | | | | PR: ports/46969 Submitted by: Alexey Dokuchaev <danfe@regency.nsu.ru>
* Small pkg-descr update mailed by maintainer.edwin2003-01-121-1/+1
| | | | Submitted by: Munish Chopra <mchopra@engmail.uwaterloo.ca>
* Maintainer update to version 1.0.2edwin2003-01-123-3/+8
| | | | | PR: ports/46970 Submitted by: Tim Bishop <tim@bishnet.net>
* Make zsh not segfault on ia64 due to a generic misconfiguration thatpeter2003-01-122-1/+9
| | | | | | | | | | | | | | | | | | | | just happens to be fatal there, and a coding botch. The first problem is that it assumes a termcap interface (which is an emulation on freebsd), and provides its own terminfo wrappers around termcap.. so that's two avoidable translation layers... termcap file -> terminfo (libncurses) -> termcap API emulation (libncurses) -> terminfo (zsh emlulation). zsh forgot to prototype the tiget* functions (which return pointers) so we have an integer (implicit declaration) being cast to a pointer which is fatal. The second problem is that zsh tries to use _mktemp() to get around the __warn_references in our C library, but also neglects a prototype there and has the same fatal int/pointer problem. It is likely all the zsh* ports need these fixes. A test compile on pluto1.freebsd.org will highlight the problem. I do not know why the packaging fails for ia64. termcap.so and terminfo.so are not being built for some reason, this change doesn't solve that problem.
* Use cdparanoia as default ripper in audio/abcdeedwin2003-01-122-15/+18
| | | | | PR: ports/46979 Submitted by: Munish Chopra <mchopra@engmail.uwaterloo.ca>
* Make this work on ia64.peter2003-01-121-0/+12
|
* tileworld --> ports/games/tileworldanholt2003-01-121-0/+1
|
* Add tileworld, an SDL puzzle game.anholt2003-01-126-0/+85
| | | | | PR: ports/43832 Submitted by: Stefan `Sec` Zehl <sec@42.org>
* Upgrade to version 1.3.6.olgeni2003-01-122-2/+2
|
* Always use -f with ln.obrien2003-01-122-2/+2
|
* Unbreak mkisofs.obrien2003-01-122-0/+2
|
* Update to version 2.0.obrien2003-01-122-2/+2
|
* Update to version 2.0.obrien2003-01-124-14/+10
|
* Update to 1.11.a40 (which is really a version 2.0 alpha).obrien2003-01-126-34/+12
|
* Add missing files for the 7.0.078 update.netchild2003-01-1228-0/+2094
| | | | Pointy hat to: netchild
* Update icc to 7.0.078.netchild2003-01-1218-2258/+2262
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
* Update to 1.3.7.nork2003-01-122-2/+2
| | | | Submitted by: Jigoku <gehenna@jp.FreeBSD.org>
* Install elmo-shimbun.el regardless of existence of emacs-w3m.nobutaka2003-01-124-3/+11
| | | | Suggested by: yoichi
* py-pexpect --> ports/misc/py-pexpectijliao2003-01-121-0/+1
|
* add py-pexpect 0.95ijliao2003-01-126-0/+42
| | | | A Pure Python Expect-like module
* Update to 0.4.11.knu2003-01-112-2/+2
|
* Bump PORTREVISION because of lib-dep change (see below).netchild2003-01-111-11/+6
| | | | | | | | | | | From submitter: - Remove an outdated comment in the Makefile. - Fix MASTER_SITES. - Switch from ancient math/libgmp-freebsd to math/libgmp4, the former hardly compiles on architectures other/newer than i386 and alpha. Tested on i386 and sparc64. Submitted by: marius@alchemy.franken.de
* From submitter:netchild2003-01-115-11/+117
| | | | | | | | - Update to 1.0.53rev1. - Chase math/libgmp4 version. - Fix compilation with GCC3 when WITH_GMP is defined. Submitted by: marius@alchemy.franken.de
* - update to newer releasedinoex2003-01-113-4/+9
| | | | - MASTER_SITE_GNUSTEP
* - Take maintainershipdinoex2003-01-111-10/+10
| | | | - use tabs
* - Improve dependsdinoex2003-01-111-2/+6
| | | | | | 1) needs ffcall to build. 2) gnustep-objc is only for 4.x systems Suggested by: jagapen@students.wisc.edu
* renamed ncurses-dialog to cdialog in develalane2003-01-111-0/+1
|
* cdialog --> ports/devel/cdialogalane2003-01-111-0/+1
|
* Renamed from ncurses-dialog. knu@ said to delete+add, soo...alane2003-01-116-0/+51
|
* Add a new master site.clive2003-01-111-1/+2
|
* Renaming port to cdialog.alane2003-01-111-1/+0
|
* Use name cdialog as that is common internet usage for this package.alane2003-01-112-8/+9
| | | | Changed portname. Will repocopy.
* correctly specify path to fidoconfig configuration file in man pagesfjoe2003-01-116-0/+47
|
* Set RUBY_DEFAULT_VER to 1.8 on alpha, sparc64 and ia64. Ruby 1.6 hasknu2003-01-111-8/+7
| | | | | some unidentified coredumping problems on these platforms and there will be no more release from the 1.6 branch.
* - strip shared libs when installingfjoe2003-01-113-3/+3
| | | | | - do not USE_REINPLACE for all husky ports - create soft link to huskymak.cfg in pre-build stage
* - Support build on ia64dinoex2003-01-114-6/+11
|
* - Clean up FLAGS for sparc64, verfied build and regressiondinoex2003-01-112-9/+12
| | | | - Prepare entries for ia64
* Explicitly specify RUBY_VER=1.6.knu2003-01-112-0/+4
|
* Update lang/ruby-devel to the latest 1.8 snapshot as of 2003-01-11,knu2003-01-115-4/+10
| | | | | | | | | which now supports FreeBSD/sparc64. Set ONLY_FOR_ARCHS to i386, alpha and sparc64. Ruby does not support IA64 yet. It does not even build or install correctly. We need some clue to the IA64 stack structure and handling of the IA64 register windows.
* Set ONLY_FOR_ARCHS to i386, alpha and sparc64.knu2003-01-112-0/+10
| | | | | | Ruby does not support IA64 yet. It does not even build or install correctly. We need some clue to the IA64 stack structure and handling of the IA64 register windows.
* Fix cooked ioctl bug ignoring the last track, add porter's copyright.anholt2003-01-113-5/+24
| | | | Submitted by: corecode@corecode.ath.cx (maintainer)
* Update to 1.2.1.knu2003-01-112-2/+2
|
* Update to 1.0.1.knu2003-01-113-4/+4
|
* Update to 2.j, which now supports Ruby 1.8.knu2003-01-113-12/+17
|
* Update Oni Guruma (alternative BSDL regexp engine) to 20030109.knu2003-01-118-44/+28
|
* This does not seem to require ruby-rdtool.knu2003-01-111-1/+0
|
* linuxthreads' shlib major is 3 on FreeBSD 5 or later.knu2003-01-111-1/+7
|
* drgenius --> ports/math/drgeniusmarcus2003-01-111-0/+1
|
* Add drgenius, a geometry exploration application built on top of GNOME.marcus2003-01-1113-0/+909
| | | | Requested by: P. U. Kruppa <520023893678-0001@t-online.de>
* www.itlb.te.noda.sut.ac.jp was replaced with www.itlb.te.noda.tus.ac.jp,knu2003-01-111-1/+2
| | | | but the latter is a different host and unreachable.
* Fix typos.knu2003-01-112-3/+3
|
* Update to 1.4.3 (revision 2) and update URLs.knu2003-01-113-5/+6
|
* Add a simple check for MAINTAINER not to include multiple addresses orknu2003-01-114-4/+16
| | | | | | comments. Approved by: portmgr
* Update to 2.1.9. (Still 5.x is not supported yet)knu2003-01-114-54/+10
|
* updated to version 0.6alane2003-01-114-26/+13
|
* backout of new port; i screwed it up and do not have time to fix italane2003-01-111-1/+0
|
* screwed this up; i will re-port another timealane2003-01-117-71/+0
|
* Update to 0.19.0pat2003-01-114-6/+4
| | | | | PR: ports/46906 Submitted by: maintainer
* Update to 0.38pat2003-01-114-7/+11
| | | | | PR: ports/46952 Submitted by: maintainer
* Update to 1.0pat2003-01-115-7/+10
| | | | | PR: ports/46965 Submitted by: maintainer
* Give maintainership to james@now.iepat2003-01-111-1/+1
| | | | | PR: ports/46959 Submitted by: maintainer (Munish Chopra <mchopra@engmail.uwaterloo.ca>)
* Update to 1.2.4lioux2003-01-112-2/+2
|
* Update to 0.9.72lioux2003-01-112-3/+10
|
* Missed slash in MASTER_SITE_SUBDIR prevented fetching.anholt2003-01-111-1/+1
|
* Update bochs port to 2.0.1, take maintainership.anholt2003-01-118-70/+75
| | | | | PR: 46937 Submitted by: Ports Fury (PR), Keith Jones (patch-cdrom.cc)
* Do not try to S/${_CPUCFLAGS}//g when _CPUCFLAGS is not defined or emptytmm2003-01-111-0/+2
| | | | | | (like on ia64); S///g is too much for make's little mind. Approved by: kris
* Fix Build on CURRENT.arved2003-01-114-6/+5246
| | | | | | | | Set Maintainer to libh@ Bump PORTREVISION Submitted by: Max Okumoto <okumoto@ucsd.edu> Discussed on: libh
* Update to 0.59.8.marcus2003-01-119-69/+6
|
* Update to 0.9.7. This version now depends on glib/gtk 2.xlioux2003-01-114-11/+47
| | | | Reviewed by: David Yeske <dyeske@yahoo.com>
* o Update to 0.9.0lioux2003-01-1114-122/+178
| | | | | | | | | | | o Bump PORTEPOCH since PORTVERSION is lower than previous one o Add initial work on a FreeBSD specific portable code namely by ${PATCHDIR}/patch-src:portab.h o Update ONLY_FOR_ARCHS to "i386 alpha sparc64". This still needs to be verified by the bento ports cluster. PR: 46173 Submitted by: maintainer et al
* Update to 0.90 RC2: this release supports both WM9 and Quicktime(TM)lioux2003-01-118-65/+151
| | | | | | | files using latest win32-codecs port. Submitted by: maintainer et al Reviewed by: freebsd-multimedia mailing list
* o PORTVERSION change:lioux2003-01-113-12/+44
| | | | | | | | | | | - change it so that it complies to portlint checks - increase it due to port contents change o Add both WM9 and Quicktime(TM) codecs o Update MASTER_SITES Reviewed by: freebsd-multimedia mailing list Approved by: maintainer (sort of, hasted due to incoming mplayer update)
* Update to 1.2.petef2003-01-113-2/+3
| | | | | PR: 46956 Submitted by: maintainer
* Sync MASTER_SITES with distribution site listlioux2003-01-111-4/+4
|
* o Remove trailing spaceslioux2003-01-113-8/+5
| | | | | | o Remove spurious blank line Submitted by: portlint tool
* Rollback previous commit: I downgraded the grabbing code. It shouldlioux2003-01-112-102/+56
| | | | not have been touched.
* Connect ffmpeg045 port to the build after repo copy from ffmpeglioux2003-01-111-0/+1
| | | | | | | port Repo copied by: cvs (joe) Approved by: portmgr (self)
* - After repo copy to ffmpeg045 port so that both older and fasterlioux2003-01-1128-252/+394
| | | | | | | | | | | | version 0.4.5 is preserved while the current version matures: o Update to 0.4.6 o Remove ONLY_FOR_ARCHS, no longer i386 only o Add PKGMESSAGE explaining the differences between this and ffmpeg045 port Reviewed by: Steve O'Hara-Smith <steve@sohara.org> Repo copied by: cvs (joe) Approved by: portmgr (self)
* - After repo copy from ffmpeg port:lioux2003-01-112-0/+19
| | | | | | | | | | o Add NO_LATEST_LINK since ffmpeg port will be shortly updated to later version of the same development branch o Add PKGMESSAGE explaining the differences between this and ffmpeg port Repo copied by: cvs (joe) Approved by: portmgr (self)
* reduce MASTER_SITESdinoex2003-01-111-2/+1
| | | | Suggested by: jimd@siu.edu
* After repo copy from ffmpeg:lioux2003-01-111-0/+1
| | | | | | | ffmpeg045 --> ports/multimedia/ffmpeg045 Approved by: portmgr (self) Repo copied by: cvs (joe)
* repocopyalane2003-01-103-1/+3
|
* upgrade to 0.18.0ijliao2003-01-106-10/+18
|
* Update to 2.1.1.nork2003-01-102-2/+2
| | | | Approved by: Dominic Marks <dom@cus.org.uk> (maintainer)
* Update to 0.8.0.petef2003-01-103-7/+10
| | | | | PR: 46864 Submitted by: maintainer
* Maintainer update to version 1.27edwin2003-01-103-12/+2
| | | | | PR: ports/46921 Submitted by: Ted Faber <faber@lunabase.org>
* p5-Authen-Smb --> ports/security/p5-Authen-Smbpetef2003-01-101-0/+1
|
* Add p5-Authen-Smb 0.91, perl extension to authenticate against anpetef2003-01-107-0/+58
| | | | | | | SMB server. PR: 46740 Submitted by: Mustafa Arif <ma499@doc.ic.ac.uk>
* kdiff3 --> ports/textproc/kdiff3petef2003-01-101-0/+1
|
* Add kdiff3 0.92, a KDE3 graphical frontend for diff.petef2003-01-106-0/+53
| | | | | PR: 46763 Submitted by: Heiner Eichmann <h.eichmann@gmx.de>
* gwenview --> ports/graphics/gwenviewpetef2003-01-101-0/+1
|
* Add gwenview 0.15.0.p1, an image viewer and browser for the KDEpetef2003-01-1011-0/+187
| | | | | | | environment. PR: 44392 Submitted by: Stefan Jahn <stefan.jahn@nemesis-sektor.de>
* Maintainer update to version 030109edwin2003-01-106-8/+14
| | | | | PR: ports/46920 Submitted by: KANOU Hiroki <kanou@mil.allnet.ne.jp>
* Fix mastersiteedwin2003-01-101-1/+1
| | | | | PR: ports/46917 Submitted by: Kimura Fuyuki <fuyuki@hadaly.org>
* kgpgapplet --> ports/security/kgpgappletpetef2003-01-101-0/+1
|
* Add kgpgapplet 0.1.3, kgpg's kicker applet is a simple icon thatpetef2003-01-106-0/+47
| | | | | | | integrates into your kicker. PR: 46897 Submitted by: Rick Fournier <rick@help-desk.ca>
* Fix MASTER_SITEedwin2003-01-102-2/+2
| | | | | PR: ports/46914 Submitted by: Andrew &urger <arensb+ports@ooblick.com>
* kcpuload --> ports/sysutils/kcpuloadkuriyama2003-01-101-0/+1
|
* Add kcpuload 1.99, CPU meter for KDE Kicker.kuriyama2003-01-107-0/+91
|
* Also restrict the RELEASE* tags to those who need to manipulate themkris2003-01-101-2/+5
| | | | | | for the ports/ and docs/ collections. This should probably be redone to limit the tags/users according to the part of the CVS repo being touched.
* do not filter shlibsfjoe2003-01-101-0/+1
|
* Upgrade to 3.2.0.deischen2003-01-108-95/+91
| | | | | Xmcd now provides audio extraction and playback directly to a sound device.
* cdparanoia --> ports/audio/cdparanoiamdodd2003-01-101-0/+1
|
* A CDDA extraction tool (also known as ripper)mdodd2003-01-1019-0/+1114
| | | | Submitted by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
* Maintainer update to version 1.7edwin2003-01-1012-6/+228
| | | | | PR: ports/46903 Submitted by: Paul Dlug <paul@nerdlabs.com>
* Upgrade to 5.0.1.sumikawa2003-01-102-2/+2
|
* Update to 1.0.10.marcus2003-01-102-2/+2
|
* Remove wrong comments on PythonPath directive.perky2003-01-101-4/+1
| | | | Submitted by: Gregory Trubetskoy <grisha@apache.org> (author)
* Remove wrong comments on PythonPath directive.perky2003-01-101-4/+1
| | | | Submitted by: Gregory Trubetskoy <grisha@apache.org> (author)
* Implement the vendor fix for the recent stack overflow bug. This fixmarcus2003-01-102-4/+29
| | | | | | | increases the buffer size ten-fold, but allocates memory dynamically on the heap. Obtained from: GNOME CVS
* ct --> ports/net/ctsumikawa2003-01-101-0/+2
| | | | v6eval --> ports/net/v6eval
* New port: ct, v6evalsumikawa2003-01-1012-0/+3217
| | | | | | | ct: IPv6 Conformance Test kit v6eval: Platform of IPv6 Conformance Test kit Submitted by: tanaka@tahi.org
* Update mail/offlineimap to 3.99.7nbm2003-01-102-2/+2
| | | | | PR: 46898 Submitted by: Sergei Kolobov <sergei@kolobov.com>
* Update mail/courier-imap to 1.6.1nbm2003-01-102-41/+41
| | | | | PR: 45762 Submitted by: Sergei Kolobov <sergei@kolobov.com>>
* Update to version 1.75.olgeni2003-01-102-2/+2
|
* Update to 2.1.5.ume2003-01-105-127/+5
|
* Fix missing '.' in '.if'.nbm2003-01-091-1/+1
| | | | Submitted by: "Dan Langille" <dan@langille.org>
* Remove no longer needed @unexec line.obraun2003-01-091-1/+0
| | | | | PR: ports/46892 Submitted by: maintainer
* portell --> ports/misc/portellobraun2003-01-091-0/+1
|
* Add portell 0.1, quick display of FreeBSD port descriptions.obraun2003-01-0911-0/+107
| | | | | PR: ports/46869 Submitted by: mich@freebsdcluster.org
* Upgrade squishdot to 1.5.0nbm2003-01-093-2/+10
|
* Make phppgadmin play nice with apache2nbm2003-01-091-0/+4
| | | | | PR: 43225 Submitted by: Jason Li <delphij@frontfree.net>
* 1) Upgrade phpmyadmin to 2.3.2nbm2003-01-096-8/+42
| | | | | | | 2) Make databases/phpmyadmin operate with apache2 PR: 43706 (2) Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk> (2)
* New user config options for sqwebmailnbm2003-01-091-0/+17
| | | | | PR: 44888 Submitted by: Scott Lampert <scott@lampert.org>
* Upgrade achievo to 0.8.4nbm2003-01-094-4/+6
| | | | | PR: 46272 Submitted by: Kevin Golding <kevein@caomhin.demon.co.uk>
* Upgrade offlineimap to 3.99.6nbm2003-01-094-7/+35
| | | | | PR: 46848 Submitted by: Sergei Kolobov <sergei@kolobov.com>
* Upgrade to 1.3.0.obraun2003-01-0911-62/+225
| | | | | PR: ports/46823 Submitted by: maintainer
* Upgrade to 1.3.obraun2003-01-092-2/+3
| | | | | PR: ports/46891 Submitted by: maintainer
* Update to 5.0.0.demon2003-01-096-73/+47
|
* mark BROKEN (Does not fetch)sanpei2003-01-091-0/+2
| | | | Submitted by: fenner's distfiles survey
* Fix WWW.arved2003-01-092-2/+2
| | | | Drop Maintainership.
* visionegg --> ports/graphics/visioneggijliao2003-01-091-0/+1
|
* add visionegg 0.9.3ijliao2003-01-096-0/+146
| | | | Visual stimulus creation and control
* Update kgpg to 0.9.4.seanc2003-01-092-2/+2
| | | | | PR: ports/46882 Submitted by: maintainer
* Update to 4.03.roam2003-01-093-8/+8
| | | | 'make cert' fix submitted by: Krzysztof Stryjek <wtp@mud.pl>
* Update to 0.0.11.petef2003-01-093-2/+3
| | | | | PR: 46003 Submitted by: maintainer
* Upgrade to 2.6.4.obraun2003-01-093-2/+12
| | | | | PR: ports/46875 Submitted by: maintainer
* 1. drop the RUN_DEPENDS on mozilla so the users can choose what mozillapetef2003-01-094-18/+10
| | | | | | | | they want to install. 2. make the pkg-message refer to ${PREFIX}/lib/browser_plugins/ Suggested by: obrien (a long time ago, sorry I forgot about this) [1], marcus [2]
* ocaml-cryptokit --> ports/security/ocaml-cryptokitlioux2003-01-091-0/+3
| | | | | ocaml-jabbr --> ports/net/ocaml-jabbr ocaml-yaxpo --> ports/textproc/ocaml-yaxpo
* New port ocaml-jabbr version 0.0.20021124: XML Messaging and Presencelioux2003-01-0911-0/+249
| | | | Protocol a.k.a. Jabber for Objective Caml
* New port ocaml-yaxpo version 0.0.20020816: Non-validating XML 1.0lioux2003-01-096-0/+102
| | | | + XMLNS processing suite for Objective Caml
* New port ocaml-cryptokit version 1.1: A variety of cryptographiclioux2003-01-096-0/+166
| | | | primitives for Objective Caml
* Update to 0.25.petef2003-01-092-2/+2
|
* Update to 2.0.0.2.petef2003-01-09187-1265/+2288
| | | | | PR: 46691 Submitted by: maintainer
* Upgrade 5.04->5.05mi2003-01-092-2/+3
|
* Update 0.6.1 -> 0.6.2cy2003-01-092-2/+2
|
* p5-Test-Builder-Tester --> ports/devel/p5-Test-Builder-Testerkuriyama2003-01-091-0/+1
|
* Add Test testsuites that have been built with Test::Builder.kuriyama2003-01-096-0/+40
|
* o Improve video grabbing quality via bktr(4) driver: less framelioux2003-01-096-156/+87
| | | | | | | drops o Bump PORTREVISION Submitted by: Steve O'Hara-Smith <steve@sohara.org>
* Committed pr 46828 - the upgrade to 3.0.4 part. The cdparanoia dep needs toalane2003-01-09