Index: head/games/drm/Makefile =================================================================== --- head/games/drm/Makefile (revision 407600) +++ head/games/drm/Makefile (revision 407601) @@ -1,23 +1,23 @@ # Created by: Andrey Zakhvatov # $FreeBSD$ PORTNAME= drm PORTVERSION= 1.0 CATEGORIES= games MASTER_SITES= SUNSITE/games/arcade DISTNAME= dr_mario MAINTAINER= ports@FreeBSD.org COMMENT= Very simple Tetris-style game ALL_TARGET= bugs -USES= tar:Z +USES= ncurses tar:Z OPTIONS_DEFINE= DOCS do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bugs ${STAGEDIR}${PREFIX}/bin/drm @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include Index: head/games/drm/files/patch-Makefile =================================================================== --- head/games/drm/files/patch-Makefile (revision 407600) +++ head/games/drm/files/patch-Makefile (revision 407601) @@ -1,24 +1,24 @@ ---- Makefile Tue Jun 16 03:13:11 1992 -+++ /home/andy/tmp/wrk/Makefile Tue Aug 4 17:02:23 1998 +--- Makefile.orig 1992-06-16 03:13:11 UTC ++++ Makefile @@ -1,17 +1,17 @@ #makefile for BUGS I - SRN 7/12/91 # modified for Linux on 6/15/92 Ken Corey -CC= gcc -CFLAGS= -O3 +#CC= gcc +#CFLAGS= -O3 OBJS= main.o startup.o loop.o meat.o #bugs : & $(OBJS) bugs : $(OBJS) #use above line if parallel processing is not supported - ${CC} ${CFLAGS} -o bugs $(OBJS) -lcurses -ltermcap -+ ${CC} ${CFLAGS} -o bugs $(OBJS) -lcurses ++ ${CC} ${CFLAGS} -o bugs $(OBJS) $(LDFLAGS) -lncurses main.o: main.c info.h - ${CC} ${CFLAGS} -DLINUX -o main.o main.c + ${CC} ${CFLAGS} -o main.o -c main.c $(OBJS): info.h