pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/games/freedoom



Module Name:    pkgsrc
Committed By:   micha
Date:           Mon Oct 21 09:58:35 UTC 2019

Modified Files:
        pkgsrc/games/freedoom: Makefile PLIST distinfo

Log Message:
games/freedoom: Update to 0.12.0

- Install new manual

Changelog
=========
2019-10-10: Freedoom 0.12.0 released

General
-------
We now have a manual rendered to beautiful PDF format. Thanks to Simon Howard,
the project's founder.
A strong focus on vanilla compatibility has been sought for this release.
Most, if not all, levels should work now.

Final Doom compatibility de-emphasized. Where it creates conflicts with Doom II
mods or texture definitions, we prefer the Doom II side of things.
Final Doom-specific maps and mods may never look completely right in Freedoom,
as a result.

Levels
------
FreeDM has seen a major overhaul, with most maps being modified, with new
additions and removals of the weaker levels. It now benefits from the use of
Aquatex and Egyptian textures in some of its levels, giving a more vibrant feel
than before.

Phase 1 gets a lot of mapping love in this round, fleshing out the levels and
tweaking difficulty levels so easy, normal, and hard are all accounted for.
There is a new C3M5 by Mortrixs.

Phase 2 MAP01 saw an overhaul, simplifying its design in significant ways to
improve the flow around the level.

Two maps in Phase 2 were replaced due to being recreations of Doom II maps.
Jayexetee and GooseJelly get credits for the new ones, in MAP06 and MAP26.

Maps in Phase 2 in general have had some slight re-arrangement based on
difficulty levels and themes. A new MAP06 by Jayexetee is included, the old
one taking the MAP18 slot.

All levels are now guaranteed to have co-op and deathmatch starts.

Graphics
--------
New power-up (stealth, overdrive, and ultra-overdrive) sprites.

New necromancer (arch-vile) sprites by Urric.

Some weapon and ammo sprites have been tweaked and improved.

Completed and enhanced set of Evilution and Plutonia textures.

New skull-switches by MissLav.

New SKY4 based on an astronomy photograph.

Tweaked player sprites and HUD face by Ferk.

Music
-----
New tracks in C1M2, C2M3, C2M8, MAP03, MAP12, MAP22, MAP25, MAP26, MAP27, DM03,
DM06, DM09, DM17, DM24, DM31, and DM32.

All files in-tree have been renamed from *.mus to *.mid. The file format must
always be MIDI. This makes it easy on music composers to actually work with the
files.

Unix script and metadata
------------------------
Metainfo (formerly appdata) and desktop files have been brought up to the latest
standard specifications and recommendations, using reverse-DNS for the project
identifier, and a self-evaluated content rating.

The launch shell-script changed the PORT environment variable to DOOMPORT to
avoid conflicts with the genericly-named PORT. It also builds a sensible default
DOOMWADPATH environment variable to assist ports that do not have a hard-coded
fallback.

The script no longer tries to look for boom, zdoom, nor prboom by default, as
these are ports no longer maintained.

Build system
------------
Freedoom's build system now has a hard dependency on Python 3, in anticipation
of Python 2's end-of-life.

We have moved from ImageMagick to Pillow, a Python library for graphics
manipulation. It provides faster build times as well as API stability.

GIF files have been replaced with PNG files. True PNG file format transparency
is used instead of a cyan background.

ASCIIDOC and ASCIIDOC_MAN variables have been added to the Makefile to control
the AsciiDoc implementation used to generate HTML and man page files.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/freedoom/Makefile \
    pkgsrc/games/freedoom/PLIST pkgsrc/games/freedoom/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/games/freedoom/Makefile
diff -u pkgsrc/games/freedoom/Makefile:1.1 pkgsrc/games/freedoom/Makefile:1.2
--- pkgsrc/games/freedoom/Makefile:1.1  Mon Aug 26 16:22:42 2019
+++ pkgsrc/games/freedoom/Makefile      Mon Oct 21 09:58:35 2019
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2019/08/26 16:22:42 micha Exp $
+# $NetBSD: Makefile,v 1.2 2019/10/21 09:58:35 micha Exp $
 
-DISTNAME=      freedoom-0.11.3
-PKGREVISION=   1
+DISTNAME=      freedoom-0.12.0
 CATEGORIES=    games
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=freedoom/}
 GITHUB_RELEASE=        v${PKGVERSION_NOREV}
@@ -22,21 +21,22 @@ INSTALLATION_DIRS=  ${DOOMWADDIR} share/d
 SUBST_CLASSES+=                install
 SUBST_STAGE.install=   do-configure
 SUBST_MESSAGE.install= Preparing INSTALL.pkgsrc file ...
-SUBST_FILES.install=   INSTALL.pkgsrc
+SUBST_FILES.install=   ${WRKDIR}/INSTALL.pkgsrc
 SUBST_SED.install=     -e 's,DOOMWADDIR,${PREFIX}/${DOOMWADDIR},'
 
 NO_BUILD=              yes
 
 pre-configure:
-       ${MKDIR} ${WRKSRC}
-       ${CP} ${FILESDIR}/INSTALL.pkgsrc ${WRKSRC}
+       ${CP} ${FILESDIR}/INSTALL.pkgsrc ${WRKDIR}
 
 do-install:
        ${INSTALL_DATA} ${WRKSRC}/freedoom1.wad \
                ${DESTDIR}${PREFIX}/share/doom/freedoom1.wad
        ${INSTALL_DATA} ${WRKSRC}/freedoom2.wad \
                ${DESTDIR}${PREFIX}/share/doom/freedoom2.wad
-       ${INSTALL_DATA} ${WRKSRC}/INSTALL.pkgsrc \
+       ${INSTALL_DATA} ${WRKSRC}/freedoom-manual.pdf \
+               ${DESTDIR}${PREFIX}/share/doc/freedoom/freedoom-manual.pdf
+       ${INSTALL_DATA} ${WRKDIR}/INSTALL.pkgsrc \
                ${DESTDIR}${PREFIX}/share/doc/freedoom/INSTALL.pkgsrc
 
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/games/freedoom/PLIST
diff -u pkgsrc/games/freedoom/PLIST:1.1 pkgsrc/games/freedoom/PLIST:1.2
--- pkgsrc/games/freedoom/PLIST:1.1     Mon Aug 26 16:22:42 2019
+++ pkgsrc/games/freedoom/PLIST Mon Oct 21 09:58:35 2019
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.1 2019/08/26 16:22:42 micha Exp $
+@comment $NetBSD: PLIST,v 1.2 2019/10/21 09:58:35 micha Exp $
 share/doc/freedoom/INSTALL.pkgsrc
+share/doc/freedoom/freedoom-manual.pdf
 share/doom/freedoom1.wad
 share/doom/freedoom2.wad
Index: pkgsrc/games/freedoom/distinfo
diff -u pkgsrc/games/freedoom/distinfo:1.1 pkgsrc/games/freedoom/distinfo:1.2
--- pkgsrc/games/freedoom/distinfo:1.1  Mon Aug 26 16:22:42 2019
+++ pkgsrc/games/freedoom/distinfo      Mon Oct 21 09:58:35 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/08/26 16:22:42 micha Exp $
+$NetBSD: distinfo,v 1.2 2019/10/21 09:58:35 micha Exp $
 
-SHA1 (freedoom-0.11.3.zip) = c8bdecf32bfb24a149daebf346e778e26212cc4a
-RMD160 (freedoom-0.11.3.zip) = d40939e6eb8a2ccd432c89d2e5d2a8dadc515bf1
-SHA512 (freedoom-0.11.3.zip) = c67fc69bca87cba2ba40b91f578724feaabbd6cd64c6845fa567d6901b7a9e3145185011731c677a71f7b5a6f8707855fb573c0c09b6d47fef83b1577b211816
-Size (freedoom-0.11.3.zip) = 18889307 bytes
+SHA1 (freedoom-0.12.0.zip) = a0abbea8684ba75513913c941d9a04adef8f9c2f
+RMD160 (freedoom-0.12.0.zip) = 30796ce5b6cfeb47eadbe12ac7fce824dc72c695
+SHA512 (freedoom-0.12.0.zip) = ba0b02c785a14259f150a3ce8f9ff4fa21cad4efb3bdef95ed798b4276661b741bde05743377480b7969e923d11603358049ff2ae34cf3952251d2b4f848b27b
+Size (freedoom-0.12.0.zip) = 21986242 bytes



Home | Main Index | Thread Index | Old Index