diff options
-rw-r--r-- | games/trojka/Makefile | 2 | ||||
-rw-r--r-- | games/trojka/files/patch-Makefile | 12 |
2 files changed, 12 insertions, 2 deletions
diff --git a/games/trojka/Makefile b/games/trojka/Makefile index 0cde2dddb2b8..994e06149808 100644 --- a/games/trojka/Makefile +++ b/games/trojka/Makefile @@ -16,4 +16,6 @@ LICENSE_NAME= Trojka Copyright LICENSE_FILE= ${WRKSRC}/COPYRIGHT LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +USES= ncurses + .include <bsd.port.mk> diff --git a/games/trojka/files/patch-Makefile b/games/trojka/files/patch-Makefile index 7ef783233713..bfe18b4308db 100644 --- a/games/trojka/files/patch-Makefile +++ b/games/trojka/files/patch-Makefile @@ -1,6 +1,6 @@ --- Makefile.orig 1995-10-20 21:17:43 UTC +++ Makefile -@@ -6,14 +6,24 @@ +@@ -6,21 +6,31 @@ # @@ -27,7 +27,15 @@ clean: rm -f $(PROGS) *.o core a.out trojka.scores -@@ -53,3 +63,5 @@ hpux: + + trojka: $(OBJS) + # $(CC) $(CFLAGS) $(OBJS) -lcurses -ltermlib -o trojka +- $(CC) $(CFLAGS) $(OBJS) -lcurses -o trojka ++ $(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) -lncurses -o trojka + + + # patch for HP-UX, need 'codelibs' +@@ -53,3 +63,5 @@ hpux: linux: make trojka "CFLAGS=-DLINUX" |