Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Aug 2012 05:51:08 +0000 (UTC)
From:      Jason Helfman <jgh@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r302490 - in head/games: . connectagram
Message-ID:  <201208140551.q7E5p8a9049634@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jgh
Date: Tue Aug 14 05:51:07 2012
New Revision: 302490
URL: http://svn.freebsd.org/changeset/ports/302490

Log:
  Connectagram is a word unscrambling game. The board consists
  of several scrambled words that are joined together.
  You can choose the length of the words, the amount of words,
  and the pattern that the words are arranged in.
  The game provides a hint option for times when you are stuck,
  and features an online word lookup that fetches the definitions
  of each word from www.dict.org. Your current progress is automatically saved.
  
  Note that this game involves a large and varied word list,
  some of which may be considered inappropriate for children.
  You can edit the file containing the word list if you wish
  to remove words from your game. The location of this file varies by platform.
  
  WWW: http://gottcode.org/connectagram/
  
  PR:		ports/167849
  Submitted by:	nemysis@gmx.ch

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

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Tue Aug 14 04:40:46 2012	(r302489)
+++ head/games/Makefile	Tue Aug 14 05:51:07 2012	(r302490)
@@ -134,6 +134,7 @@
     SUBDIR += colorcode
     SUBDIR += columns
     SUBDIR += concentration
+    SUBDIR += connectagram
     SUBDIR += connectfive
     SUBDIR += conquest
     SUBDIR += construo

Added: head/games/connectagram/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/connectagram/Makefile	Tue Aug 14 05:51:07 2012	(r302490)
@@ -0,0 +1,59 @@
+# New Ports collection makefile for:	connectagram
+# Date created:		23 April 2012
+# Whom:			nemysis@gmx.ch
+#
+# $FreeBSD$
+#
+
+PORTNAME=	connectagram
+PORTVERSION=	1.0.1
+CATEGORIES=	games
+MASTER_SITES=	http://gottcode.org/${PORTNAME}/
+DISTNAME=	${PORTNAME}-${DISTVERSION}-src
+
+MAINTAINER=	nemysis@gmx.ch
+COMMENT=	Word unscrambling game
+
+LICENSE=	GPLv3
+
+OPTIONS_DEFINE=	DATA
+OPTIONS_DEFAULT=	DATA
+
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
+
+USE_BZIP2=	yes
+USE_QT_VER=	4
+QT_COMPONENTS=	moc_build qmake_build rcc_build corelib gui iconengines imageformats network
+INSTALLS_ICONS=	yes
+
+MAKE_JOBS_SAFE=	yes
+
+PORTDATA=	*
+PORTDOCS=	ChangeLog INSTALL
+
+PLIST_FILES=	bin/connectagram \
+	share/applications/connectagram.desktop \
+	share/icons/hicolor/48x48/apps/connectagram.png
+
+PLIST_DIRSTRY=	share/icons/hicolor/48x48/apps \
+	share/icons/hicolor/48x48 \
+	share/icons/hicolor \
+	share/icons \
+	share/applications
+
+do-configure:
+	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
+		${QMAKE} ${QMAKEFLAGS}
+
+.include <bsd.port.options.mk>
+
+post-install:
+# Documentation
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${DOCSDIR}
+.  for f in ${PORTDOCS}
+	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
+.  endfor
+.endif
+
+.include <bsd.port.mk>

Added: head/games/connectagram/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/connectagram/distinfo	Tue Aug 14 05:51:07 2012	(r302490)
@@ -0,0 +1,2 @@
+SHA256 (connectagram-1.0.1-src.tar.bz2) = 6d3696b69f09eda26cdd2a42fe4d91de3effc4757c68f5109b19c1d4d6510e37
+SIZE (connectagram-1.0.1-src.tar.bz2) = 263808

Added: head/games/connectagram/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/connectagram/pkg-descr	Tue Aug 14 05:51:07 2012	(r302490)
@@ -0,0 +1,14 @@
+Connectagram is a word unscrambling game. The board consists
+of several scrambled words that are joined together.
+You can choose the length of the words, the amount of words,
+and the pattern that the words are arranged in.
+The game provides a hint option for times when you are stuck,
+and features an online word lookup that fetches the definitions
+of each word from www.dict.org. Your current progress is automatically saved.
+
+Note that this game involves a large and varied word list,
+some of which may be considered inappropriate for children.
+You can edit the file containing the word list if you wish
+to remove words from your game. The location of this file varies by platform.
+
+WWW: http://gottcode.org/connectagram/



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