aboutsummaryrefslogtreecommitdiff
path: root/games/bsdgames
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* games/bsdgames: NO_WERROR fix for FreeBSD 13Fernando Apesteguía2021-02-052-36/+11
| | | | | | | | | | | | * use WITHOUT_WERROR instead of NO_WERROR * remove noop REINPLACE statements * moves the wump.info out of the pkg-plist into the Makefile PR: 252941 Submitted by: jockl@pianojockl.org (maintainer) Notes: svn path=/head/; revision=564133
* games/bsdgames: fix build for clang 11 and gcc 10 (FreeBSD 13)Eugene Grosbein2020-08-271-0/+1
| | | | | | | | | | Add -fcommon to CFLAGS as patching this historic code would be too invasive. PORTREVISION not bumped as it fixes build for FreeBSD 13. Reported by: pkg-fallout Notes: svn path=/head/; revision=546355
* Update 0.7 --> 0.75, fixing ncurses 6.2 build issues.Cy Schubert2020-04-0820-300/+31
| | | | | | | | | | | PR: 244568 Submitted by: Joachim Werner <jockl at pianojockl.org> (maintainer) Reported by: Joachim Werner <jockl at pianojockl.org> (maintainer) Approved by: maintainer (implicit) MFH: 2020Q2 Notes: svn path=/head/; revision=531141
* - update to 0.7Jason Helfman2019-11-264-23/+14
| | | | | | | | | | | | | | | * incorporated patches by Robert Bonomi into cribbage * moved sources to a dedicated github.com repository for easier future bugfixing * changed epoch - 5.5.0 (as in DragonFlyBSD) really doesn't make sense. version 0.7 suggests it's not as tidy as it should be, so that's appropriate. PR: 242250 Submitted by: jockl@pianojockl.org (maintainer) Notes: svn path=/head/; revision=518479
* Use USE_GITHUB when appropriate.Mathieu Arnold2019-05-112-17/+14
| | | | Notes: svn path=/head/; revision=501298
* Upgrade games/bsdgames from v5.2.2 to v5.5.0Rodrigo Osorio2019-03-1119-32/+125
| | | | | | | | | | | | Update to DragonflyBSD 5.5.0 sources. Pulled sail from NetBSD, since it wasn't working. Remake patches PR: 236377 Submitted by: Joachim Werner <jockl@pianojockl.org> Notes: svn path=/head/; revision=495354
* games/bsdgames: update to 5.2.2Steve Wills2018-11-0119-178/+199
| | | | | | | | | | | | Added bcd, boggle, ppt, tetris Pet portlint While here, pass maintainership to submitter PR: 232051 Submitted by: Joachim Werner <jockl@pianojockl.org> Notes: svn path=/head/; revision=483675
* Release maintainershipAdam Weinberger2018-05-261-1/+1
| | | | Notes: svn path=/head/; revision=470898
* Distfiles work better when they're uploaded.Adam Weinberger2017-09-291-0/+3
| | | | | | | Reported by: cy Notes: svn path=/head/; revision=450937
* Update to the sources from DragonflyBSD 4.8.1Adam Weinberger2017-09-292-9/+5
| | | | Notes: svn path=/head/; revision=450915
* Update to the sources from DragonflyBSD 4.6.1. We lost piano(6),Adam Weinberger2016-10-315-12/+34
| | | | | | | | | but gained two vitally important tools: colorbars(6), which displays a couple colors in the terminal, and hals_end(6), which displays a script of HAL's final words. Notes: svn path=/head/; revision=425015
* Prevent collision with getline(3)Baptiste Daroussin2016-05-131-0/+2
| | | | Notes: svn path=/head/; revision=415137
* Fix potion mixing.Adam Weinberger2016-05-122-0/+11
| | | | | | | | | | | | | | | From PR: This routine is swapping the potion colors and because only 2/3 of the color swap code is there, many of the potions end up with the same color. PORTREVISION bump. PR: 209310 Submitted by: sjrbulk at verizon dot net Notes: svn path=/head/; revision=415066
* Update to sources from DragonflyBSD 4.4.2.Adam Weinberger2016-03-142-3/+3
| | | | Notes: svn path=/head/; revision=411102
* Update to the DragonflyBSD 4.4.1 source.Adam Weinberger2015-12-242-3/+3
| | | | Notes: svn path=/head/; revision=404384
* Update to sources from DragonFlyBSD 4.2.4.Adam Weinberger2015-08-157-179/+3
| | | | Notes: svn path=/head/; revision=394327
* Update to DragonflyBSD 4.0.6.Adam Weinberger2015-06-292-4/+3
| | | | Notes: svn path=/head/; revision=390876
* Use MASTER_SITES macro for LOCALAdam Weinberger2015-03-241-2/+1
| | | | | | | Suggested by: mat Notes: svn path=/head/; revision=382172
* Add two patches from DragonFlyBSD trunk:Adam Weinberger2015-03-243-0/+122
| | | | | | | | | | - 68420e59f12cf9c9fc14db0c493426150dd9ed95 Fix some typos in messages/manpages. (Sascha Wildner) - 890b6f4a25a31acb7bb5b8c16193dc5d404b0805 games: Fix real bugs on three games (found by gcc 5.0) (John Marino) Notes: svn path=/head/; revision=382165
* Update to bsdgames from DragonFlyBSD 4.0.5.Adam Weinberger2015-03-242-5/+10
| | | | | | | | Thanks to marino for helping me find an easier way to create the tarballs for these updates. Notes: svn path=/head/; revision=382164
* Revert the contents of r374674, as it broke packaging as a regularAdam Weinberger2014-12-132-49/+43
| | | | | | | | | user. Instead, set the group and mode manually in the plist. Submitted by: antoine Notes: svn path=/head/; revision=374681
* Since r367027, the setgid games have been installed as setgid rootAdam Weinberger2014-12-131-3/+2
| | | | | | | | | | | | | | instead of setgid root. The port redefines BINGRP when necessary, but since BINGRP was being passed in MAKE_ARGS, it overrode those redefinitions. Passing BINGRP in MAKE_ENV instead should allow uidfix to still work, while making sure that the games are installed with the correct group. Submitted by: Glen Foster MFH: 2014Q4 Notes: svn path=/head/; revision=374674
* Fix a bounds-checking typo in trek. The number of sectors was being usedAdam Weinberger2014-12-122-1/+16
| | | | | | | | | | to check input for the quadrant, and NSECTS > NQUADS. PR: 195837 Submitted by: Kenji Rikitake Notes: svn path=/head/; revision=374594
* Rename bs and fish to avoid conflicts with games/bs and shells/fish.Adam Weinberger2014-12-062-14/+17
| | | | | | | | | | While here, get on board with @dir. PR: 195672 Submitted by: nemysis Notes: svn path=/head/; revision=374144
* Remove useless @cwdBaptiste Daroussin2014-09-022-33/+35
| | | | | | | Allow packaging as regular user Notes: svn path=/head/; revision=367027
* Update bsdgames to DragonflyBSD 3.8.2.Adam Weinberger2014-08-293-6/+6
| | | | Notes: svn path=/head/; revision=366529
* The decision to move the savedata into ${PREFIX} did not go overAdam Weinberger2014-07-232-15/+10
| | | | | | | | well. Revert it, and add a "@cwd /" that makes @sample do the right thing. Notes: svn path=/head/; revision=362720
* Update to 3.8.1. Along with this, savegame data is now inAdam Weinberger2014-07-228-86/+90
| | | | | | | | | | /usr/local/var/games instead of /var/games. This was necessary because @sample cannot operate outside of %%PREFIX%%, and previously the port would overwrite or remove previously saved games. This is easier, better and more hier(7)ful. Notes: svn path=/head/; revision=362545
* Stage, simplify, and put everything in /var/games as a @sample so thatAdam Weinberger2014-07-224-118/+85
| | | | | | | | | saved data is precious. Also, take maintainership, thank you uqs! Notes: svn path=/head/; revision=362541
* Fix properties on pkg-plistBaptiste Daroussin2014-01-211-1/+0
| | | | Notes: svn path=/head/; revision=340674
* - Add CONFLICTS with games/hangmanDmitry Marakasov2013-09-241-0/+2
| | | | | | | | | PR: 179687 Submitted by: myself Approved by: maintainer timeout Notes: svn path=/head/; revision=328087
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | games) Notes: svn path=/head/; revision=327730
* Fix build on currentBaptiste Daroussin2013-05-051-5/+7
| | | | Notes: svn path=/head/; revision=317441
* Fix battlestar(6), there was treachery afoot, see the newsflash.Ulrich Spörlein2012-05-252-1/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | *BATTLESTAR NEWSFLASH*BATTLESTAR NEWSFLASH*BATTLESTAR NEWSFLASH* Battlestar Daily uncovers heinous sabotage scheme! Leaked mission radio protocols show losing grip on reality. In what flabbergasted experts describe as a 'highly efficient, covert thingie'-scheme, members of our forces involved in highly classified operations suffered a dramatic loss of vital sensorical capabilities, leading to desastrous results. From leaked radio recordings and its own sources involved in mission preparation and conduct, BD learned shocking details of failed missions. While sources insist, that missions parameters were in normal range at all times, the recordings reveal disoriented operatives, sobbingly crawling floors looking for gear like laser pistols, or panicking over loss of visuals after battles in space. 'Odd.', one expert is quoted saying after reviewing detailed mission protocols, clearly admitting to this being a deliberate act of sabotage. 'They need to adapt to this new threat.', says Vidad Gleirg, Battlestar senior consultant with Anagram & Partners, 'Quickly.'. BD has notified officials of the situation, and is awaiting responses. PR: ports/166319 Submitted by: Marco Steinbach <coco@executive-computing.de> Approved by: beat (mentor) Notes: svn path=/head/; revision=297396
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276993
* Use MASTER_SITE_SUBDIR instead of rolling my own.Ulrich Spörlein2010-11-261-1/+2
| | | | | | | Clue provided by: pav Notes: svn path=/head/; revision=265167
* Fix remaining MASTER_SITE_LOCAL abuses for my ports.Ulrich Spörlein2010-11-251-1/+1
| | | | Notes: svn path=/head/; revision=265146
* - Update to my @FreeBSD.org addressUlrich Spörlein2010-05-311-2/+2
| | | | | | | | - Add distfile mirror to single source MASTER_SITES - Also update no longer working addresses Notes: svn path=/head/; revision=255378
* - Drop some empty filesMartin Wilke2010-02-021-0/+0
| | | | | | | | PR: 142990 Submitted by: Ulrich Spoerlein <uqs@spoerlein.net> Notes: svn path=/head/; revision=249138
* - Make it unbreak on -CURRENTTong LIU2009-12-173-40/+2
| | | | | | | | PR: ports/141673 Submitted by: Ulrich Spoerlein <uqs@spoerlein.net> (maintainer) Notes: svn path=/head/; revision=246052
* . pre-install -> pre-su-install since it creates directories in /var/games.Greg Lewis2009-11-301-1/+1
| | | | | | | | PR: 141002 Approved by: Ulrich Spoerlein (maintainer) Notes: svn path=/head/; revision=245019
* Fix installation and packaging of most of the BSD games.Martin Wilke2009-11-262-4/+15
| | | | | | | | | | | | | Their mode was fixed at 0550 which would only work, if your user happened to be in group games. Thanks to Lowell Gilbert! PR: 140894 Submitted by: Ulrich Spoerlein <uqs@spoerlein.net> (maintainer) Notes: svn path=/head/; revision=244788
* - Update to 2.4Martin Wilke2009-11-2140-852/+315
| | | | | | | | PR: 140478 Submitted by: Ulrich Spoerlein <uqs@spoerlein.net> (maintainer) Notes: svn path=/head/; revision=244615
* - Mark MAKE_JOBS_UNSAFEPav Lucistnik2009-11-191-0/+2
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=244489
* - Pass maintainership to submitterThomas Abthorpe2009-03-021-1/+1
| | | | | | | Submitted by: Ulrich via freebsd-ports@ Notes: svn path=/head/; revision=229314
* Fix build of hack and rogue with gcc 4.2Johan van Selst2007-05-284-8/+74
| | | | Notes: svn path=/head/; revision=192165
* BROKEN with gcc 4.2Kris Kennaway2007-05-271-1/+7
| | | | Notes: svn path=/head/; revision=191950
* Remove zero-length filesJuergen Lock2007-03-249-0/+0
| | | | | | | | Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua> Approved by: miwi (mentor, implicit) Notes: svn path=/head/; revision=188144
* Convert freebsd-games to use termios.h instead of sgtty.hJuergen Lock2007-03-2335-222/+549
| | | | | | | | | PR: ports/110731 Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua> Approved by: miwi (mentor) Notes: svn path=/head/; revision=188142