svn commit: r408244 - in head/editors/aee: . files

John Marino marino at FreeBSD.org
Fri Feb 5 18:15:21 UTC 2016


Author: marino
Date: Fri Feb  5 18:15:20 2016
New Revision: 408244
URL: https://svnweb.freebsd.org/changeset/ports/408244

Log:
  editors/aee: document ncurses rqmt (USES+=ncurses), respect LDFLAGS
  
  approved by:	infrastructure blanket

Modified:
  head/editors/aee/Makefile
  head/editors/aee/files/patch-create.mk.aee

Modified: head/editors/aee/Makefile
==============================================================================
--- head/editors/aee/Makefile	Fri Feb  5 18:12:42 2016	(r408243)
+++ head/editors/aee/Makefile	Fri Feb  5 18:15:20 2016	(r408244)
@@ -12,6 +12,8 @@ COMMENT=	Easy editor with both curses an
 
 LICENSE=	ART10
 
+USES=		ncurses
+
 OPTIONS_DEFINE=	XAE
 XAE_DESC=	Build X11 version 'xae'
 

Modified: head/editors/aee/files/patch-create.mk.aee
==============================================================================
--- head/editors/aee/files/patch-create.mk.aee	Fri Feb  5 18:12:42 2016	(r408243)
+++ head/editors/aee/files/patch-create.mk.aee	Fri Feb  5 18:15:20 2016	(r408244)
@@ -1,6 +1,6 @@
---- create.mk.aee	Mon Sep 23 06:16:04 2002
-+++ create.mk.aee	Sat Mar 17 10:52:41 2007
-@@ -172,7 +172,7 @@
+--- create.mk.aee.orig	2010-07-18 00:58:19 UTC
++++ create.mk.aee
+@@ -184,7 +184,7 @@ fi
  # make decisions about use of new_curse.c (use of new_curse is recommended 
  # rather than local curses)
  
@@ -9,3 +9,12 @@
  then
  	echo "Neither terminfo or termcap are on this system!  "
  	if [ -f /usr/include/curses.h ]
+@@ -291,7 +291,7 @@ OBJS = aee.o control.o format.o localize
+ 	\$(CC) \$(DEFINES) -c \$*.c \$(CFLAGS)
+ 
+ curses :	\$(OBJS)
+-	\$(CC) -o aee \$(OBJS) \$(CFLAGS) -lcurses 
++	\$(CC) -o aee \$(OBJS) \$(CFLAGS) \$(LDFLAGS) -lncurses 
+ 
+ aee :	\$(OBJS) new_curse.o
+ 	\$(CC) -o aee \$(OBJS) new_curse.o \$(CFLAGS) 


More information about the svn-ports-all mailing list