From owner-svn-ports-head@freebsd.org Tue Nov 8 16:33:00 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CEA43C377C5; Tue, 8 Nov 2016 16:33:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 91DDAB8E; Tue, 8 Nov 2016 16:33:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA8GWxjX093170; Tue, 8 Nov 2016 16:32:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA8GWx6a093166; Tue, 8 Nov 2016 16:32:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201611081632.uA8GWx6a093166@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 8 Nov 2016 16:32:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425752 - in head/misc: . bsod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2016 16:33:00 -0000 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 +# $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 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/