summaryrefslogtreecommitdiff
path: root/games
AgeCommit message (Collapse)AuthorFilesLines
2005-06-17Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead ofjlam11-40/+40
${PREFIX}.
2005-06-16Add missing RCS Id tag to patch-af.hira2-2/+4
2005-06-16Create directories before installing files into them.jlam65-66/+182
2005-06-14Constify a variable in multiple places so that the definitions match in alljmmv3-16/+20
files. Fixes build under Linux, closing PR pkg/29499.
2005-06-14Remove an empty default clause. Should fix build problem reported injmmv2-15/+23
PR pkg/29501, although I haven't been able to reproduce it (different compiler versions, I guess).
2005-06-14Do not assume a _file member in FILE structures as it may not exist on somejmmv2-7/+38
systems (e.g., Linux). Instead, use fileno(3). Closes PR pkg/29498.
2005-06-14Fix build under Linux: instead of hardcoding the manpage name as a buildjmmv2-5/+6
target (man.0), use 'all' which works (at least) under NetBSD and Linux. (The problem is that the manpage suffix changes across systems.) While here, remove a directory emptied during deinstallation. Bump PKGREVISION to 2 due to this. This change together with recent rillig@'s fixes close PR pkg/29493.
2005-06-14Honor GAMEOWN, GAMEGRP, GAMEMODE, and GAMEDATAMODE.minskim3-12/+15
2005-06-14Fix build under Linux by removing local strdup(3) prototype and by usingjmmv4-5/+19
LIBOSSAUDIO instead of hardcoding -lossaudio. Closes PR pkg/29492 by A L Meyers.
2005-06-14Create directories before installing files into them. This fixesjlam1-1/+3
installation when NO_MTREE=yes, and also fixes PR pkg/30491.
2005-06-14Use VARBASE instead of hardcoding /var.minskim3-9/+10
2005-06-14Honor GAMEGRP and GAMEMODE not only for data files but also for the binary.minskim1-1/+2
2005-06-14Honor GAMEGRP, GAMEMODE, and GAMEDATAMODE.minskim3-14/+14
2005-06-14Access static attributes through the class itself, not through an instance.jmmv2-1/+36
Should fix build problem reported in PR pkg/29452 by A L Meyers.
2005-06-14Honor *OWN, *GRP, and *MODE.minskim1-1/+3
2005-06-14Fix build under Linux (missing inclusion of string.h in some files).jmmv3-15/+30
Closes PR pkg/29451.
2005-06-14Added a patch that makes the declaration of toupper() visible and fixes anrillig2-1/+25
out-of-bounds error.
2005-06-14Remove DOS end-of-line characters from *.c and *.cpp before compilingrillig1-1/+8
them. This fixes the build with gcc-2.95 on NetBSD 1.6.2.
2005-06-12Pass WRKSRC=${WRKSRC} to MAKE_ENV. This fixes PR pkg/30076.hira1-2/+2
2005-06-12This package requires imake & xmkmf to build so note it in USE_TOOLS.jlam1-1/+2
2005-06-11Set RM to MAKE_RM -f instead of MAKE_RM.wiz2-6/+15
Seems that MAKE_RM was changed to not include -f any longer in the last month or so/ Fixes bulk build problem.
2005-06-10set PKG_OPTIONS_VAR, noted by wizdillo1-1/+2
2005-06-07Add -lXext to the LIBS part of configure so it picks up GL and GLU ok.garbled2-1/+23
2005-06-07Honor *MODE.minskim1-3/+3
2005-06-07Honor GAMEGRP.minskim1-3/+3
2005-06-07Honor VARBASE.minskim4-19/+19
2005-06-07Convert to use ossaudio.buildlink3.mk to build on more platforms.minskim4-18/+48
Bump PKGREVISION because the sound device path was corrected.
2005-06-07Set correct OSTYPE, which is used in Makefile.minskim1-1/+3
2005-06-07Include time.h for time(3) and ctime(3).minskim2-6/+14
2005-06-07Use 0 instead of NULL to avoid an undeclared identifier error.minskim2-4/+4
2005-06-07Include time.h to use time(3).minskim2-10/+18
2005-06-06Set BUILD_TARGET correctly on Linux. This fixes PR pkg/29379.minskim1-1/+7
2005-06-04Add and enable liquidwar.wiz1-1/+2
2005-06-04Initial import of liquidwar from pkgsrc-wip:wiz5-0/+170
Liquid War is a unique multiplayer wargame. Its rules are truly original and have been invented by Thomas Colcombet. You control an army of liquid and have to try and eat your opponents. A single player mode is available, but the game is definitely designed to be multiplayer, and has network support.
2005-06-02Fix errors made by pkgsrc n00b.blymn1-3/+2
2005-06-02Remove USE_X11, sort includes.salo1-4/+3
2005-06-02Fix some pkglint warnings. Replace USE_PERL5wiz1-5/+3
by adding perl to the tools.
2005-06-02Updated to version 2.0.2 of bzflag:blymn12-250/+119
* many many bug fixes * network protocol version updated * new game modes added
2005-06-01convert to options frameworkdillo2-10/+16
2005-06-01Remove mk/autoconf.mk and mk/automake.mk and replace their usage withjlam3-17/+11
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or "automake14". Also, we don't need to call the auto* tools via ${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care to symlink the correct tool to the correct name, so we can just use aclocal, autoconf, etc.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam95-181/+145
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-06-01Replace PKGBASE in WRKSRC with PKGNAME_NOREV.wiz1-2/+2
2005-05-31Do not play games with PKGBASE.wiz1-3/+2
2005-05-31Fix conversion.wiz1-4/+2
2005-05-31Whitespace consistency.wiz1-2/+2
2005-05-31Convert to options framework.wiz2-9/+14
2005-05-31Convert to options framework.wiz2-11/+14
2005-05-31Sort.wiz1-2/+2
2005-05-31Update to KDE 3.4.1markd2-8/+8
Changes: unknown
2005-05-31Packages have no business modifying PKG_DEFAULT_OPTIONS -- it's adillo1-2/+2
user settable variable. Set PKG_SUGGESTED_OPTIONS instead. Also, make use of PKG_OPTIONS_LEGACY_VARS. Reviewed by wiz.