summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* peops-gpu-soft --> ports/emulators/peops-gpu-softedwin2003-01-121-0/+1
|
* This is peops-gpu-soft, a soft GPU plugin using the PSEmu Proedwin2003-01-126-0/+77
| | | | | | | plugin format (Linux binary). PR: ports/46241 Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
* wtail --> ports/sysutils/wtailedwin2003-01-121-0/+1
|
* 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-113-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-112-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-112-15/+18
| | | | | PR: ports/46979 Submitted by: Munish Chopra <mchopra@engmail.uwaterloo.ca>
* Make this work on ia64.peter2003-01-111-0/+12
|
* tileworld --> ports/games/tileworldanholt2003-01-111-0/+1
|
* Add tileworld, an SDL puzzle game.anholt2003-01-116-0/+85
| | | | | PR: ports/43832 Submitted by: Stefan `Sec` Zehl <sec@42.org>
* Upgrade to version 1.3.6.olgeni2003-01-112-2/+2
|
* Always use -f with ln.obrien2003-01-112-2/+2
|
* Unbreak mkisofs.obrien2003-01-112-0/+2
|
* Update to version 2.0.obrien2003-01-112-2/+2
|
* Update to version 2.0.obrien2003-01-114-14/+10
|
* Update to 1.11.a40 (which is really a version 2.0 alpha).obrien2003-01-116-34/+12
|
* Add missing files for the 7.0.078 update.netchild2003-01-1128-0/+2094
| | | | Pointy hat to: netchild
* Update icc to 7.0.078.netchild2003-01-1118-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-112-2/+2
| | | | Submitted by: Jigoku <gehenna@jp.FreeBSD.org>
* Install elmo-shimbun.el regardless of existence of emacs-w3m.nobutaka2003-01-114-3/+11
| | | | Suggested by: yoichi
* py-pexpect --> ports/misc/py-pexpectijliao2003-01-111-0/+1
|
* add py-pexpect 0.95ijliao2003-01-116-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
|
OpenPOWER on IntegriCloud