Commit graph

77 commits

Author SHA1 Message Date
Matthew Rezny
b760897dde Revision bump of all ports with USE_GL after consolidation of mesa-libs
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D10845
2017-05-23 05:03:14 +00:00
Gerald Pfeifer
04d6f52202 Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using using Mk/bsd.octave.mk which in turn has USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
   c++11-lang, c++0x, c11, or gcc-c++11-lib.

PR:		216707
2017-04-01 15:23:30 +00:00
Jan Beich
d97eadd0f0 emulators/mame: unbreak with clang 4.0
../../../../../src/emu/webengine.c:333:21: error: ordered comparison between pointer and zero
      ('int *' and 'int')
                if ((&data_length > 0) && (sizeof(file_name) > 0))
                     ~~~~~~~~~~~~ ^ ~

Reported by:	antoine (via exp-run)
2017-02-02 09:39:25 +00:00
Gerald Pfeifer
89f8b05214 Bump PORTREVISIONS for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of
gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang,
c++11-lang, c++0x, c11 requested via USES=compiler.
2016-11-20 09:38:08 +00:00
Mark Linimon
1e7d9be3cf Change from NOT_FOR to ONLY_FOR. This fails to build on both armv6 and
aarch64 and was never tried on most other architectures.
2016-10-12 03:36:11 +00:00
Dmitry Marakasov
26f1832538 - Remove always false condition 2016-09-16 21:01:21 +00:00
Mathieu Arnold
4e1b79a0a6 Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 14:00:51 +00:00
John Marino
82654c5094 emulators/(mame|mess): Avoid name pollution with <stdio.h>
At least on DragonFly's base compiler (gcc 5.2), the getc and ungetc
routines in mame/mess were getting clobbered by <stdio.h>.  Rename
getc and ungetc to mame_getc and mame_ungetc to fix.  For some reason,
macro definitions did not work so I had to patch every instance
individually.
2015-11-02 09:22:26 +00:00
Guido Falsi
44f13dd9ba Update mame/mess to 0.166
PR:		203509, 203510
Submitted by:	Paul Boehmer <freebsd at never4evil.com>
2015-10-24 11:13:16 +00:00
Antoine Brodin
6e5719ca80 Convert to USES=jpeg 2015-06-22 18:33:20 +00:00
John Marino
9a7be0a622 emulators/(mame|mess): Upgrade version 0.154 => 0.161 (overhaul ports)
I completely reworked these unmaintained ports.  I turned mess into a
proper slave port as the differences from mame were few.  Some notes:

  * converted to GitHub (this saved messing with the double-zip /
    dos2unix per file arrangement, no more post-extract target)
  * got rid of patchlevel support accordingly
  * got rid of DIST_SUBDIR accordingly
  * Clang from FreeBSD 10 cannot build this!  It fails will some kind of
    signal.  I did not test on FreeBSD 11 yet.  For now, degrade the
    ports to use GCC always.  Note the makefiles were hardcoded to GCC.
    I fixed the hardcoding so it uses environment but perhaps it's known
    that mame/mess is now gcc-only
  * Some options are no longer optional, e.g. BUILTIN_DEBUGGER, SDL2
    These were made unconditional accordingly.
  * mess is now a minimal slave port.  There are some additions to mame
    Makefile to support the slave.
  * I used PORTDOCS and PORTEXAMPLE to simplify each pkg-plist
  * DragonFly support still pending.  This port discovered a bug in
    GCC 5.1 release which has been fixed recently, so the base compiler
    has to be upgraded before testing can resume.
2015-05-25 07:29:14 +00:00
Tijl Coosemans
60945f0277 Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla in
the 32 ports that still use it.  Bump PORTREVISION on their dependent
ports except the ones that depend on these:

audio/libogg
audio/libvorbis
devel/pcre
ftp/curl
graphics/jpeg
graphics/libart_lgpl
graphics/tiff
textproc/expat2
textproc/libxslt

In these cases the same trick as in the recent gettext update is used.
The ports install a symlink with the old library version.  When enough
of their dependent ports have had regular updates the remaining ones can
get a PORTREVISION bump and the links can be removed.

Also remove the devel/pcre dependency from USE_GNOME=glib20.  It causes
over 2200 packages to depend on devel/pcre while less than 200 actually
link with it.  The glib20 package still depends on devel/pcre so this
should not make a difference for ports with USE_GNOME=glib20.  Also,
libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so
USE_GNOME=glib20 should not propagate it.

PR:		195724
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-12-08 16:48:38 +00:00
John Marino
15dffe014c emulators/mame: Remove redundant @dirrm, simplify an install command 2014-10-05 10:30:40 +00:00
John Marino
638412fe35 emulators/mame: clean up, remove zip dependency, support DragonFly
This port has a post-extract target that wants to use native unzip
on an extracted file.  This is an issue for DragonFly, but tar can
handle the zip file just file on both platforms, so switch to that.

DragonFly still has the incomplete FILE that it inherited from FreeBSD,
which is really a pain when FILE is a parameter in c++ routines.  This
adds an extra patch for DragonFly to use an alternative default logging
callbacks to all mame to finally build on this platform.

While here:
  - remove use of ${PORTNAME} where "mame" is the only correct value
  - use ".zip" instead of extract variable
  - Unmask installation commands
  - Group mkdir commands into one
  - Use NOT_FOR_ARCHS instead of conditional BROKEN
  - Convert to USES=python
  - Remove unnecessary conversion of -lpthread => -pthread
2014-10-05 09:37:16 +00:00
Gerald Pfeifer
15945f8122 Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
2014-09-10 20:50:31 +00:00
Guido Falsi
4d83618c11 Update mame/mess to 0.154
PR:		188861
Submitted by:	Ports Fury
2014-08-01 08:13:29 +00:00
Dmitry Marakasov
6ddd7ebf8b - Switch graphics/sdl2_ttf to USES=libtool, drop .la files
- Bump dependent ports as .so version has changed

Approved by:	portmgr blanket
2014-07-03 17:25:30 +00:00
Danilo Egea Gondolfo
2abe307f26 emulators/qmc2
- Update from 0.41 to 0.42

emulators/{mame,mess} [1]
- Update from 0.150 to 0.152

PR:		ports/184246
Submitted by:	KATO Tsuguru <tkato432@yahoo.com> [1]
2014-01-16 02:44:49 +00:00
Rene Ladan
50f8eaece1 Python cleanup:
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2
- USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes
Reviewed by:	python (mva, rm)
Approved by:	portmgr-lurkers (mat)
2014-01-13 21:00:02 +00:00
Marcus von Appen
171759f9fe - Fix the usage of 'python' to get rid of the implicit lang/python
dependency
2013-11-24 21:09:22 +00:00
Mathieu Arnold
02e619a5d8 - Convert to dos2unix.mk
- While at it convert to gmake.mk ports that still USE_GMAKE.
2013-11-19 23:08:44 +00:00
Marcus von Appen
7c19894cc2 - Switch devel/sdl20 to use the autotools-based configuration, since the
cmake-based one is not maintained that well
- Fix library naming to ensure backwards compatibility on minor version
  changes
- Bump the PORTREVISION on ports depending on devel/sdl20, since its
  shared library name changed

PR:		ports/183975
Submitted by:	Jan Kokemüller <jan.kokemueller@gmail.com>
2013-11-17 12:33:49 +00:00
Pawel Pekala
d0bbb68224 emulators/mame
emulators/mess
 - Update to version 0.150
 - Add SDL2 option
 - Support staging

emulators/qmc2
 - Support staging
 - USE_GMAKE -> USES=gmake

PR:		ports/182801
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2013-10-30 20:42:02 +00:00
Gerald Pfeifer
3be3e90f93 Update to libmpc version 1.0.1 which brings the following fixes:
- 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)
2013-10-26 00:52:33 +00:00
Baptiste Daroussin
1089da7dcc Add NO_STAGE all over the place in preparation for the staging support (cat: emulators) 2013-09-20 16:43:52 +00:00
Gerald Pfeifer
41e60477bd Replace USE_GCC=4.6+ and USE_GCC=4.4+ by USE_GCC=yes.
Right now this is a noop in the former case and a noop in the latter
case unless lang/gcc44 has been installed explicitly.

This puts a bit more emphasis on standardizing on a canonical version
"current" GCC and makes it easier to update that canonical version
by changing the default in Mk/bsd.gcc.mk and updating the lang/gcc port.

That is, USE_GCC=yes means "use a decent/modern version of GCC" without
having to worry about details.

Approved by:	portmgr (bdrewery)
2013-08-17 16:27:24 +00:00
Alex Kozlov
d4041784dc - Remove MAKE_JOBS_SAFE variable
Approved by:	portmgr (bdrewery)
2013-08-14 22:35:50 +00:00
Martin Wilke
299a8e2abb - Update emulators/mame to version 0.149
- Update emulators/mess to version 0.149
- Update emulators/qmc2 to version 0.39
2013-07-11 15:27:40 +00:00
Christian Weisgerber
1f2b1eac8e * Major update to FLAC 1.3.0, including shared library bumps.
* Chase the update in dependent ports.

PR:		179072
2013-06-09 19:30:58 +00:00
Martin Wilke
aec7c9e3d2 - Update to 0.148
PR:		175577
Submitted by:	Ports Fury
2013-02-05 09:09:13 +00:00
Guido Falsi
9279048f31 Move OSVERSION check after bsd.port.pre.mk.
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
Feature safe:	yes
2012-10-30 08:47:53 +00:00
Guido Falsi
382265bfd7 - Update to version 0.147 [1]
- Reflow pkg-descr and add trailing slash to URL [1]
- Trim Makefile headers [1]
- Fix improper overwriting of FILE make variable [1]
- Works fine with clang, so don't depend on gcc 4.6+ where clang
  is available (taken from libreoffice port)

PR:		ports/171994 [1]
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
Feature safe:	yes
2012-10-29 22:17:49 +00:00
Sylvio Cesar Teixeira
88e9c0c675 - Update to version 0.146
PR:		ports/168998
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2012-06-17 20:23:48 +00:00
Guido Falsi
f41e1b6b10 Convert to new options framework.
Approved by:	tabthorpe (mentor)
2012-06-08 11:58:48 +00:00
Dmitry Marakasov
e09ef9b8a3 - Respect STRIP
PR:		ports/167818
Submitted by:	Jan Beich <jbeich@tormail.org>
2012-05-13 00:42:10 +00:00
Gerald Pfeifer
557a24f2e1 Replace USE_GCC=4.4+ by USE_GCC=4.6+, the former is only here for a
single, obsolete port.

Feature safe:	yes
2012-03-11 01:07:00 +00:00
Martin Wilke
8c720ade0c - Update to version 0.145
PR:		164990
Submitted by:	Ports Fury
2012-02-19 23:24:50 +00:00
Marcus von Appen
fbd0197639 - Update devel/sdl12 to 1.2.15
- Update audio/sdl_mixer to 1.2.15
- Update graphics/sdl_image to 1.2.12
- Update graphics/sdl_ttf to 2.0.11
- Update graphics/sdl_gfx to 2.0.23
- Update net/sdl_net to 1.2.8
- Bump PORTREVISIONs on ports that depend on one or more packages due to
ABI and shared library version changes
- Update Mk/bsd.sdl.mk accordingly for the new shared library versions

Tested by:	exp-run by pav
2012-02-18 10:18:33 +00:00
Mark Linimon
70318e034d Reset elbarto@ArcadeBSD.org: address bounces, last maintainer activity 2010.
Hat:		portmgr
2012-01-17 22:04:40 +00:00
Chris Rees
bc8dd1b931 - Update to 0.143p2 ('borrowing' obrien's cool patchlevel code from editors/vim)
- Add missing fontconfig dependency
- Use PORTDOCS/PORTEXAMPLES
- Use PATCHDIR (not FILESDIR)
- Use COPYTREE_SHARE (not cp -R)

Mostly based on:
PR:		ports/153645
Submitted by:	Emmanuel Vadot <elbarto@arcadebsd.org> (maintainer), acm
Approved by:	maintainer timeout (8 weeks)
2011-08-13 17:04:38 +00:00
Martin Wilke
6804d852ff = Drop MD5 support 2011-07-02 17:14:20 +00:00
Max Brazhnikov
95b3903d4c Update to 0.139
PR:		ports/149105
Submitted by:	Emmanuel Vadot (maintainer)
2010-08-01 17:22:55 +00:00
Max Brazhnikov
2da3ff79ef Update to 0.138
PR:		ports/146696
Submitted by:	Emmanuel Vadot (maintainer)
2010-05-19 18:05:34 +00:00
Max Brazhnikov
79ce264e0c Update port to v0.137.
Rename the port to mame as the sdl layer is now included in the mainstream code.

PR:		ports/145050
Submitted by:	Emmanuel Vadot (maintainer)
2010-05-17 22:20:26 +00:00
Wen Heping
90b1b2add7 - Fix typo in Makefile
PR:		ports/144160
Submitted by:	Andrius Morkunas <hinokind@gmail.com>
Approved by:	maintainer
Feature safe:	yes
2010-02-22 00:49:21 +00:00
Martin Wilke
242f759cc1 - Update to 0.136
PR:		142309
Submitted by:	Emmanuel Vadot <elbarto@arcadebsd.org> (maintainer)
2010-01-04 23:14:35 +00:00
Sylvio Cesar Teixeira
656e8c209d - Update to v0.135
PR:		ports/140532
Submitted by:	maintainer
Approved by:	miwi (mentor)
2009-11-21 22:35:44 +00:00
Dmitry Marakasov
fa8d2d514e - Update to 0.134
PR:		138838
Submitted by:	Emmanuel Vadot <elbarto@ArcadeBSD.org> (maintainer)
Feature safe:	yes
2009-09-19 16:23:29 +00:00
Martin Wilke
c476b6c742 - Update to 0.1333
PR:		137019
Submitted by:	Emmanuel Vadot <elbarto@arcadebsd.org> (maintainer)
2009-07-26 20:50:59 +00:00
Dmitry Marakasov
44398a3adf - Update to 0.132
PR:		135382
Submitted by:	Emmanuel Vadot <elbarto@arcadebsd.org> (maintainer)
2009-06-09 02:23:18 +00:00