From owner-svn-ports-head@FreeBSD.ORG Mon Feb 4 14:25:08 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A1ED747B; Mon, 4 Feb 2013 14:25:08 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 89AFA1E7B; Mon, 4 Feb 2013 14:25:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r14EP8qK063445; Mon, 4 Feb 2013 14:25:08 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r14EP8kD063443; Mon, 4 Feb 2013 14:25:08 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201302041425.r14EP8kD063443@svn.freebsd.org> From: Martin Wilke Date: Mon, 4 Feb 2013 14:25:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r311618 - head/games/xvmines 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.14 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: Mon, 04 Feb 2013 14:25:08 -0000 Author: miwi Date: Mon Feb 4 14:25:07 2013 New Revision: 311618 URL: http://svnweb.freebsd.org/changeset/ports/311618 Log: - Update MASTER_SITES - Support PLIST_FILES - Add MAKE_JOBS_SAFE - Reformat pkg-descr PR: 175588 Submitted by: Ports Fury Deleted: head/games/xvmines/pkg-plist Modified: head/games/xvmines/Makefile (contents, props changed) head/games/xvmines/pkg-descr (contents, props changed) Modified: head/games/xvmines/Makefile ============================================================================== --- head/games/xvmines/Makefile Mon Feb 4 14:24:08 2013 (r311617) +++ head/games/xvmines/Makefile Mon Feb 4 14:25:07 2013 (r311618) @@ -1,31 +1,37 @@ -# New ports collection makefile for: xvmines -# Date created: 18 March 1998 -# Whom: Andrey Zakhvatov -# +# Created by: Andrey Zakhvatov # $FreeBSD$ -# PORTNAME= xvmines PORTVERSION= 1.0 PORTREVISION= 2 CATEGORIES= games -MASTER_SITES= ftp://ftp.x.org/R5contrib/ +MASTER_SITES= XCONTRIB/../R5contrib EXTRACT_SUFX= .tar.Z MAINTAINER= ports@FreeBSD.org COMMENT= Simple minesweeper game for X Window System -LIB_DEPENDS= xview.3:${PORTSDIR}/x11-toolkits/xview +LIB_DEPENDS= xview:${PORTSDIR}/x11-toolkits/xview + +OPTIONS_DEFINE= DOCS -USE_IMAKE= yes USE_XORG= x11 -MAN6= xvmines.6 +USE_IMAKE= yes +MAKE_JOBS_SAFE= yes + MANCOMPRESSED= no +MAN6= xvmines.6 +PORTDOCS= Copyright +PLIT_FILES= bin/xvmines + +.include do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xvmines ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/xvmines.man ${PREFIX}/man/man6/xvmines.6 - @${MKDIR} ${PREFIX}/share/doc/xvmines - ${INSTALL_DATA} ${WRKSRC}/Copyright ${PREFIX}/share/doc/xvmines + ${INSTALL_MAN} ${WRKSRC}/xvmines.man ${MAN6PREFIX}/man/man6/xvmines.6 +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Copyright ${DOCSDIR} +.endif .include Modified: head/games/xvmines/pkg-descr ============================================================================== --- head/games/xvmines/pkg-descr Mon Feb 4 14:24:08 2013 (r311617) +++ head/games/xvmines/pkg-descr Mon Feb 4 14:25:07 2013 (r311618) @@ -1,18 +1,21 @@ - XVmines is a simple minesweeper game for X Window System. - xvmines creates a rectangle on the screen, divided into equally -sized cells. Each cell may contain a mine (hence the name xvmines), -contain a number indicating the number of mines present in the -8-neighboring cells or be empty. - Initially, all cells are covered with tiles. A tile can be -removed, uncovering the cell below, by clicking the left mouse -button on it. In addition,a cell can be marked as containing a mine -by clicking the right mouse button on it. Note however that marking -a cell as containing a mine does not necessarily mean that the cell -really contains a mine! - Clicking the middle mouse button on a tile, marks it with a -question mark, acting as a reminder mechanism. The user can use the -numbers in the uncovered cells to find (or sometimes guess ...) -which cells contain mines and which do not. - A game ends when all cells not containing mines have been -uncovered and all cells containing mines have been marked, or when -a cell containing a mine is uncovered. +XVmines is a simple minesweeper game for X Window System. + +xvmines creates a rectangle on the screen, divided into equally sized +cells. Each cell may contain a mine (hence the name xvmines), contain a +number indicating the number of mines present in the 8-neighboring cells +or be empty. + +Initially, all cells are covered with tiles. A tile can be removed, +uncovering the cell below, by clicking the left mouse button on it. In +addition, a cell can be marked as containing a mine by clicking the +right mouse button on it. Note however that marking a cell as containing +a mine does not necessarily mean that the cell really contains a mine! + +Clicking the middle mouse button on a tile, marks it with a question +mark, acting as a reminder mechanism. The user can use the numbers in +the uncovered cells to find (or sometimes guess ...) which cells contain +mines and which do not. + +A game ends when all cells not containing mines have been uncovered and +all cells containing mines have been marked, or when a cell containing a +mine is uncovered.