diff options
author | mharo <mharo@FreeBSD.org> | 2000-04-20 03:22:03 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2000-04-20 03:22:03 +0800 |
commit | c34fbb59d6f50f15e66e4e53749fcc4e941a5c9f (patch) | |
tree | dc5a4405730950febf05f219b33e2d7385a39c5b /games/oonsoo | |
parent | 95210feb1e9231d490173cb85eb172adf7d7d201 (diff) | |
download | freebsd-ports-gnome-c34fbb59d6f50f15e66e4e53749fcc4e941a5c9f.tar.gz freebsd-ports-gnome-c34fbb59d6f50f15e66e4e53749fcc4e941a5c9f.tar.zst freebsd-ports-gnome-c34fbb59d6f50f15e66e4e53749fcc4e941a5c9f.zip |
- Support CXX/CXXFLAGS/X11BASE/MAKE properly
- Add WWW: line into pkg/DESCR
PR: 18048
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'games/oonsoo')
-rw-r--r-- | games/oonsoo/Makefile | 4 | ||||
-rw-r--r-- | games/oonsoo/files/patch-aa | 24 | ||||
-rw-r--r-- | games/oonsoo/files/patch-ab | 20 | ||||
-rw-r--r-- | games/oonsoo/pkg-descr | 5 |
4 files changed, 42 insertions, 11 deletions
diff --git a/games/oonsoo/Makefile b/games/oonsoo/Makefile index 601bcfe2941b..d119877810e8 100644 --- a/games/oonsoo/Makefile +++ b/games/oonsoo/Makefile @@ -1,4 +1,4 @@ -# New ports collection makefile for: oonsoo +# New ports collection makefile for: oonsoo # Date created: 23rd June, 1997 # Whom: Joel Sutton <jsutton@bbcon.com.au> # @@ -19,6 +19,6 @@ pre-patch: @${CP} ${WRKSRC}/Makefile.Linux ${WRKSRC}/Makefile do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/oonsoo ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/oonsoo ${PREFIX}/bin .include <bsd.port.mk> diff --git a/games/oonsoo/files/patch-aa b/games/oonsoo/files/patch-aa index 13df58eaebee..f337d33ce630 100644 --- a/games/oonsoo/files/patch-aa +++ b/games/oonsoo/files/patch-aa @@ -1,11 +1,23 @@ ---- Makefile.orig Thu Feb 24 03:02:50 2000 -+++ Makefile Thu Feb 24 03:03:06 2000 -@@ -12,7 +12,7 @@ - CPPFLAGS=-O -ansi +--- Makefile.orig Thu Feb 24 03:29:29 2000 ++++ Makefile Thu Feb 24 03:42:58 2000 +@@ -6,16 +6,16 @@ + ############################################################################### + + ## C++ compiler to use +-CC=g++ ++CC = ${CXX} + + ## C++ compiler flags +-CPPFLAGS=-O -ansi ++CPPFLAGS = ${CXXFLAGS} -ansi ## System Includes -SYS_INCLUDES = -+SYS_INCLUDE = -I/usr/X11R6/include ++SYS_INCLUDE = -I${X11BASE}/include ## System Libraries - SYS_LIBS = -L/usr/X11R6/lib -lX11 +-SYS_LIBS = -L/usr/X11R6/lib -lX11 ++SYS_LIBS = -L${X11BASE}/lib -lX11 + + ## Archiver + AR=ar diff --git a/games/oonsoo/files/patch-ab b/games/oonsoo/files/patch-ab new file mode 100644 index 000000000000..4d61eb201333 --- /dev/null +++ b/games/oonsoo/files/patch-ab @@ -0,0 +1,20 @@ +--- Makefile.common.orig Tue Jan 11 08:36:39 2000 ++++ Makefile.common Thu Feb 24 04:14:30 2000 +@@ -33,7 +33,7 @@ + echo ""; \ + echo "------ Building: $$dir"; \ + cd $$dir; \ +- make $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" all; \ ++ $(MAKE) $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" all; \ + if [ $$? -eq 0 ] ; \ + then \ + cd ..; \ +@@ -48,7 +48,7 @@ + echo ""; \ + echo "------ Cleaning: $$dir"; \ + cd $$dir; \ +- make $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" clean; \ ++ $(MAKE) $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" clean; \ + if [ $$? -eq 0 ] ; \ + then \ + cd ..; \ diff --git a/games/oonsoo/pkg-descr b/games/oonsoo/pkg-descr index 60ba1676c1ea..b6ffc9cdbc70 100644 --- a/games/oonsoo/pkg-descr +++ b/games/oonsoo/pkg-descr @@ -3,10 +3,9 @@ onto twelve playing decks. When the game starts, one card face down and one card face up is dealt to each of the playing decks. This game is a little harder than most because a different deck of -cards is used. Sounds effects are also built in. Check out the -following URL for more information: +cards is used. Sounds effects are also built in. - http://www4.ncsu.edu/~bwmott/www/oonsoo/ +WWW: http://www4.ncsu.edu/~bwmott/www/oonsoo/ Share and enjoy, |