181926637b
ChangeLog: # 1.6.1 - 2020-12-11 - Improved display in non-English text-mode clients; previously columns were not aligned properly in some cases and occasionally not all available drugs at a location were shown on screen (#54). - Minimal British English translation added (#57). Configuration file entries can now use either British English or American English spelling (i.e. Armor/Armour). - On Windows the "browse" button in the graphical client options dialog now opens at the folder containing the selected sound file (#55). # 1.6.0 - 2020-12-06 - Fixes to build with OpenWRT (thanks to Theodor-Iulian Ciobanu). - Write server pidfile after fork (thanks to Theodor-Iulian Ciobanu). - Updated German and French Canadian translations from Benjamin Karaca and Francois Marier. - Support for old GTK1 and GLIB1 libraries removed - we now need version 2 of these libraries to build dopewars. GTK+3 is also supported. - Update metaserver to work with new SourceForge; older versions can no longer successfully register with the metaserver. - Switch to using libcurl to talk to the metaserver (this supports https, unlike the old internal code). The metaserver configuration has changed accordingly; `MetaServer.Name`, `MetaServer.Port` and `MetaServer.Path` are replaced with `MetaServer.URL`, while `MetaServer.Auth`, `MetaServer.Proxy*`, and `MetaServer.UseSocks` are removed (set the `https_proxy` environment variable instead, as per https://curl.haxx.se/libcurl/c/libcurl-tutorial.html#Environment) - The default web browser on Linux has changed from 'mozilla' to 'firefox'; on Mac the system-configured default browser is used. - On Windows the high score file, log file, and config file are now stored in the user application data directory (e.g. `C:\Users\foo\AppData\Local\dopewars`) rather than the same directory as the dopewars binary. - Add sound support with SDL2, and on Mac. - Add 64-bit Windows binaries. - Fix for a DOS against the server using the REQUESTJET message type (thanks to Doug Prostko for reporting the problem).
29 lines
845 B
Makefile
29 lines
845 B
Makefile
# $NetBSD: Makefile,v 1.78 2021/01/26 22:12:08 fcambus Exp $
|
|
|
|
DISTNAME= dopewars-1.6.1
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dopewars/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://dopewars.sourceforge.io/
|
|
COMMENT= Make a fortune dealing drugs on the streets of New York
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= destdir
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-networking
|
|
CONFIGURE_ARGS+= --without-esd
|
|
CONFIGURE_ARGS+= --without-sdl
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE}/games
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../www/curl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|