1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
Commit Graph

2106 Commits

Author SHA1 Message Date
Trevor Johnson
4f09416a29 support Alpha AXP (untested) 2005-01-13 03:03:49 +00:00
Trevor Johnson
5b78556178 Capitalize "Debian" and "Linux." 2005-01-13 02:12:42 +00:00
Trevor Johnson
f8ad6f08b3 For some reason our rebuilt libc6 .deb package containing an ldconfig marked by
brandelf was invalid ("files list file for package `libc6' contains an empty
filename"), causing an installation error.  Avoid the error by instead unpacking
libc6 into the installation directory, then running brandelf, then configuring
libc6.

Note restriction due to GNU GPL.

Take maintainership.
2005-01-13 02:10:56 +00:00
Edwin Groothuis
9dea3042de [maintainer-update] Update port: emulators/vmips 1.2.2 --> 1.3
Update emulators/vmips from 1.2.2 -> 1.3.
	Only the distinfo and version numbers need changing in this update.

PR:		ports/75734
Submitted by:	Brian R. Gaeke <brg@dgate.ORG>
2005-01-13 00:16:48 +00:00
Edwin Groothuis
a8fb092449 [Maintainer Update] emulators/xmess to 0.89
sync with master port

PR:		ports/75672
Submitted by:	Miguel Mendez <flynn@energyhq.es.eu.org>
2005-01-12 07:26:33 +00:00
Edwin Groothuis
79f3a9dd4f [Maintainer Update] emulators/xmame to 0.89
Update port and OPTIONS-ify.

PR:		ports/75671
Submitted by:	Miguel Mendez <flynn@energyhq.es.eu.org>
2005-01-12 07:18:27 +00:00
Edwin Groothuis
4d90568ffa The sourceforge website is empty, grab copy from ftp.au.freebsd.org
and place it in the adopted directory on my website.
2005-01-12 06:05:49 +00:00
Gerald Pfeifer
d4f681a679 Update to the 20050111 version of Wine. Since we now require FreeBSD 5.3
or later, there is no need to explicitly set WITH_GCC.
2005-01-11 23:03:39 +00:00
Gerald Pfeifer
a14f898557 Improve IGNORE message. 2005-01-09 19:27:41 +00:00
Gerald Pfeifer
d6d57c872c This port actually builds on FreeBSD 4.x, it just does not work. Mark it
IGNORE instead of BROKEN.

Suggested by:	kris
2005-01-09 18:29:20 +00:00
Norikatsu Shigemura
5159791819 Update to 0.6.2 (2004/12/28 snapshot).
PR:		ports/75644
Submitted by:	Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
2005-01-08 16:21:01 +00:00
Kris Kennaway
b2319b7a22 Update maintainer address
Submitted by:	maintainer
Approved by:	portmgr (self)
2005-01-03 21:43:09 +00:00
Kirill Ponomarev
805afd2346 Fix MASTER_SITES.
Approved by:	portmgr (implicit)
2005-01-03 09:38:14 +00:00
Alexander Leidinger
64cf27c85d Say hello to the linux mega patch, it consolidates our linux bits a
little bit and allows to proceed to a more recent linux_base from
a stable (read as: the major bugs should be ironed out or identified
and most linux ports build just fine) source.

It also allows to ship 4.11 with a working linuxolator (the EOLed
linux_base is marked forbidden because of a security hole).

This is a major update, please read UPDATING (and CHANGES if you
develop linux ports).

Changes:
 - change the default linux_base from v7 to v8
 - add a newer freetype to linux_base-8 for nicer fonts display [1]
 - don't let cpio use hardlinks in the linux_base-8 port to quiet some
   warnings in some cases [2]
 - fix a cut&past error in the linux_base-8 pkg-install script [3]
 - convert the binary knob "USE_LINUX" to a version specifier, e.g.
   USE_LINUX=<value> specifies a dependency upon
   emulators/linux_base-<value>, exceptions are a value of "7" (which
   does what you want and adds a dependency to linux_base) and any
   value without a corresponding port in
   PORTSDIR/emulators/linux_base-<value> (which adds a dependency to
   the default linux_base)
 - don't implicitly add USE_LINUX with the USE_LINUX_PREFIX knob,
   this allows us to use the USE_LINUX_PREFIX knob for linux_base and
   paves the way for splitting up future linux base ports into
   individual pieces
 - remove RESTRICTED from some GPL licensed ports, even when we only
   distribute binaries, we get them from official linux sites, so
   anyone can grab them there if he needs to
 - add a dependency upon the linux X11 bits where necessary (based upon
   guesswork)
 - don't use USE_X_PREFIX in some linux ports since it adds a dependency
   to the FreeBSD X11 libs, as a workaround use PREFIX?= (the clean
   solution would be to remove the implicit USE_XLIB from USE_X_PREFIX)
 - bump the portrevision of the linux ports ("better safe than sorry"
   algorithm)
 - pass maintainership of the important linux infrastructure to a
   mailinglist, hijack freebsd-emulation@ for this purpose (if somebody
   doesn't like this: tell us your bikeshed color at freebsd-emulation@,
   my color would be "linuxolator@" in case someone cares...)
 - add a pkg-install script for linux-fontconfig, but don't use it;
   everything should work without it (the FreeBSD fc-cache program should
   do all the work), but in case we need it we just need to decomment the
   pkg-install part in the Makefile
 - fix some dependencies
 - fix some bugs
 - add some static plists
 - unbreak the ports with dependecies to more than one linux_base

This also fixes some ports which are marked BROKEN because of dependencies
to v7 and v8 of linux_base at the same time.

Known bugs:
 - the linux-mesa and linux-devtools ports install libGL*.so symlinks
 - some "minor" plist bugs (e.g. ld.so.{conf,cache} are modified by
   the linux X11 port, so linx_Base-8 moans at deinstall time)

Future work (interested souls should coordinate with freebsd-emulation@):
 - add some kind of USE_LINUX_X11 knob to streamline the X11 dependencies,
   or modify the behavior of USE_XLIB in the USE_LINUX case
   AFAIK trevor has some patches.
 - make USE_XLIB and USE_X_PREFIX orthogonal to be able to get rid of
   the PREFIX?= workaround in some linux ports
   Should be discussed/coordinated on/with x11@.
 - move the RPM bits from x11-toolkits/linux-gtk/Makefile to PORTSDIR/Mk/
 - update to a more recent linux base

PR:			69997, 70539 (and maybe others)
Discussed with/on:	java@, x11@, trevor, portmgr
Tested by:		mezz, portmgr, pointyhat
RPM hunted down by:	Joseph Gelinas <scirocco@tasam.com> [1]
Requested by:		portmgr [2]
Submitted by:		kris [3]
Approved by:		portmgr
2004-12-31 18:24:10 +00:00
Kirill Ponomarev
465cc32774 Update to version 1.3.5
PR:		ports/75692
Submitted by:	Ports Fury
2004-12-31 13:20:50 +00:00
Trevor Johnson
dc7392430b Rename pre-install target to do-extract, so packing list will be
available after "make all".

Submitted by:	obrien
2004-12-30 20:01:00 +00:00
Trevor Johnson
f2145fc3fd On amd64, the installation script contained in the glibc RPM fails.
Work around this by using the --noscripts option.

PR:		75645
Submitted by:	Carlos F. A. Paniago and Conrad J. Sabatier
2004-12-30 19:41:02 +00:00
Michael Nottebrock
2a2c94eded Update emulators/zsnes to 1.40, remove emulators/linux-zsnes.
PR:		75500
Submitted by:	maintainer
2004-12-30 17:42:30 +00:00
Kirill Ponomarev
91c87e6b5b Update to version 7.0
PR:		ports/75621
Submitted by:	Ports Fury
2004-12-30 08:39:33 +00:00
Kirill Ponomarev
4baa4ace8a Update to version 1.3.4
PR:		ports/75620
Submitted by:	Ports Fury
2004-12-30 08:37:15 +00:00
David E. O'Brien
0e9a9fb33f Don't use .error -- it breaks 'make index' on sparc64. 2004-12-29 19:19:15 +00:00
Mario Sergio Fujikawa Ferreira
9711fe3b69 Update WWW tag 2004-12-29 02:10:37 +00:00
Mario Sergio Fujikawa Ferreira
52b9615cda Update to 2.1 2004-12-29 02:10:33 +00:00
Trevor Johnson
adc7c4678b - update to latest release, 2004.3
- update CONFLICTS
- do not install unneeded /dev/
- make output less verbose
2004-12-28 15:25:47 +00:00
Gerald Pfeifer
ad532d809a Update documentation wrt. current versions of Wine now working more or less
nicely on FreeBSD 5.3 and above.
2004-12-28 12:33:31 +00:00
David E. O'Brien
ed196e1134 Use NO_MTREE to have a cleaner LINUXBASE.
Submitted by:	trevor
Pointed out by:	kris
2004-12-28 09:45:47 +00:00
David E. O'Brien
0836bc6955 Eeeek rev 1.95 accidently backed out rev 1.94; put back. 2004-12-28 06:35:08 +00:00
David E. O'Brien
65446a732c Quiet installation errors due to lack of /dev/null w/in LINUXBASE. 2004-12-28 06:09:02 +00:00
David E. O'Brien
8fb0841852 Totally unravel the "do-patch: NADA" stuff started in rev 1.93. 2004-12-28 06:07:56 +00:00
David E. O'Brien
214174689f Properly set owner of yp.conf. 2004-12-28 06:04:47 +00:00
David E. O'Brien
6364fed703 Fix issue in last commit. 2004-12-27 22:49:58 +00:00
David E. O'Brien
49a7e4d168 Remove useless "do-patch: NADA" -- the lack of patch-* files is sufficient. 2004-12-27 22:11:20 +00:00
David E. O'Brien
f412920126 These ports should be using 'ARCH' rather than 'MACHINE_ARCH'.
Submitted by:	kris
2004-12-27 21:47:57 +00:00
David E. O'Brien
e0fe9668a0 1. Unbreak port due to incorrect packing list, using NO_FILTER_SHLIBS
2. Unbreak port due to distfiles not fetchable on both i386 and alpha
3. Unbreak port on 5.3-RELEASE and 6-CURRENT for using bsdtar
   unsupported flag (-S)
4. doesn't unnecessaryly rebuild things for 'make reinstall'
5. cleans up pkg_delete errors due to incorrect PLIST @dirrm ordering
6. cleans up pkg_delete errors due to trying to rm ${PREFIX}/etc

Thus 7. un-deprecates as portmgr's requirements met to keep port alive

Reviewed by:	trevor
2004-12-27 21:44:54 +00:00
Kris Kennaway
07c34713b5 Use NO_FETCH instead of a gratuitous do-fetch target. 2004-12-27 21:28:43 +00:00
Edwin Groothuis
5c7fe7cc86 [MAINTAINER UPDATE] emulators/mupen64-sound fix plist
Fix a problem with the mupen64-sound plist (it leaves a
	directory left over after it has been deleted)

PR:		75520
Submitted by:	Travis Poppe <tlp@LiquidX.org>
2004-12-27 01:09:55 +00:00
Gerald Pfeifer
75ba7830c9 Also remove man/man3w via pkg-plist.
Discussed with:	kris
2004-12-25 13:43:47 +00:00
Mario Sergio Fujikawa Ferreira
5bb578428d Remove deprecated USE_SIZE 2004-12-25 11:43:58 +00:00
Kris Kennaway
5f21ca4b14 Now compiles on FreeBSD 6.x 2004-12-24 23:51:15 +00:00
Alexey Dokuchaev
3d292c2447 Unbreak on i386.
Obtained from:	NetBSD
2004-12-23 12:41:49 +00:00
Kirill Ponomarev
15872a0b5b Update to version 1.3.3
PR:		ports/75394
Submitted by:	Ports Fury
2004-12-23 09:35:41 +00:00
Alexey Dokuchaev
72259604ce Utilize INFO. 2004-12-23 04:33:28 +00:00
Alexey Dokuchaev
a9b0fa5bf5 Should now build with both older and recent GCCs. 2004-12-23 04:30:47 +00:00
Alexey Dokuchaev
d62db64867 - Improve C++ standards conformance in installed header [1]
- Mute REINPLACE_CMD in `post-patch' stage
- Bump PORTREVISION

[1] is needed to unbreak dependent `emulators/vx68k' port.
2004-12-23 04:04:29 +00:00
Trevor Johnson
d546c79b62 Correct the DEPRECATED string.
PR:		75388
Approved by:	kris
2004-12-22 19:56:40 +00:00
Trevor Johnson
136a8e6ab5 Mark DEPRECATED due to bash local DoS (RHSA-2000-117) and due to
the sheer age of this software.
2004-12-21 22:51:14 +00:00
Trevor Johnson
8443a1b7f6 Mark forbidden due to X Pixmap parsing bugs in
the XFree86-libs RPM installed by this port.

advisories:
CAN-2004-0687, CAN-2004-0688, CAN-2004-0692,
RHSA-2004-478, CAN-2004-0914, RHSA-2004-612
2004-12-21 22:16:17 +00:00
Trevor Johnson
df85f50a9d Fix whitespace after my last commit (portlint). 2004-12-21 22:07:21 +00:00
Trevor Johnson
ce8d2856e5 Update CONFLICTS.
PR:		75283
Submitted by:	linimon
2004-12-21 19:49:43 +00:00
Trevor Johnson
2cce95fba6 Add new Linux base ports with packages from Red Hat Linux 9 [1] and
SUSE Linux 9.1 [2].

PR:		75241 [1] and 75296 [2]
Submitted by:	Xin Li [1], me [2]
2004-12-21 17:32:13 +00:00
Gerald Pfeifer
facce2669f Mark broken on anything before FreeBSD 5.3, as Wine would build but not
properly run there (mostly due to threading issues).
Remove the share/applications and share/wine directories via pkg-plist.[1]

Pointed out by:	pointyhat/kris[1]
2004-12-20 23:17:50 +00:00
David E. O'Brien
35e7fee525 Fix make fetch for x86. 2004-12-20 18:17:30 +00:00
David E. O'Brien
ebf83d52bb Add AMD64 support. 2004-12-20 16:49:41 +00:00
David E. O'Brien
5f44340e12 + Our AMD64 Linux compat is 32-bit i386 emulation, so adjust accordingly.
+ We don't have Sparc64 Linux emulation, so don't try here.
2004-12-19 18:49:21 +00:00
Trevor Johnson
335bfa1784 Remove some lines that are no longer needed. 2004-12-19 02:13:56 +00:00
Kris Kennaway
b70e8b7e1d This port is scheduled to be removed on 2005-02-18 if it is still
broken at that time, and a fix has not been submitted to GNATS.
2004-12-18 23:02:35 +00:00
Trevor Johnson
99e70a66fe Correct a mistake in my grouping of master site subdirectories. 2004-12-18 21:54:15 +00:00
Kris Kennaway
7d606a109b Reset bouncing maintainer address:
<verm@drunkmonk.net>: host beatrix.drunkmonk.net[206.75.218.3] said: 550 5.1.1
    <verm@drunkmonk.net>... User unknown (in reply to RCPT TO command)
2004-12-18 21:46:46 +00:00
Trevor Johnson
9e603b7d45 Simplify by grouping master site subdirectories.
Clean up amd64 support by consolidating tests.  Code after bsd.port.mk
was not reached.
2004-12-18 17:58:50 +00:00
David E. O'Brien
e8032f9812 Portlint 2004-12-18 01:54:38 +00:00
Volker Stolz
832dcb8cf4 Update to 0.63
PR:		ports/74303
Submitted by:	Miguel Mendez
Approved by:	maintainer timeout
2004-12-17 14:44:51 +00:00
Edwin Groothuis
b9114fb2c1 Make portlint happy
PR:		ports/69041
Submitted by:	Wesley Shields <wxs@csh.rit.edu>
2004-12-15 02:24:05 +00:00
David E. O'Brien
a2fc57960b On amd64 we want to use FALLBACK_ELF_MIB as kern.elf32.fallback_brand,
vs. kern.fallback_elf_brand.
2004-12-14 19:26:50 +00:00
David E. O'Brien
c4a086c3de First cut at supporting AMD64 (to give 32-bit support). 2004-12-14 19:13:10 +00:00
Kris Kennaway
e6c7409adb Now fetchable again 2004-12-12 01:56:28 +00:00
Kris Kennaway
ec7608e820 BROKEN: Does not build 2004-12-11 21:37:14 +00:00
Michael Nottebrock
1a70ed3d58 Add linux-zsnes, a linux binary version of the x86 only SNES emulator
PR: 68196
Submitted by: Travis Poppe <tlp@LiquidX.org>
2004-12-08 07:59:44 +00:00
Dirk Meyer
aaab590ee1 - removed, EXPIRATION_DATE reached
Please use native version now
2004-12-06 15:57:40 +00:00
Kris Kennaway
bdf73e2dc2 BROKEN: Unfetchable 2004-12-04 01:40:53 +00:00
Gerald Pfeifer
bffc60d14c Update to the 20041201 version of Wine, which contains tons of general
improvements (as well as dozens of portability fixes by myself) and, with
the patch for [1] finally works on FreeBSD again, unlike all versions after
20040505.

PR:		73092 [1]
Submitted by:	Simon 'corecode' Schubert <corecode@fs.ei.tum.de> [1]
2004-12-03 17:13:09 +00:00
Dejan Lesjak
1a86259532 Add imake build dependency.
Previously it was picked up as run time dependency for X libraries. That is
about to change so specify it explicitly.

Pointed out by:	dosirak via kris, while testing X.Org upgrade
2004-12-03 07:14:16 +00:00
Dirk Meyer
e85cdf8857 - extend MASTER_SITES
(master server is down)
2004-11-30 11:01:37 +00:00
Dirk Meyer
0f8ad31427 - update URL 2004-11-30 10:59:46 +00:00
Dirk Meyer
d5d85db1df - use real location for soundcard.h
(instead of symlink)
2004-11-30 10:46:07 +00:00
Kris Kennaway
0c8c8c6c37 BROKEN on 5.x: Does not compile 2004-11-30 00:06:04 +00:00
Alexey Dokuchaev
f9517b77cb Fix build with GCC 2.95.4.
Reported by:	kris
Approved by:	fjoe (mentor, implicit)
2004-11-29 19:56:09 +00:00
Kris Kennaway
433f3b1126 Fix build of xmess on 4.x
Submitted by:	maintainer
2004-11-29 07:04:36 +00:00
Dirk Meyer
65292a27dc - Fix Sound support
Submitted by:	Rob Andrews
2004-11-28 18:30:03 +00:00
Kirill Ponomarev
9f25b7e542 Mark BROKEN on sparc64 - doesn't compile.
PR:		ports/74325
Submitted by:	maintainer
2004-11-28 10:11:57 +00:00
Daichi GOTO
bb9067cd03 sync with master port
PR:		ports/74208
Submitted by:	Miguel Mendez <flynn@energyhq.es.eu.org> (maintainer)
2004-11-24 17:49:03 +00:00
Daichi GOTO
44f7314860 [Maintainer Update] emulators/xmame to 0.88
PR:		ports/74207
Submitted by:	Miguel Mendez <flynn@energyhq.es.eu.org> (maintainer)
2004-11-24 17:45:31 +00:00
Alexey Dokuchaev
59439582e5 - Add SX ROM revision E (rev J does not work)
- Fix terminal allocation code under FreeBSD
- Catch up with PHK's cuaa->cuad rework in -CURRENT
- Avoid direct use of `unzip' command in Makefile in favor of ${UNZIP_CMD}
- Utilize DATADIR and DOCSDIR marcos in pkg-plist
- SIZEify
- Take maintainership

Approved by:	fjoe (mentor, implicit)
2004-11-22 12:27:16 +00:00
Norikatsu Shigemura
34f7a66b4e o Update to 0.6.1(2004/11/15 snapshot).
FreeBSD related changes: physical cdrom fix, audio merge

PR:		ports/74015
Submitted by:	Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
2004-11-17 09:47:38 +00:00
FUJISHIMA Satsuki
a787f0b075 farewell to libxpg4. 2004-11-15 05:19:30 +00:00
Kevin Lo
9702813cf2 My bad, I forgot to update checksum for others.
Point out by kris.
2004-11-09 09:23:24 +00:00
Dirk Meyer
396050b354 - disconenct linux-mupen64 2004-11-08 04:39:38 +00:00
Joe Marcus Clarke
46a4d69571 Bump PORTREVISIONS for all ports that depend on atk or pango to ease in the
big upgrade.
2004-11-07 22:37:47 +00:00
Mark Linimon
c73e2186f6 Per email from maintainer, this broken port should be removed in favor
of the native version that we now have.  Set fairly quick expiration.
2004-11-07 04:06:17 +00:00
Marc Fonvieille
f55236cb75 Update WWW link.
PR:		ports/73447
Submitted by:	Francisco <include@npf.deec.uc.pt>
Approved by:	clive
2004-11-06 14:41:22 +00:00
Kevin Lo
df269a69e7 Update to 0.87
PR: ports/73545
Submitted by: MAINTAINER
2004-11-06 02:43:00 +00:00
Kevin Lo
959de93792 Update to 0.87
PR: ports/73544
Submitted by: MAINTAINER
2004-11-06 02:41:44 +00:00
Volker Stolz
68f22037fb Unbreak: Chase MASTER_SITE 2004-11-05 15:32:15 +00:00
Yen-Ming Lee
f9c3b172ea - Add USE_GCC=2.95 and unbreak it on i386-current. 2004-11-04 15:19:13 +00:00
Norikatsu Shigemura
d605d852ce Add support raw disk device access.
Submitted by:	Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
2004-11-04 14:26:08 +00:00
Norikatsu Shigemura
e38b4b346b Fix build error on 4-stable.
Submitted by:	Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
Pointed out by:	pointy via kris
2004-10-28 15:42:48 +00:00
Pav Lucistnik
7362b59e28 - Remove *xil options, mame does not support them
PR:		ports/73045
Submitted by:	Miguel Mendez <flynn@energyhq.es.eu.org>
Approved by:	Travis Poppe <tlp@LiquidX.org> (maintainer)
2004-10-28 14:10:03 +00:00
Oliver Lehmann
dfa793b73c fix build on FreeBSD 4
PR:		ports/73002
Approved By:	maintainer
2004-10-28 05:20:12 +00:00
Volker Stolz
b4ba41aadf Give hint to possibly necessary workaround in pkg-message
PR:		ports/73011
Submitted by:	maintainer
2004-10-27 15:13:32 +00:00
Norikatsu Shigemura
96866477a3 Update to 0.6.0s.20041020.
PR:		ports/72945
Submitted by:	Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
2004-10-25 14:57:30 +00:00
Dirk Meyer
f9db4a7032 - add nasm as build dependecy
Submitted by:	Travis Poppe
2004-10-22 02:23:41 +00:00
FUJISHIMA Satsuki
f9af385edb unbreak: get rid of redundant RPEFIX. 2004-10-18 01:31:32 +00:00
Dirk Meyer
77438771a9 - Update patches for XFree86-4.4.0
Approved by:	Travis Poppe
2004-10-15 06:23:01 +00:00
Dirk Meyer
69bd47e0ce - add missing dependency to nasm
Submitted by:	Travis Poppe
2004-10-15 04:17:09 +00:00
Edwin Groothuis
1b791a4c00 [ maintainer ] emulators/pearpc: fix SDL build via update, fix build with JITC
PearPC 0.3.1 includes my patch for configure.in which makes
	SDL usable  and fixes stdint.h/inttypes.h trouble.

	Fix build with JITC cpu for gcc34

PR:		ports/72442
Submitted by:	Roman Bogorodskiy <bogorodskiy@inbox.ru>
2004-10-13 00:09:07 +00:00
Jean-Marc Zucconi
42b1f6af41 Update default devices names.
Submitted by:	joerg
2004-10-12 12:35:37 +00:00
Kirill Ponomarev
452dbd5692 Update to version 1.0.5
PR:		ports/72318
Submitted by:	Ports Fury
2004-10-12 10:29:47 +00:00
Kirill Ponomarev
562e23fa8e Fix build on 4-stable with system compiler
PR:		ports/72317
Submitted by:	Ports Fury
2004-10-12 10:28:11 +00:00
Dirk Meyer
e7db579139 Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 05:08:52 +00:00
Dirk Meyer
8b6b4b9ed1 Sound plugin for Mupen64
-
Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 05:07:52 +00:00
Dirk Meyer
a0888aa7fc Blight's SDL input plugin for Mupen64
-
Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 05:06:50 +00:00
Dirk Meyer
79ba25f958 JttL SDL sound plugin for Mupen64
-
Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 05:05:50 +00:00
Dirk Meyer
c080ea4c27 RSP plugin for Mupen64
-
Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 05:04:27 +00:00
Dirk Meyer
edee770d1d Rice Daedalus graphics plugin for Mupen64
-
Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 05:03:32 +00:00
Dirk Meyer
e77eb1a8bd Input plugin for Mupen64
-
Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 05:02:20 +00:00
Dirk Meyer
5ae1e528e0 glN64 graphics plugin for Mupen64
-
Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 05:00:24 +00:00
Dirk Meyer
6a2753b940 Glide64 graphics plugin for Mupen64
-
Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 04:58:19 +00:00
Dirk Meyer
66bef42e6b Dummy sound plugin for Mupen64
-
Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 04:57:04 +00:00
Dirk Meyer
d57538b2e0 Mupen64 base
-
Mupen64 is a highly portable Nintendo 64 emulator. It has been developed
on/for Linux originally but has already been ported successfully to other
operating systems. The program can easily be ported to all operating systems
supported by the SDL library.

In its current state, the emulator is highly compatible and uses a plugin
system. With the correct plugins ("correct" can be computer dependent), it
can achieve nearly perfect graphics and sound in many games.

WWW: http://mupen64.emulation64.com/

PR:		71895
Submitted by:	Travis Poppe
2004-10-12 04:53:51 +00:00
Edwin Groothuis
e60db4d37b [maintainer-update] vmips 1.2.1 -> 1.2.2
update emulators/vmips from 1.2.1 to 1.2.2

PR:		ports/71503
Submitted by:	Brian R. Gaeke <brg@dgate.ORG>
2004-10-12 01:26:56 +00:00
Edwin Groothuis
361ae183c4 Update: emulators/dosbox to 0.62
Updates dosbox from 0.61 to 0.62. Updates are speed/stability
	increases, general updates, and gcc 3.4 support without the
	patch. Note, the file 'files/patch-include-dos_inc.h' and
	the directory 'files' have been removed.

PR:		ports/72289
Submitted by:	Tom Carrick <knyghtmare@knyghtmare.com>
2004-10-11 23:16:18 +00:00
Edwin Groothuis
bc8096c671 emulators/gxmame. Add extra patch to enable compat with new xmame 0.86
A little patch is needed for this program to work with the
	new xmame.

PR:		ports/71255
Submitted by:	Miguel Mendez <flynn@energyhq.es.eu.org>
2004-10-11 22:38:54 +00:00
Edwin Groothuis
fec92a8b7e [Maintainer update] emulators/xmess to 0.86
sync with master port

PR:		ports/71253
Submitted by:	Miguel Mendez <flynn@energyhq.es.eu.org>
2004-10-11 22:38:03 +00:00
Edwin Groothuis
da0abe1116 [Maintainer update] emulators/xmame to 0.86
I was holding this in hope they would get networking fixed. No
    dice.  *NETWORKING DOESN'T WORK IN THIS VERSION* and is disabled
    in the Makefile.

    Some people have reported success on !i386, so I've removed the
    ARCH restriction for now. We'll see how it turns out.

    This version makes gxmame stop working, see the other PR about
    gxmame for a fix.

PR:		ports/71252
Submitted by:	Miguel Mendez <flynn@energyhq.es.eu.org>
2004-10-11 22:37:23 +00:00
Alexey Dokuchaev
d3dae2133e Unbreak with recent GCC.
Reported by:	kris
Approved by:	portmgr (krion), fjoe (mentor, implicit), maintainer
2004-09-30 18:14:15 +00:00
Kris Kennaway
f31a41e040 BROKEN: Broken pkg-plist
Approved by:	portmgr (self)
2004-09-30 05:48:18 +00:00
Kris Kennaway
84e8d56ed5 Increase USE_GCC to 3.4 for those ports which compile with it.
Approved by:	portmgr
2004-09-30 05:32:00 +00:00
Kris Kennaway
825afd6dc3 BROKEN on 5.x: Does not compile
Approved by:    portmgr (self)
2004-09-29 06:00:57 +00:00
Kris Kennaway
90abb24f53 BROKEN on 5.x: Does not compile
Approved by:    portmgr (self)
2004-09-29 05:45:34 +00:00
Kris Kennaway
2bdc678d9a Now builds on 5.x
Approved by:	portmgr (self)
2004-09-29 04:33:28 +00:00
Kris Kennaway
149b3e7f85 BROKEN on 5.x: Does not compile
Approved by:    portmgr (self)
2004-09-26 02:43:13 +00:00
Alexey Dokuchaev
1da8ab0c4c Fix the build on 5.X and -CURRENT.
Reported by:	kris
Approved by:	portmgr (marcus), fjoe (mentor, implicit), maintainer
2004-09-23 07:16:23 +00:00
Dirk Meyer
fd98652410 - update to 1.15
- unbreak for gcc2.95
- unbreak for gcc3.4
Approved by:	portmgr (marcus)
2004-09-18 19:17:52 +00:00
Kris Kennaway
f551de3b58 BROKEN on 5.x: Does not build
Approved by:    portmgr (self)
2004-09-18 18:50:35 +00:00
Kris Kennaway
86c64bf64c BROKEN: Conflicting dependencies (linux_base 7.x and 8.x)
Approved by:	portmgr (self)
2004-09-18 18:46:53 +00:00
Kris Kennaway
e9cb0e0ba3 BROKEN on 5.x: Does not compile
Approved by:    portmgr (self)
2004-09-17 22:47:50 +00:00
Kirill Ponomarev
24d0f3d72b Update to 0.98.12
PR:		ports/71197
Submitted by:	maintainer
2004-09-01 07:59:07 +00:00
Volker Stolz
a7c17cea10 Add BUILD_DEPENDS on nasm for i386.
PR:		ports/71135
Submitted by:	Roman Bogorodskiy (maintainer)
2004-08-31 09:03:43 +00:00
David E. O'Brien
2051fe865d First cut at supporting AMD64 (to give 32-bit support). 2004-08-30 02:11:02 +00:00
David E. O'Brien
f3ed87ea32 Minor portlint nit. 2004-08-30 01:15:25 +00:00
Kirill Ponomarev
e8991860cc Fix build with gcc-3.4
PR:		ports/71055
Submitted by:	Ports Fury
2004-08-28 06:06:17 +00:00
Mark Linimon
35964b116e Update to version 0.40.5.
PR:		ports/70939
Submitted by:	Florent Thoumie <flz at xbsd dot org>  (maintainer)
2004-08-28 04:41:14 +00:00
Kirill Ponomarev
c2e70b2c0f Fix build on sparc64 2004-08-24 08:48:14 +00:00
Kirill Ponomarev
01e7d2a801 Fix build with gcc-3.4 2004-08-22 20:10:46 +00:00
Pav Lucistnik
89f1709489 - Reclaim mainainership
PR:		ports/70772
Submitted by:	No Name <arundel@h3c.de>
2004-08-21 20:50:53 +00:00
Pav Lucistnik
886cd48fd0 - Fix build with gcc 3.4
Obtained from:	Dosbox CVS
2004-08-21 14:35:53 +00:00
Pav Lucistnik
556a038ede - Fix build on 4.x
- Don't install debugger unless asked
- Assume maintainership

PR:		ports/70769
Submitted by:	No Name <arundel@h3c.de>
2004-08-21 13:59:20 +00:00
Clement Laforet
fec27fdd6d - Remove emulators/vmware_xf4mod.
description:        A XFree86 4.x driver module for VMware guests
maintainer:         ports@FreeBSD.org
status:             IGNORE
deprecated because: This module is now part of XFree86 as of 4.1.0
expiration date:    2004-08-20
2004-08-20 15:41:51 +00:00
Volker Stolz
404de5fcd5 - Update to 0.3.0. Only X11 is supported at the moment.
- Minor packaging issues

PR:		ports/70438
Submitted by:	Roman Bogorodskiy (maintainer)
2004-08-19 19:52:57 +00:00
Volker Stolz
0469d087d5 Unbreak: Single-line whitespace-diff
Nuke pkg-plist while here.
2004-08-19 13:47:45 +00:00
Kirill Ponomarev
f3135247bc Update to verion 1.4.1
PR:		ports/70542
Submitted by:	Ports Fury
2004-08-16 17:48:37 +00:00
FUJISHIMA Satsuki
7bde97722a o add missing jpeg dependency, broken configure script did not detect it.
o use custom DOCSDIR.
2004-08-16 02:43:17 +00:00
Kris Kennaway
b0d78cb04f BROKEN on 4.x: Does not compile 2004-08-16 01:16:13 +00:00
Kris Kennaway
3a19cceee9 Reset maintainer:
<arundel@gmx.net>
    (reason: 550 5.1.1 {mx057} <arundel@gmx.net>... User is unknown)
2004-08-16 01:13:13 +00:00
Edwin Groothuis
0613a3b64c BROKEN= "pengo.c doesn't compile on 4.10 (see ports/69509)"
Noticed by: kris+pointyhat

Reviewed by:	Florent Thoumie <flz@xbsd.org> (long time ago)
2004-08-16 00:51:30 +00:00
Pav Lucistnik
0731abe759 - Update to 0.98.11
PR:		ports/70454
Submitted by:	Greg J. <xcas@cox.net> (maintainer)
2004-08-15 23:02:05 +00:00
Tilman Keskinoz
9fc7cf057f Fix build with gcc 3.4 2004-08-15 17:49:44 +00:00
Dirk Meyer
fb25bdd43e - update MASTER_SITES 2004-08-15 04:56:52 +00:00
Kris Kennaway
eb08fd905e BROKEN: Unfetchable 2004-08-14 20:49:52 +00:00
FUJISHIMA Satsuki
d4d258e052 o update to 1.7.2.
o catch up comment/descr.
o make freetype support non-optional.
o drop broken SDL support.
2004-08-14 20:34:30 +00:00
Dirk Meyer
8dd145170d - mark BROKEN for gcc34 2004-08-11 11:58:23 +00:00
James E. Housley
b8bf92b971 * Remove the last of the delecrations that were also in <stdio.h>
* Bump PORTREVISION
2004-08-11 01:30:57 +00:00
Adam Weinberger
92bfad2606 Oosp.
Bump PORTEPOCH.

Who would have thought that 0.2 < 20040701 ? What is
mathematics coming to these days?!

You know, back in MY day, we didn't have decimal points, 'cause
fractions hadn't been invented yet. You wouldn't go down to the
store and ask for half a cow. You couldn't even go to the store
and ask for a cow, 'cause meat hadn't been invented yet!

You think you all have it so easy, with your decimal points and
your hamburgers. Imagine what it was like back when we didn't
have mouths yet! We had to smear ground patty on our skin and
hope that it'd absorb into our bloodstream.

Yeah, you try getting some ground beef into your bloodstream. THEN
you'll find out whether you're a man or woman or boy or girl or
some reasonable facsimile thereof.
2004-08-10 18:04:21 +00:00
Adam Weinberger
dad51f7d16 Update to 0.2.
Requested by, cuz she knows I'm that smoove:	juli
2004-08-10 15:33:00 +00:00
Volker Stolz
a206f0d32d Reset maintainer. Much thanks to Stijn for maintaining the ports so far!
PR:		ports/70203
Submitted by:	Stijn Hoop (maintainer)
2004-08-10 11:04:41 +00:00
Volker Stolz
40fc5cee20 Add BPP8-option
PR:		ports/68925
Submitted by:	Eugene Grosbein
Approved by:	maintainer timeout
2004-08-09 15:48:55 +00:00
Kirill Ponomarev
d108c5dc75 Drop maintainership. 2004-08-08 08:11:20 +00:00
Kirill Ponomarev
d208cc8f7d Fix build with gcc-3.4.2
Support PLIST_FILES

PR:		ports/70115
Submitted by:	Ports Fury
2004-08-07 19:13:05 +00:00
Mike Silbersack
3e4cef01a5 Updated changelog to go with changes. :) 2004-08-04 22:25:00 +00:00
Mike Silbersack
1112ff172d Orlando's latest changes (see changelog file for details.) 2004-08-04 22:24:11 +00:00
Jeremy Messenger
b167bd2f9e Fix the build with GCC 3.4.x.
PR:		ports/69904
Submitted by:	Roman Bogorodskiy <bogorodskiy@inbox.ru> (maintainer)
2004-08-03 07:02:40 +00:00
Edwin Groothuis
acbbe206d5 New port: emulators/raine - Arcade Emulator for M68000, M68020 and Z80 based hardware
Arcade Emulator for M68000, M68020 and Z80 based hardware.

	WWW: http://www.rainemu.com/

PR:		ports/69509
Submitted by:	Florent Thoumie <flz@xbsd.org>
2004-08-01 23:17:59 +00:00
Pav Lucistnik
bac833972e - Fix WITH_BOCHS_GUI_TERM to work as documented
- Add new knob WITH_BOCHS_GUI_NOGUI

PR:		ports/69736
Submitted by:	Dryice Liu <dryice@liu.com.cn>
2004-07-29 18:13:28 +00:00
Ying-Chieh Liao
07cdcaaf4f add vmips 1.2.1
MIPS R3000 simulator

PR:		69641
Submitted by:	"Brian R. Gaeke" <brg@dgate.ORG>
2004-07-27 01:16:09 +00:00
Volker Stolz
60712add23 Move emulators/freesci to games
PR:		ports/68106
Submitted by:	Radim Kolar
2004-07-26 07:29:31 +00:00
Volker Stolz
ff6fd35ef8 Add missed file in last commit.
Noticed by:	Christoph Mallon
2004-07-25 08:33:18 +00:00
Volker Stolz
4d89db6ec3 Fix sound-issue. You will have to restart ZSNES each
time you modify the sound settings within the sound menu for them to work
properly, though.

PR:		ports/67644
Submitted by:	Travis Poppe
Approved by:	maintainer timeout
2004-07-24 22:42:44 +00:00
Eric Anholt
4eb209da7d - Add the X_WINDOW_SYSTEM={xorg,xfree86-4,xfree86-3} variable to bsd.port.mk,
and make XFREE86_VERSION map to it.  XFREE86_VERSION is now deprecated.
- Make xorg the default X_WINDOW_SYSTEM on -current.
- Add several new X_*_PORT variables which point to various pieces of X11 based
  on the setting of X_WINDOW_SYSTEM, and make ports use them.
- Add information to CHANGES about how to handle the transition.

PR:		ports/68763
Approved by:	portmgr (marcus)
Approved by:	re (scottl)
2004-07-23 19:10:32 +00:00
Kirill Ponomarev
e2f122bec6 Update to version 1.4
PR:		ports/69293
Submitted by:	Ports Fury
2004-07-20 15:25:23 +00:00
Gerald Pfeifer
69487a38ed Explain why I won't update this port (newer versions simply won't even
start on any version of FreeBSD).
2004-07-18 08:02:29 +00:00
Kirill Ponomarev
5a03fea9e4 Fix PLIST_FILES
PR:		ports/69186
Submitted by:	Ports Fury
2004-07-17 18:29:42 +00:00
Kirill Ponomarev
4b72bc7fe2 Update to 0715 snapshot
PR:		ports/69132
Submitted by:	maintainer
2004-07-17 12:24:33 +00:00
Kirill Ponomarev
652e92e2c0 Update to 1.7.2
PR:		ports/69162
Submitted by:	maintainer
2004-07-17 11:48:35 +00:00
Kirill Ponomarev
bac20eb3cc Update to version 0.6.0
PR:		ports/68897
Submitted by:	maintainer
2004-07-11 11:41:06 +00:00
Joe Marcus Clarke
9e5632dd66 Apply a big libtool patch to allow porters to use the libtool installed by
the libtoolX ports instead of the one included with each port.  Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version.  To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER.  Both macros accept the same argument: a libtool version.

For example, to use the ports version of libtool-1.5, add the following to
your Makefile:

USE_LIBTOOL_VER=        15

To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:

USE_INC_LIBTOOL_VER=    15

With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).

PR:		63944
Based on work by:eik and marcus
Approved by:	ade (autotools maintainer)
Tested by:	kris on pointyhat
Bound to be hidden problems:	You bet
2004-07-09 17:43:11 +00:00
Mike Silbersack
72602ae5b4 Latest update from Orlando Bassotto, includes better
network support.
2004-07-08 08:26:34 +00:00
Volker Stolz
bbae978a1d Update to 0.83.1
PRs:		ports/68550, ports/68551
Submitted by:	maintainer
2004-07-02 08:20:55 +00:00
Pav Lucistnik
e46786ffad - Unbreak on 4.x
Reported by:	bento via kris
Pointy hat:	mezz
2004-07-01 08:04:54 +00:00
Pav Lucistnik
50eb4e9311 - Fix plist. No portrevision raise as this is minor change.
PR:		ports/68360
Submitted by:	Roman Bogorodskiy <bogorodskiy@inbox.ru> (maintainer)
2004-06-26 17:15:03 +00:00
Kirill Ponomarev
69d55f08c2 Fix build on 4-x
PR:		ports/68349
Submitted by:	maintainer
2004-06-26 05:21:59 +00:00
Makoto Matsushita
0411725071 Fix kernel module build.
Since 'OBJS=' line is inserted _after_ bsd.kmod.mk, OBJS value is
overridden by the line (ahh...)  Hopefully, 'OBJS=' line is inserted
after 'SRCS=' line, but there's no handy way I suppose (sed's command
'i' requires to follow a newline, but how can I put a newline within
a one line?)

Since the contents (actually, kernel module) are changed,
bump PORTREVISION.

Submitted by: sobomax
2004-06-25 13:04:03 +00:00
Kirill Ponomarev
897e5e8fb6 Update to version 20040624
Add ppc system emulation

PR:		ports/68298
Submitted by:	maintainer
2004-06-25 07:37:31 +00:00
Mike Silbersack
8be1f0eb56 Fix a comparison that was giving false "you need a patch" messages
on 4.x systems.  No need for port revision bump.
2004-06-24 07:56:08 +00:00
Mike Silbersack
e3dd2e01d6 Update to keep up with the recent dev_t change in -current. No need for
a port revision bump, functionality is unchanged.
2004-06-24 07:52:27 +00:00
Mike Silbersack
cf1f2dd6ae Patch to keep up with the recent cdev changes. No need for a port
revision bump, the functionality is unchanged.
2004-06-24 07:49:45 +00:00
Makoto Matsushita
a9dc96fa18 Update to 4.5.2 build-8848. 2004-06-23 19:01:58 +00:00
Volker Stolz
7892bbf2dc Update to 3.2.0
Based on PR:	ports/63663
Submitted by:	Miguel Mendez
Approved by:	maintainer timeout
2004-06-23 16:28:59 +00:00
Kirill Ponomarev
53a39ff770 Update to 06/22 snapshot
PR:		ports/68214
Submitted by:	maintainer
2004-06-23 07:22:24 +00:00
Kris Kennaway
3c088f1b9a Set an expiry date of 2004-08-20 for these BROKEN/IGNORE/FORBIDDEN
ports.  They will be removed on or after that date if they are still
broken and no fix has been submitted to GNATS.
2004-06-21 21:27:46 +00:00
Kris Kennaway
bbdac6a841 Remove expired ports, plus the three ports that depended on them. 2004-06-20 23:40:39 +00:00
Oliver Eikemeier
8197a7a3d1 use libtools from ports 2004-06-19 11:14:08 +00:00