aboutsummaryrefslogtreecommitdiff
path: root/games/cuyo
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* games: Add missing USES={gnome,gl,sdl,xorg}Tobias Kortkamp2019-11-081-1/+1
| | | | Notes: svn path=/head/; revision=517046
* Add USES=xorg USES=gl, ports categories gNiclas Zeising2019-11-051-1/+1
| | | | | | | | Add USES=xorg and USES=gl to ports in categories starting with 'g'. While here, try to sprinkle other USES (mostly gnome and sdl) as needed. Notes: svn path=/head/; revision=516845
* - Switch to USES=localbaseDmitry Marakasov2019-08-252-6/+3
| | | | | | | | | | - Switch to options helpers - Update WWW Approved by: portmgr blanket Notes: svn path=/head/; revision=509780
* 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
* Fix build when there is no /usr/bin/perl. (Also, say that this needs Perl forMathieu Arnold2015-04-202-5/+9
| | | | | | | | | | building WITH=NLS.) With hat: perl Sponsored by: Absolight Notes: svn path=/head/; revision=384362
* converters/libiconv:Tijl Coosemans2015-04-151-11/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove const qualifier from iconv(3) to match POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html - Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is defined because the base system iconv supports these extensions too. Add/remove patches to/from ports to call iconv with non-const arguments. This breaks some ports on FreeBSD 10 because base system iconv.h still has the const qualifier. Fix this by letting USES=iconv add a build dependency on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG defined) instead of the base system iconv.h. This exposed some ports that link with libiconv when it is available instead of using libc iconv. In these cases one of the following changes has been made: - patch configure scripts to test for libc iconv first - add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable some configure tests - converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4 - lang/gcc5-aux: respect CFLAGS and friends during configure such that LIBICONV_PLUG is defined in the iconv test, also switch to external gettext - mail/gnarwl: replace patches with CPPFLAGS/LIBS - multimedia/ffmpeg2theora: remove iconv test from SConstruct and use ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c - net-im/licq: finish conversion to cmake - net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4: don't need iconv - textproc/p5-XML-TinyXML: finish conversion to USES=perl5 Other changes: - databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2 and lzo support - games/ldmud: respect CFLAGS and friends - graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg dependencies PR: 199099 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=384038
* games/cuyo: update 2.0.0 -> 2.1.0Bartek Rutkowski2015-03-176-43/+178
| | | | | | | | | | - Add NLS knobs for gettext handling PR: 197430 Submitted by: Kato Tsuguru <tkato432@yahoo.com> Notes: svn path=/head/; revision=381473
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla inTijl Coosemans2014-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=374303
* Split devel/gettext in devel/gettext-runtime and devel/gettext-tools. TheTijl Coosemans2014-11-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | first contains runtime libraries such as libintl and the latter contains developer tools such as msgfmt. Ports that use gettext will usually need a LIB_DEPENDS on gettext-runtime and a BUILD_DEPENDS on gettext-tools. USES=gettext-runtime can be used to set a LIB/BUILD/RUN_DEPENDS on devel/gettext-runtime and USES=gettext-tools can be used to set a BUILD/RUN_DEPENDS on devel/gettext-tools. USES=gettext is now the same as "USES=gettext-runtime gettext-tools" meaning a LIB_DEPENDS on devel/gettext-runtime and a BUILD_DEPENDS on devel/gettext-tools. Update gettext to 0.19.3. Remove :oldver from converters/libiconv and devel/gettext-runtime. Leave symlinks with the old library versions to avoid the need to bump PORTREVISION on a large number of dependent ports. When most of the dependent ports have had normal version updates, PORTREVISION can be bumped on the remaining ones (low number) and the links can be removed. Fix some ports that installed files in lib/locale instead of share/locale. PR: 194038 Reviewed by: bapt Exp-run: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=373636
* - Release ports maintained by games@Dmitry Marakasov2014-10-311-1/+1
| | | | | | | | | | | | | | games@ team is quite small and inactive, so ports currently assigned to it cannot be assumed as properly maintained. To not cause confusion by making it look otherwise, and also to allow and promote adoption by individual maintainers, release these ports back to the pool. Note that this does not change the fact that games@ team still takes care of these ports to excent of its capabilities. Suggested by: marino Notes: svn path=/head/; revision=371872
* - Clarify LICENSEDmitry Marakasov2014-10-112-4/+2
| | | | | | | | - Add LICENSE_FILE - Drop @dirrm* from plist Notes: svn path=/head/; revision=370643
* 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 TODO from DOCSRusmir Dusko2014-09-061-1/+4
| | | | | | | - Set PORTSCOUT, Do not use older versions Notes: svn path=/head/; revision=367447
* Moving some games to @gamesRusmir Dusko2014-05-021-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | games/3dpong - Remove FTP master site - Transfer maintainership to games@ team - Remove TODO.txt from DOCS games/abe - Transfer maintainership to games@ team - Cosmetical changes games/abuse_sdl - Transfer maintainership to games@ team games/airstrike - Transfer maintainership to games@ team - Remove TODO from DOCS games/aop - Transfer maintainership to games@ team - Break lines around 80 characters games/asteroid - Transfer maintainership to games@ team games/asteroids3d - Transfer maintainership to games@ team games/awale - Transfer maintainership to games@ team games/barbie_seahorse_adventures - Transfer maintainership to games@ team games/barrage - Transfer maintainership to games@ team games/black-box - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/blobwars - Transfer maintainership to games@ team games/blockrage - Transfer maintainership to games@ team games/bombz - Transfer maintainership to games@ team - Cosmetical changes games/bouncy - Transfer maintainership to games@ team - Cosmetical changes - Change Desktop entry file games/bubble-chains - Transfer maintainership to games@ team - Remove not needed bsd.port.options.mk games/bugsquish - Remove FTP master site - Transfer maintainership to games@ team - Remove TODO.txt from DOCS games/capicity - Transfer maintainership to games@ team games/capitalism - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Change Desktop entry file - Break lines around 80 characters games/cuyo - Transfer maintainership to games@ team - Don't silence warnings - Remove TODO from DOCS games/defendguin - Remove FTP master site - Transfer maintainership to games@ team - Remove TODO.txt from DOCS - Break lines around 80 characters games/duckmaze - Transfer maintainership to games@ team - Remove TODO.txt from DOCS - Add DOCS Option - Cosmetical changes games/entombed - Remove FTP master site - Transfer maintainership to games@ team - Remove TODO.txt from DOCS - Change Desktop entry file games/epiar - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/euchre - Transfer maintainership to games@ team - Remove TODO from DOCS - Change Desktop entry file - Change pkg-descr, cosmetical changes games/fightorperish - Transfer maintainership to games@ team - Remove TODO.txt from DOCS - Change Desktop entry file - Break lines around 80 characters games/frotz - Transfer maintainership to games@ team games/gemdropx - Remove FTP master site - Transfer maintainership to games@ team - Remove TODO.txt from DOCS games/glightoff - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Remove TODO from DOCS games/gnurobots - Transfer maintainership to games@ team - Remove TODO from DOCS - Simplify DOCS installation handling games/gtkballs - Transfer maintainership to games@ team games/gtktetcolor - Transfer maintainership to games@ team games/help_hannahs_horse - Transfer maintainership to games@ team - Disable Clang warnings with CFLAGS+ - Cosmetical changes - Change pkg-plist, remove mtree games/hitori - Change Makefile header, use my name and @FreeBSD.org email - Bump PORTREVISION for dependency change - Transfer maintainership to games@ team - Remove USES desktop-file-utils - Use tar:xz instead of USE_XZ=yes games/holotz-castle - Transfer maintainership to games@ team - Break lines around 80 characters games/icbm3d - Remove FTP master site - Transfer maintainership to games@ team games/icebreaker - Transfer maintainership to games@ team - Change pkg-message games/icebreaker - Transfer maintainership to games@ team games/iceicepenguin - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Add DOCS Option games/impossible_mission_puzzle - Transfer maintainership to games@ team games/kajaani-kombat - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Cosmetical changes games/krank - Transfer maintainership to games@ team - Add DOCS Option - Cosmetical changes games/lianliankan - Transfer maintainership to games@ team games/lmarbles - Transfer maintainership to games@ team games/lostfeathers - Transfer maintainership to games@ team - Use zip instead of USES=zip - USES shebangfix and SHEBANG_FILES instead of REINPLACE - Cosmetical changes games/madbomber - Remove FTP master site - Transfer maintainership to games@ team - Remove TODO.txt from DOCS games/maelstrom - Transfer maintainership to games@ team games/moagg - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Cosmetical changes games/mopesnake - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Remove TODO.txt from DOCS - Cosmetical changes games/nuclearchess - Transfer maintainership to games@ team games/palomino/Makefile - Transfer maintainership to games@ team games/pipenightdreams - Transfer maintainership to games@ team - Use tar.gz instead of tar.bz2 - Don't silence warnings games/popstar - Remove FTP master site - Transfer maintainership to games@ team - Remove TODO.txt from DOCS - Change Desktop entry file games/ppracer - Transfer maintainership to games@ team games/pyawale - Transfer maintainership to games@ team - Remove not needed bsd.port.options.mk - Fix the usage of 'python' to get rid of the implicit lang/python dependency, change REINPLACE and files/pyawale.in - Break lines around 80 characters - Simplify DOCS installation handling games/pytowerdefense - Transfer maintainership to games@ team - Change Desktop entry file - Simplify installation handling games/rescue - Transfer maintainership to games@ team - Add DOCS Option games/schiff - Transfer maintainership to games@ team games/schwarzweiss - Transfer maintainership to games@ team - Add USES shebangfix and SHEBANG_FILES - Cosmetical changes games/sets - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/ttt - Transfer maintainership to games@ team games/tux-aqfh - Transfer maintainership to games@ team - Simplify DOCS installation handling games/tuxfighter - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Change USE_PYTHON=yes to USE_PYTHON=2 - Change Desktop entry file - Simplify installation handling - Use files/pkg-message.in instead of pkg-message games/tuxkart - Transfer maintainership to games@ team - Simplify DOCS installation handling games/vectoroids - Remove FTP master site - Transfer maintainership to games@ team - Cosmetical changes games/whichwayisup - Transfer maintainership to games@ team games/wordplay - Transfer maintainership to games@ team games/xemeraldia - Transfer maintainership to games@ team games/xsc - Transfer maintainership to games@ team - Break lines around 80 characters games/zephulor - Transfer maintainership to games@ team - Change Desktop entry file - Simplify DOCS installation handling Notes: svn path=/head/; revision=352818
* The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising2014-04-161-0/+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
* - Update to 2.0.0, Announce message:Rusmir Dusko2014-02-074-107/+329
| | | | | | | | | | | | | | | | | | | | | | | | | | | New level track "Contributions" for unofficial, community-made levels New levels: aliens, pacman Moved remaining unfinished levels and some finished levels to "contributions" More bugfixes - Add PORTEPOCH - Change master sites, use SAVANNAH instead of not existing page - Take maintainership - Add license (GPLv2) - Use the new format for LIB_DEPENDS - Remove USE_GMAKE (USES gmake), build good without - Disable all warnings with -w - Support STAGEDIR and add OPTIONS_SUB - Add DOCS, NLS and Options - Symlink the icon - Add patch, fix build ngettext PR: ports/173875 Submitted by: nemysis (self) Approved by: Matthew Gibson <mdg583@gmail.com> (previous maintainer) Notes: svn path=/head/; revision=343274
* - Remove manual creation and removal of share/applications, as it's now in ↵Dmitry Marakasov2013-10-221-1/+0
| | | | | | | | | the mtree (games category) Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331269
* 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_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: bapt, kwm Notes: svn path=/head/; revision=316654
* Fix typos in COMMENTCarlo Strub2012-07-291-1/+1
| | | | | | | Approved by: portmgr@ (implicit) Notes: svn path=/head/; revision=301684
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Update devel/sdl12 to 1.2.15Marcus von Appen2012-02-181-1/+1
| | | | | | | | | | | | | | | | - 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 Notes: svn path=/head/; revision=291667
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276993
* - 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
* - Update devel/sdl12 to version 1.2.14.Marcus von Appen2010-01-301-1/+1
| | | | | | | | | | | | | | | - Update audio/sdl_mixer to version 1.2.11. - Update graphics/sdl_gfx to version 2.0.20. - Update graphics/sdl_image to version 1.2.10. - Bump portrevisions for all ports depending on audio/sdl_mixer and graphics/sdl_image. - Update Mk/bsd.sdl.mk accordingly for the new shared lib versions. PR: ports/142147 ports/142248 ports/142249 Approved by: miwi (mentor implicit) Notes: svn path=/head/; revision=248835
* Fix maintainers email addressEdwin Groothuis2010-01-111-1/+1
| | | | | | | | PR: ports/142708 Submitted by: Matthew Gibson <mdg583@hotmail.com> Notes: svn path=/head/; revision=247583
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-0/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* Cuyo is a tetris-like game which is suprisingly innovative,Alexander Logvinov2009-06-064-0/+766
sometimes challenging, and has a very nice look. WWW: http://www.karimmi.de/cuyo/ PR: ports/135166 Submitted by: Matthew Gibson <mdg583 at hotmail.com> Approved by: tabthorpe (mentor) Notes: svn path=/head/; revision=235340