aboutsummaryrefslogtreecommitdiff
path: root/games/pioneers/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* games/pioneers: remove uneeded dependency on Gnome2Baptiste Daroussin2021-05-011-1/+2
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* games/pioneers: Update to 15.6Neel Chauhan2021-02-071-2/+2
| | | | Notes: svn path=/head/; revision=564629
* Prefer graphics/ligvrsvg2-rust over graphics/librsvg2Tobias C. Berner2020-11-091-1/+1
| | | | | | | | | | | | | | - switch to the more modern version of librsvg2 on architectures supporting rust - this will fix some graphical issues on these architectures PR: 250276 Exp-run by: antoine Submitted by: tobik Differential Revision: https://reviews.freebsd.org/D18878 Notes: svn path=/head/; revision=554733
* Fix build with -fno-commonStefan Eßer2020-09-301-1/+4
| | | | | | | While here add dependencies reported as missing by stage-qa. Notes: svn path=/head/; revision=550679
* games: Add missing USES={gnome,gl,sdl,xorg}Tobias Kortkamp2019-11-081-1/+1
| | | | Notes: svn path=/head/; revision=517046
* - Update to 15.5Wen Heping2018-07-251-2/+3
| | | | | | | | PR: 230005 Submitted by: freebsd_ports@k-worx.org Notes: svn path=/head/; revision=475296
* Make libgnome and libgnomeui not implying esound dependencyBaptiste Daroussin2018-03-261-0/+1
| | | | | | | | | | | | | | | | | | | It has been a while both does not depend anymore on esound, before this change esound dependency was wrongly added to plenty of packages which actually does not depend on it. While here: - audio/glame: remove esound support - games/monkeybubble: add an explicit dependency on esound - sysutils/gnome-schedule: add en explicit dependency on pkg-config - comms/kb: add missing dependency on pkgconfig - x11-toolkits/libgnomeui: * update to 2.4.5 * use USES=localbase Notes: svn path=/head/; revision=465584
* games/pioneers:Lars Engels2016-10-271-1/+1
| | | | | | | - Update to 15.4 Notes: svn path=/head/; revision=424786
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | 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
* games/pioneers: minor cleanupJan Beich2015-08-161-3/+3
| | | | | | | | | | | | | - Use LDFLAGS for -L/foo - Sort plist to avoid noise on the next update - Drop redundant slash in MASTER_SITES - Clarify LICENSE PR: 201843 Submitted by: tkato432@yahoo.com Notes: svn path=/head/; revision=394381
* games/pioneers: update to 15.3Jan Beich2015-08-161-4/+3
| | | | | | | | | Changes: http://sourceforge.net/p/pio/news/2014/10/pioneers-153-released/ PR: 201843 Submitted by: tkato432@yahoo.com Notes: svn path=/head/; revision=394380
* Part 1 of adding USE_GNOME=intltool to ports that require it.Koop Mast2015-08-021-1/+1
| | | | | | | | | | | The reason for this is that in the GNOME 3.16 update, USE_GNOME gtk20 and gtk30 don't pull intltool in anymore. PR: 201980 Exp-run by: antoine@ Notes: svn path=/head/; revision=393444
* Drop maintainership.Stefan Walter2015-07-121-1/+1
| | | | Notes: svn path=/head/; revision=391831
* Fix plistBaptiste Daroussin2014-12-251-3/+2
| | | | | | | Remove useless gnomehack Notes: svn path=/head/; revision=375515
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-0/+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
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=357486
* - Convert gmake, bzip to USESMartin Wilke2014-05-291-2/+1
| | | | | | | Approved by: portmgr Notes: svn path=/head/; revision=355704
* - Update to 15.1.Stefan Walter2013-11-031-7/+6
| | | | | | | | - Add license. - Enable staging. Notes: svn path=/head/; revision=332615
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | games) Notes: svn path=/head/; revision=327730
* - Convert USE_GETTEXT to USES (part 3)Alex Kozlov2013-04-241-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316464
* Update to 14.1.Stefan Walter2012-09-091-2/+2
| | | | Notes: svn path=/head/; revision=303961
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* Update to 0.12.5.Stefan Walter2012-02-251-1/+1
| | | | Notes: svn path=/head/; revision=292214
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* Update to 0.12.4.Stefan Walter2011-03-201-1/+1
| | | | Notes: svn path=/head/; revision=271345
* Update to 0.12.3.1.Stefan Walter2010-09-301-1/+1
| | | | Notes: svn path=/head/; revision=262192
* Update to 0.12.3.Stefan Walter2010-07-031-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=257329
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-1/+1
| | | | Notes: svn path=/head/; revision=255371
* Fix master site.Stefan Walter2010-05-111-1/+1
| | | | Notes: svn path=/head/; revision=254160
* - 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
* - Retire MASTER_SITE_SOURCEFORGE_EXTENDED, it's no longer needed - all ↵Dmitry Marakasov2009-09-021-2/+1
| | | | | | | | | | | | mirrors actually have all distfiles - Merge all SF mirrors to MASTER_SITE_SOURCEFORGE, resort according to quick download speed survey - Fix MASTER_SITES for all port that have used SOURCEFORGE_EXTENTED Approved by: portmgr (pav) Notes: svn path=/head/; revision=240715
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-1/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* 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.12.2.Stefan Walter2008-05-051-2/+1
| | | | Notes: svn path=/head/; revision=212656
* - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGMartin Wilke2008-03-231-1/+0
| | | | | | | | | - Bump PORTREVISION Approved by: portmgr (xorg cleanup) Notes: svn path=/head/; revision=209620
* Presenting GNOME 2.20.1 and all related works for FreeBSD. The officialJoe Marcus Clarke2007-10-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GNOME 2.20 release notes can be found at http://www.gnome.org/start/2.20/notes/en/ . Beyond that, this update includes the new GIMP 2.4 (courtesy of ahze). The GNOME 2.20 update also includes a huge change in the FreeBSD GNOME hierarchy. We are now using the more standard DATADIR of ${PREFIX}/share rather than ${PREFIX}/share/gnome. The result is that fewer patches and hacks are needed to port GNOME components to FreeBSD. This will mean some user changes may be required, so be sure to read /usr/ports/UPDATING for more details. This release and the things we accomplished in it would not have been possible without mezz's crazy idea to collapse DATADIR, and his persistence to make it happen successfully. Ahze and pav also deserve thanks for their work on porting modules and testing the whole ball of wax on pointyhat (respectively). The FreeBSD GNOME team would also like to thank our various testers and contributors: Yasuda Keisuke Frank Jahnke Pawel Worach Brian Gruber Franz Klammer Yuri Pankov Nick Barkas Cristian KLEIN Tony Maher Scot Hetzel Martin Matuska (mm) Benoit Dejean Martin Wilke (miwi) (And anyone else I may have missed) PRs fixed in this release: 111272, 113470, 115995, 116338 Notes: svn path=/head/; revision=201947
* Update to 0.11.3.Stefan Walter2007-10-141-1/+1
| | | | Notes: svn path=/head/; revision=201471
* - Update to 0.11.2.Stefan Walter2007-09-061-2/+3
| | | | | | | - Add dependency on x11/yelp to enable online help. Notes: svn path=/head/; revision=198923
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptRong-En Fan2007-07-231-1/+0
| | | | | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run Notes: svn path=/head/; revision=196111
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-1/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* Fix path of locale directory so localization is possible.Stefan Walter2007-04-031-0/+1
| | | | | | | | PR: 110624 Submitted by: Steinel Andreas<lnxbil@saarlinux.org> Notes: svn path=/head/; revision=189077
* Update to 0.10.2.Stefan Walter2007-01-061-1/+1
| | | | Notes: svn path=/head/; revision=181622
* Update to 0.9.64.Stefan Walter2006-06-081-1/+1
| | | | | | | Approved by: arved (mentor) Notes: svn path=/head/; revision=164845
* Update to 0.9.62.Stefan Walter2006-05-281-2/+2
| | | | | | | Approved by: arved (mentor) Notes: svn path=/head/; revision=163750
* Statically depend on libgnome again as it's easier to test this way and includesStefan Walter2006-05-121-12/+4
| | | | | | | | | the online help, too. Approved by: arved (mentor) Notes: svn path=/head/; revision=162194
* Convert MAINTAINER to my freebsd.org account.Stefan Walter2006-05-071-1/+1
| | | | Notes: svn path=/head/; revision=161594
* Update to 0.9.61Tilman Keskinoz2006-04-151-1/+2
| | | | | | | | PR: 95659 Submitted by: Stefan Walter <sw@gegenunendlich.de> Notes: svn path=/head/; revision=159606