Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Nov 2016 16:32:59 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r425752 - in head/misc: . bsod
Message-ID:  <201611081632.uA8GWx6a093166@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Tue Nov  8 16:32:59 2016
New Revision: 425752
URL: https://svnweb.freebsd.org/changeset/ports/425752

Log:
  - Add misc/bsod
  
  This program will let you UNIX user experience the authentic Microsoft
  Windows experience. Bsod displays the famous windows xp blue screen
  of death on the console. Errors and drivers causing the error are
  selected randomly from a large set of examples.
  
  WWW: https://www.vanheusden.com/bsod/

Added:
  head/misc/bsod/
  head/misc/bsod/Makefile   (contents, props changed)
  head/misc/bsod/distinfo   (contents, props changed)
  head/misc/bsod/pkg-descr   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Tue Nov  8 16:23:15 2016	(r425751)
+++ head/misc/Makefile	Tue Nov  8 16:32:59 2016	(r425752)
@@ -30,6 +30,7 @@
     SUBDIR += bottlerocket
     SUBDIR += boxes
     SUBDIR += brs
+    SUBDIR += bsod
     SUBDIR += buffer
     SUBDIR += cave
     SUBDIR += cdcollect

Added: head/misc/bsod/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/bsod/Makefile	Tue Nov  8 16:32:59 2016	(r425752)
@@ -0,0 +1,33 @@
+# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	bsod
+PORTVERSION=	0.1
+CATEGORIES=	misc
+MASTER_SITES=	https://www.vanheusden.com/bsod/ \
+		http://mirror.amdmi3.ru/distfiles/
+
+MAINTAINER=	amdmi3@FreeBSD.org
+COMMENT=	Experience the authentic Microsoft Windows experience
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/license.txt
+
+USES=		ncurses tar:tgz
+
+PORTDOCS=	*
+PLIST_FILES=	bin/${PORTNAME}
+
+OPTIONS_DEFINE=	DOCS
+
+do-build:
+	cd ${WRKSRC} && ${CC} ${CFLAGS} -I${NCURSESINC} -L${NCURSESLIB} -lcurses -o ${PORTNAME} ${PORTNAME}.c
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+
+post-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR}/
+
+.include <bsd.port.mk>

Added: head/misc/bsod/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/bsod/distinfo	Tue Nov  8 16:32:59 2016	(r425752)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1478620643
+SHA256 (bsod-0.1.tgz) = ad6eb83637d1eb655ca7891933916266bd0624e08823490083b960ff15531c43
+SIZE (bsod-0.1.tgz) = 10128

Added: head/misc/bsod/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/bsod/pkg-descr	Tue Nov  8 16:32:59 2016	(r425752)
@@ -0,0 +1,6 @@
+This program will let you UNIX user experience the authentic Microsoft
+Windows experience. Bsod displays the famous windows xp blue screen
+of death on the console. Errors and drivers causing the error are
+selected randomly from a large set of examples.
+
+WWW: https://www.vanheusden.com/bsod/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611081632.uA8GWx6a093166>