pkgsrc-WIP-changes archive

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

doom-pwad-shotgun-symphony: Import to WIP



Module Name:	pkgsrc-wip
Committed By:	Michael Baeuerle <michael.baeuerle%stz-e.de@localhost>
Pushed By:	micha
Date:		Wed Jan 8 12:31:41 2020 +0100
Changeset:	98219f0c77c61b2067266310317108da8f9536f8

Added Files:
	doom-pwad-shotgun-symphony/COMMIT_MSG
	doom-pwad-shotgun-symphony/DESCR
	doom-pwad-shotgun-symphony/Makefile
	doom-pwad-shotgun-symphony/PLIST
	doom-pwad-shotgun-symphony/distinfo
	doom-pwad-shotgun-symphony/files/INSTALL.pkgsrc

Log Message:
doom-pwad-shotgun-symphony: Import to WIP

An oldschool mapset for E1 of Ultimate Doom, in the combined E1/E2 style
of Fava Beans, but much more violent. Mapset is optimized for pistol start,
though there are occasional goodies for continuous players. Every map exits
directly into the next, creating a single, giant facility.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=98219f0c77c61b2067266310317108da8f9536f8

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

diffstat:
 doom-pwad-shotgun-symphony/COMMIT_MSG           |  6 ++++
 doom-pwad-shotgun-symphony/DESCR                | 19 ++++++++++
 doom-pwad-shotgun-symphony/Makefile             | 48 +++++++++++++++++++++++++
 doom-pwad-shotgun-symphony/PLIST                |  5 +++
 doom-pwad-shotgun-symphony/distinfo             |  6 ++++
 doom-pwad-shotgun-symphony/files/INSTALL.pkgsrc |  6 ++++
 6 files changed, 90 insertions(+)

diffs:
diff --git a/doom-pwad-shotgun-symphony/COMMIT_MSG b/doom-pwad-shotgun-symphony/COMMIT_MSG
new file mode 100644
index 0000000000..a9033cae40
--- /dev/null
+++ b/doom-pwad-shotgun-symphony/COMMIT_MSG
@@ -0,0 +1,6 @@
+Import games/doom-pwad-shotgun-symphony
+
+An oldschool mapset for E1 of Ultimate Doom, in the combined E1/E2 style
+of Fava Beans, but much more violent. Mapset is optimized for pistol start,
+though there are occasional goodies for continuous players. Every map exits
+directly into the next, creating a single, giant facility.
diff --git a/doom-pwad-shotgun-symphony/DESCR b/doom-pwad-shotgun-symphony/DESCR
new file mode 100644
index 0000000000..a5c74c0327
--- /dev/null
+++ b/doom-pwad-shotgun-symphony/DESCR
@@ -0,0 +1,19 @@
+Attention: This is a mod for Doom, not a standalone game!
+It has received one of the 2019 Cacowards on Doomworld.
+
+For the look & feel intended by the author, you need the original Doom or
+Ultimate Doom from id Software as base (doom.wad or doomu.wad as IWAD).
+If you don't have Doom, you can use Freedoom (freedoom1.wad as IWAD) to
+play, but the Freedoom graphics doesn't match well to the style of this mod.
+
+===========================================================================
+Advanced engine needed  : Boom Compatible
+Primary purpose         : Single play
+===========================================================================
+
+You have received orders to investigate the giant UAC complex on Phobos.
+Expect extreme enemy resistence from the moment you arrive. They are waiting
+for you. You will find a new and powerful enemy caged in the final stage
+of the first complex. Do not try to kill it. Instead, journey through
+later stages of the vast, interconnected facility. We believe you can find
+a way to attack it from behind, when you have stronger weapons.
diff --git a/doom-pwad-shotgun-symphony/Makefile b/doom-pwad-shotgun-symphony/Makefile
new file mode 100644
index 0000000000..7b4f2d980d
--- /dev/null
+++ b/doom-pwad-shotgun-symphony/Makefile
@@ -0,0 +1,48 @@
+# $NetBSD$
+
+DISTNAME=		sgnsym
+PKGNAME=		doom-pwad-shotgun-symphony-1.0
+CATEGORIES=		games
+MASTER_SITES=		ftp://ftp.fu-berlin.de/pc/games/idgames/levels/doom/Ports/s-u/
+MASTER_SITES+=		ftp://mirrors.syringanetworks.net/idgames/levels/doom/Ports/s-u/
+EXTRACT_SUFX=		.zip
+DIST_SUBDIR=		${PKGNAME_NOREV}
+
+MAINTAINER=		micha%NetBSD.org@localhost
+COMMENT=		Doom mod
+LICENSE=		doom-pwad-license
+
+# DOOMWADDIR is intentionally shared with other Doom packages
+DOOMWADDIR=		share/doom
+INSTALLATION_DIRS=	${DOOMWADDIR} share/doc/doom-pwad-shotgun-symphony
+
+# Configure INSTALL.pkgsrc
+SUBST_CLASSES+=		install
+SUBST_STAGE.install=	do-configure
+SUBST_MESSAGE.install=	Preparing INSTALL.pkgsrc file ...
+SUBST_FILES.install=	INSTALL.pkgsrc
+SUBST_SED.install=	-e 's,DOOMWADDIR,${PREFIX}/${DOOMWADDIR},'
+
+TOOL_DEPENDS+=		dos2unix-[0-9]*:../../converters/dos2unix
+WRKSRC=			${WRKDIR}/Shotgun_Symphony
+NO_BUILD=		yes
+
+do-patch:
+	${MV} "${WRKDIR}/Shotgun Symphony" ${WRKSRC}
+	cd ${WRKSRC} && dos2unix Sgnsym.txt
+	cd ${WRKSRC} && dos2unix History.txt
+
+pre-configure:
+	${CP} ${FILESDIR}/INSTALL.pkgsrc ${WRKSRC}
+
+do-install:
+	cd ${WRKSRC} && ${INSTALL_DATA} sgnsym.wad		\
+		${DESTDIR}${PREFIX}/${DOOMWADDIR}/Sgnsym.wad
+	cd ${WRKSRC} && ${INSTALL_DATA} Sgnsym.txt		\
+		${DESTDIR}${PREFIX}/${DOOMWADDIR}/Sgnsym.txt
+	cd ${WRKSRC} && ${INSTALL_DATA} History.txt		\
+		${DESTDIR}${PREFIX}/share/doc/doom-pwad-shotgun-symphony/History.txt
+	cd ${WRKSRC} && ${INSTALL_DATA} INSTALL.pkgsrc		\
+		${DESTDIR}${PREFIX}/share/doc/doom-pwad-shotgun-symphony/INSTALL.pkgsrc
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/doom-pwad-shotgun-symphony/PLIST b/doom-pwad-shotgun-symphony/PLIST
new file mode 100644
index 0000000000..8e96c13c64
--- /dev/null
+++ b/doom-pwad-shotgun-symphony/PLIST
@@ -0,0 +1,5 @@
+@comment $NetBSD$
+share/doc/doom-pwad-shotgun-symphony/History.txt
+share/doc/doom-pwad-shotgun-symphony/INSTALL.pkgsrc
+share/doom/Sgnsym.txt
+share/doom/Sgnsym.wad
diff --git a/doom-pwad-shotgun-symphony/distinfo b/doom-pwad-shotgun-symphony/distinfo
new file mode 100644
index 0000000000..e3ff3943a8
--- /dev/null
+++ b/doom-pwad-shotgun-symphony/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/08/26 16:48:56 micha Exp $
+
+SHA1 (doom-pwad-shotgun-symphony-1.0/sgnsym.zip) = b468d6ed0f693bf9aa9094462590e77c2081e2bc
+RMD160 (doom-pwad-shotgun-symphony-1.0/sgnsym.zip) = 47f88d517b35557c7eca992a39005f15bed7bab8
+SHA512 (doom-pwad-shotgun-symphony-1.0/sgnsym.zip) = ea4fa530425969eabf99875e0c1bcc9dbda35ce29dccd8932bc986a8ca5e54edea36160047494cfab8d0213c073dbe90c5df133e30d6a8d9686aeeb5d5a8729c
+Size (doom-pwad-shotgun-symphony-1.0/sgnsym.zip) = 2249176 bytes
diff --git a/doom-pwad-shotgun-symphony/files/INSTALL.pkgsrc b/doom-pwad-shotgun-symphony/files/INSTALL.pkgsrc
new file mode 100644
index 0000000000..72c332f1d4
--- /dev/null
+++ b/doom-pwad-shotgun-symphony/files/INSTALL.pkgsrc
@@ -0,0 +1,6 @@
+The PWAD file Sgnsym.wad and the description Sgnsym.txt have been installed to:
+
+   DOOMWADDIR
+
+This is the pkgsrc standard Doom WAD directory location (shared with other Doom
+packages).


Home | Main Index | Thread Index | Old Index