Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 5 Feb 2016 18:15:20 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r408244 - in head/editors/aee: . files
Message-ID:  <201602051815.u15IFKar007866@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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) 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602051815.u15IFKar007866>