Index: head/games/ascii-invaders/Makefile =================================================================== --- head/games/ascii-invaders/Makefile (revision 458782) +++ head/games/ascii-invaders/Makefile (revision 458783) @@ -1,23 +1,29 @@ # Created by: Dmitry Marakasov # $FreeBSD$ PORTNAME= ascii-invaders PORTVERSION= 1.0.1 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org COMMENT= ASCII-art game like Space Invaders using Curses LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= macdice + +USES= ncurses + +CFLAGS+= -isystem${LOCALBASE}/include -isystem${NCURSESINC} +LDFLAGS+= -L${NCURSESLIB} -ltinfo PLIST_FILES= bin/ascii_invaders do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ascii_invaders ${STAGEDIR}${PREFIX}/bin .include Index: head/games/ascii-invaders/files/patch-Makefile =================================================================== --- head/games/ascii-invaders/files/patch-Makefile (nonexistent) +++ head/games/ascii-invaders/files/patch-Makefile (revision 458783) @@ -0,0 +1,16 @@ +--- Makefile.orig 2016-12-09 02:53:39 UTC ++++ Makefile +@@ -1,5 +1,5 @@ + CFLAGS+=-Wall +-LIBS=-lcurses ++LIBS= -lncurses + + all: ascii_invaders + +@@ -7,5 +7,5 @@ clean: + rm -f invaders.o ascii_invaders + + ascii_invaders: invaders.o +- $(CC) $(CFLAGS) $(LIBS) invaders.o -o ascii_invaders ++ $(CC) $(CFLAGS) $(LDFLAGS) $(LIBS) invaders.o -o ascii_invaders + Property changes on: head/games/ascii-invaders/files/patch-Makefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property