pkgsrc-Changes archive

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

CVS commit: pkgsrc/games/wordsearch



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Mon Oct  4 21:49:21 UTC 2021

Added Files:
        pkgsrc/games/wordsearch: DESCR Makefile PLIST distinfo

Log Message:
wordsearch: import new package

wordsearch is a classic word search game that you can play in your
terminal. It features curses full screen gameplay with an easy to
customize puzzle-directory so you can share your creations with
friends. It has simple to pick up gameplay with word-based scoring so
you can play anytime.

Submitted in PR pkg/56435 by Pat Jensen. (Some adjustments for pkgsrc
by me.)


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/games/wordsearch/DESCR \
    pkgsrc/games/wordsearch/Makefile pkgsrc/games/wordsearch/PLIST \
    pkgsrc/games/wordsearch/distinfo

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

Added files:

Index: pkgsrc/games/wordsearch/DESCR
diff -u /dev/null pkgsrc/games/wordsearch/DESCR:1.1
--- /dev/null   Mon Oct  4 21:49:21 2021
+++ pkgsrc/games/wordsearch/DESCR       Mon Oct  4 21:49:21 2021
@@ -0,0 +1,4 @@
+wordsearch is a classic word search game that you can play in your terminal.
+It features curses full screen gameplay with an easy to customize puzzle-
+directory so you can share your creations with friends. It has simple to pick
+up gameplay with word-based scoring so you can play anytime.
Index: pkgsrc/games/wordsearch/Makefile
diff -u /dev/null pkgsrc/games/wordsearch/Makefile:1.1
--- /dev/null   Mon Oct  4 21:49:21 2021
+++ pkgsrc/games/wordsearch/Makefile    Mon Oct  4 21:49:21 2021
@@ -0,0 +1,35 @@
+# $NetBSD: Makefile,v 1.1 2021/10/04 21:49:21 gutteridge Exp $
+
+DISTNAME=      wordsearch-2.0
+CATEGORIES=    games
+GITHUB_PROJECT=        wordsearch
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=jensenpat/}
+GITHUB_RELEASE=        ${PKGVERSION_NOREV}
+
+MAINTAINER=    patj%passpackets.com@localhost
+HOMEPAGE=      https://github.com/jensenpat/wordsearch/
+COMMENT=       Classic word search game that you can play in your terminal
+LICENSE=       2-clause-bsd
+
+DEPENDS+=      ${PYPKGPREFIX}-curses-[0-9]*:../../devel/py-curses
+
+NO_BUILD=      yes
+
+PYTHON_VERSIONS_INCOMPATIBLE=  27
+REPLACE_PYTHON=        wordsearch
+
+INSTALLATION_DIRS=     bin ${PKGMANDIR}/man6 share/wordsearch
+
+SUBST_CLASSES+=                prefix
+SUBST_MESSAGE.prefix=  Fixing paths.
+SUBST_STAGE.prefix=    pre-configure
+SUBST_FILES.prefix=    wordsearch
+SUBST_SED.prefix=      -e 's,/usr/pkg/share,${PREFIX}/share,g'
+
+do-install:
+       ${INSTALL_SCRIPT} ${WRKSRC}/wordsearch ${DESTDIR}${PREFIX}/bin/
+       ${INSTALL_MAN} ${WRKSRC}/man/wordsearch.6 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man6/
+       ${INSTALL_DATA} ${WRKSRC}/puzzles/*.txt ${DESTDIR}${PREFIX}/share/wordsearch/
+
+.include "../../lang/python/application.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/games/wordsearch/PLIST
diff -u /dev/null pkgsrc/games/wordsearch/PLIST:1.1
--- /dev/null   Mon Oct  4 21:49:21 2021
+++ pkgsrc/games/wordsearch/PLIST       Mon Oct  4 21:49:21 2021
@@ -0,0 +1,68 @@
+@comment $NetBSD: PLIST,v 1.1 2021/10/04 21:49:21 gutteridge Exp $
+bin/wordsearch
+man/man6/wordsearch.6
+share/wordsearch/airplanes.txt
+share/wordsearch/anatomy.txt
+share/wordsearch/animals.txt
+share/wordsearch/apocalypse.txt
+share/wordsearch/baseball.txt
+share/wordsearch/bbq.txt
+share/wordsearch/camping.txt
+share/wordsearch/candy.txt
+share/wordsearch/cars.txt
+share/wordsearch/cats.txt
+share/wordsearch/christmas.txt
+share/wordsearch/coffee.txt
+share/wordsearch/computers.txt
+share/wordsearch/cookies.txt
+share/wordsearch/cooking.txt
+share/wordsearch/dairy.txt
+share/wordsearch/dance.txt
+share/wordsearch/dates.txt
+share/wordsearch/dinosaurs.txt
+share/wordsearch/dogs.txt
+share/wordsearch/edm.txt
+share/wordsearch/email.txt
+share/wordsearch/engines.txt
+share/wordsearch/fall.txt
+share/wordsearch/fish.txt
+share/wordsearch/fitness.txt
+share/wordsearch/football.txt
+share/wordsearch/fruit.txt
+share/wordsearch/halloween.txt
+share/wordsearch/hamradio.txt
+share/wordsearch/hiking.txt
+share/wordsearch/hobbies.txt
+share/wordsearch/hockey.txt
+share/wordsearch/household.txt
+share/wordsearch/instruments.txt
+share/wordsearch/internet.txt
+share/wordsearch/mobile.txt
+share/wordsearch/movies.txt
+share/wordsearch/nationalparks.txt
+share/wordsearch/networks.txt
+share/wordsearch/nuts.txt
+share/wordsearch/oldtimes.txt
+share/wordsearch/pasta.txt
+share/wordsearch/photography.txt
+share/wordsearch/places.txt
+share/wordsearch/planets.txt
+share/wordsearch/science.txt
+share/wordsearch/scifi.txt
+share/wordsearch/sodas.txt
+share/wordsearch/space.txt
+share/wordsearch/spices.txt
+share/wordsearch/spring.txt
+share/wordsearch/states.txt
+share/wordsearch/strings.txt
+share/wordsearch/summer.txt
+share/wordsearch/superpowers.txt
+share/wordsearch/technology.txt
+share/wordsearch/tennis.txt
+share/wordsearch/trains.txt
+share/wordsearch/travel.txt
+share/wordsearch/trees.txt
+share/wordsearch/unix.txt
+share/wordsearch/wine.txt
+share/wordsearch/winter.txt
+share/wordsearch/work.txt
Index: pkgsrc/games/wordsearch/distinfo
diff -u /dev/null pkgsrc/games/wordsearch/distinfo:1.1
--- /dev/null   Mon Oct  4 21:49:21 2021
+++ pkgsrc/games/wordsearch/distinfo    Mon Oct  4 21:49:21 2021
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/10/04 21:49:21 gutteridge Exp $
+
+SHA1 (wordsearch-2.0.tar.gz) = 2df5453d9b740431beb30344e2461c2cafe0377a
+RMD160 (wordsearch-2.0.tar.gz) = 7fc95e1fd8732309972502a308c93096b3561e00
+SHA512 (wordsearch-2.0.tar.gz) = 160a186c693d96ebe13ee45def9b4a64b9f9b5b65fc41860e30c23b299188ad307e8a28124d5acebf431cb0fcda43900ecb8e93d39ea5b135dc68e77cc76b88c
+Size (wordsearch-2.0.tar.gz) = 12109 bytes



Home | Main Index | Thread Index | Old Index