On Sat, Oct 16, 2021 at 08:17:14AM -0700, Pat Jensen wrote:
> All,
> 
> I'm submitting a revised tarball of a new port of my console word search
> game for OpenBSD.
> 
> Please evaluate and comment on any necessary changes.
> 
> 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.
> 
> Regards,
> 
> Pat

Greetings, Pat. At this point, it's better to send diffs instead of new
tarballs. Attached is a diff with the hardcoded LOCALBASE path removed.
If you are ok with this, I can commit it later today.

Thanks

> 
> 
> -- 
> Pat Jensen, CCIE #53452

-- 

Tracey Emery

Index: Makefile
===================================================================
RCS file: /cvs/ports/games/wordsearch/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -u -r1.1.1.1 Makefile
--- Makefile    15 Oct 2021 14:12:09 -0000      1.1.1.1
+++ Makefile    16 Oct 2021 15:37:53 -0000
@@ -1,6 +1,6 @@
-# $OpenBSD: Makefile,v 1.1.1.1 2021/10/15 14:12:09 bcallah Exp $
+# $OpenBSD$
 
-V =            2.0
+V =            2.1
 COMMENT =      classic word search game that you can play in your terminal
 DISTNAME =     wordsearch-${V}
 CATEGORIES =   games
@@ -20,6 +20,7 @@ NO_TEST =     Yes
 PKG_ARCH =     *
 
 do-install:
+       sed -i 's,/usr/games,${LOCALBASE}/bin,g' ${WRKSRC}/man/wordsearch.6
        ${INSTALL_SCRIPT} ${WRKSRC}/wordsearch ${PREFIX}/bin/wordsearch
        ${INSTALL_MAN} ${WRKSRC}/man/wordsearch.6 ${PREFIX}/man/man6
        ${INSTALL_DATA_DIR} ${PREFIX}/share/wordsearch
Index: distinfo
===================================================================
RCS file: /cvs/ports/games/wordsearch/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -u -r1.1.1.1 distinfo
--- distinfo    15 Oct 2021 14:12:09 -0000      1.1.1.1
+++ distinfo    16 Oct 2021 15:37:53 -0000
@@ -1,2 +1,2 @@
-SHA256 (wordsearch-2.0.tar.gz) = CpADRJuBQu3ng7ILyZeB/rtzRmeHgS3c9O2/IiP3W/M=
-SIZE (wordsearch-2.0.tar.gz) = 12109
+SHA256 (wordsearch-2.1.tar.gz) = SBo0Lz03rMv/CSAODQYNVhR+IQZIp3If58ZrBrGTEHc=
+SIZE (wordsearch-2.1.tar.gz) = 14175
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/games/wordsearch/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -u -r1.1.1.1 PLIST
--- pkg/PLIST   15 Oct 2021 14:12:09 -0000      1.1.1.1
+++ pkg/PLIST   16 Oct 2021 15:37:53 -0000
@@ -1,4 +1,4 @@
-@comment $OpenBSD: PLIST,v 1.1.1.1 2021/10/15 14:12:09 bcallah Exp $
+@comment $OpenBSD: PLIST,v$
 bin/wordsearch
 @man man/man6/wordsearch.6
 share/doc/wordsearch/
@@ -10,6 +10,7 @@ share/wordsearch/animals.txt
 share/wordsearch/apocalypse.txt
 share/wordsearch/baseball.txt
 share/wordsearch/bbq.txt
+share/wordsearch/bread.txt
 share/wordsearch/camping.txt
 share/wordsearch/candy.txt
 share/wordsearch/cars.txt
@@ -27,7 +28,9 @@ share/wordsearch/dogs.txt
 share/wordsearch/edm.txt
 share/wordsearch/email.txt
 share/wordsearch/engines.txt
+share/wordsearch/fair.txt
 share/wordsearch/fall.txt
+share/wordsearch/farms.txt
 share/wordsearch/fish.txt
 share/wordsearch/fitness.txt
 share/wordsearch/football.txt
@@ -40,6 +43,9 @@ share/wordsearch/hockey.txt
 share/wordsearch/household.txt
 share/wordsearch/instruments.txt
 share/wordsearch/internet.txt
+share/wordsearch/magic.txt
+share/wordsearch/math.txt
+share/wordsearch/military.txt
 share/wordsearch/mobile.txt
 share/wordsearch/movies.txt
 share/wordsearch/nationalparks.txt
@@ -48,24 +54,35 @@ share/wordsearch/nuts.txt
 share/wordsearch/oldtimes.txt
 share/wordsearch/pasta.txt
 share/wordsearch/photography.txt
+share/wordsearch/pizza.txt
 share/wordsearch/places.txt
 share/wordsearch/planets.txt
+share/wordsearch/sanfrancisco.txt
+share/wordsearch/school.txt
 share/wordsearch/science.txt
 share/wordsearch/scifi.txt
+share/wordsearch/shapes.txt
+share/wordsearch/sleep.txt
+share/wordsearch/snacks.txt
 share/wordsearch/sodas.txt
 share/wordsearch/space.txt
 share/wordsearch/spices.txt
 share/wordsearch/spring.txt
 share/wordsearch/states.txt
+share/wordsearch/stpatricks.txt
 share/wordsearch/strings.txt
 share/wordsearch/summer.txt
 share/wordsearch/superpowers.txt
 share/wordsearch/technology.txt
 share/wordsearch/tennis.txt
+share/wordsearch/thanksgiving.txt
+share/wordsearch/themepark.txt
 share/wordsearch/trains.txt
 share/wordsearch/travel.txt
 share/wordsearch/trees.txt
 share/wordsearch/unix.txt
+share/wordsearch/vegas.txt
+share/wordsearch/weather.txt
 share/wordsearch/wine.txt
 share/wordsearch/winter.txt
 share/wordsearch/work.txt

Reply via email to