aboutsummaryrefslogtreecommitdiff
path: root/emulators/loemu
Commit message (Collapse)AuthorAgeFilesLines
* - Fix trailing whitespace in pkg-descrs, categories [a-f]*Dmitry Marakasov2016-05-191-7/+7
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415498
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-6/+6
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Convert LICENSE= "GPLxx # or later" to "GPLxx+"Dmitry Marakasov2016-01-121-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=405891
* Remove trailing whitespace from Makefiles, A-L.Jimmy Olgeni2015-10-081-1/+1
| | | | Notes: svn path=/head/; revision=398832
* emulators/loemu: Fix runtime after mame upgradeJohn Marino2015-05-253-27/+28
| | | | | | | | | | | | | | | | This port has probably be broken (at least by default) for many years. It was trying to call sdlmame (I think) but the name was "mame" and now for amd64, the name is "mame64". Attempt to fix this (not testing was done, however). While here, clean up post-patch which was doing a lot of nothing, leverage shebangfix, and regenerate patch accordingly. Note that RUN_DEPENDS had to be changed to deal with the morphing executable name. Notes: svn path=/head/; revision=387374
* - Add LICENSEDmitry Marakasov2015-03-052-0/+5
| | | | | | | - Add empty directories to plist Notes: svn path=/head/; revision=380468
* Clean up plistBaptiste Daroussin2014-10-271-8/+0
| | | | Notes: svn path=/head/; revision=371563
* - Convert ports from dns/, editors/ and emulators/ to newMarcus von Appen2014-10-191-3/+2
| | | | | | | | | USES=python Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371188
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888
* - Remove deprecated INSTALLS_EGGINFO knob. Since the ports use distutils,Marcus von Appen2014-08-171-1/+0
| | | | | | | | | there is no need to touch the plist. With hat: python@ Notes: svn path=/head/; revision=365179
* 1: Stagify.Vanilla I. Shu2014-07-091-18/+7
| | | | | | | | 2: add INSTALLS_EGGINFO, bump version. 3: use options helper. Notes: svn path=/head/; revision=361347
* Resetting maintainership on ports that have not been staged and without anyAntoine Brodin2014-07-021-1/+1
| | | | | | | | | pending PR With hat: portmgr Notes: svn path=/head/; revision=360256
* The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising2014-04-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb) Notes: svn path=/head/; revision=351411
* - Remove optional dependency on expired emulators/xmameRene Ladan2014-03-302-8/+3
| | | | | | | | | | - Update pkg-descr - Bump PORTREVISION Approved by: portgmr (blanket) Notes: svn path=/head/; revision=349683
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-10-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331644
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | emulators) Notes: svn path=/head/; revision=327721
* Convert emulators to new options frameworkBaptiste Daroussin2013-04-281-15/+13
| | | | Notes: svn path=/head/; revision=316753
* - Convert USE_GETTEXT to USES (part 3)Alex Kozlov2013-04-241-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316464
* = Drop MD5 supportMartin Wilke2011-07-021-1/+0
| | | | Notes: svn path=/head/; revision=276915
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-1/+1
| | | | Notes: svn path=/head/; revision=255371
* emulators/sdlmame was renamed to mameMax Brazhnikov2010-05-171-4/+4
| | | | Notes: svn path=/head/; revision=254509
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-1/+1
| | | | Notes: svn path=/head/; revision=249285
* - Use the correct way for take py-gtk dependencyJose Alonso Cardenas Marquez2008-07-111-1/+1
| | | | | | | | PR: 125478 125479 125481 Submitted by: amdmi3 Notes: svn path=/head/; revision=216700
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* - Update to 0.3.1Jose Alonso Cardenas Marquez2008-03-282-4/+4
| | | | Notes: svn path=/head/; revision=209982
* - Update to version 0.3.0.Alejandro Pulver2008-02-103-4/+10
| | | | | | | Approved by: acm (maintainer, private e-mail) Notes: svn path=/head/; revision=206976
* - Update to 0.2.1Jose Alonso Cardenas Marquez2007-12-253-9/+16
| | | | | | | - Add ZSNES option Notes: svn path=/head/; revision=204471
* - Update to 0.2.0Jose Alonso Cardenas Marquez2007-08-194-36/+15
| | | | Notes: svn path=/head/; revision=197926
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* - Remove the detection of some python dependencies from setup.py. It could breakJose Alonso Cardenas Marquez2007-03-272-3/+35
| | | | | | | | | installation of loemu on all FreeBSD versions. Reported by: kris Notes: svn path=/head/; revision=188431
* - Update to 0.1.1Jose Alonso Cardenas Marquez2007-03-242-7/+24
| | | | | | | - Add SDLMAME, XMAME and SNES9X options Notes: svn path=/head/; revision=188189
* - New port: emulators/loemuJose Alonso Cardenas Marquez2007-02-275-0/+111
Loemu is a free application that provides a simple frontend for various game emulators. Features: - Currently it supports game emulation with xmame, sdlmame and snes9x. - Browse games using dynamic list. This allows to browse in a list generated with some categories (and it has other advantages). - Finds games quickly. Using a specific dialog that looks for a game in all the gamelist. - The generation of the dynamic list filtering the gamelist is very fast. - It has been developed with PyGTK + Glade. - Released under GNU General Public License. The design of loemu allows the support of more emulators adding specific emulator configuration files. WWW: http://loemu.pegueroles.com/ Notes: svn path=/head/; revision=186170