1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

japanese/ne: USES+= ncurses, respect LDFLAGS

This commit is contained in:
John Marino 2016-02-05 16:45:02 +00:00
parent a223ae00dd
commit f347c1c4f5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=408224
2 changed files with 12 additions and 2 deletions

View File

@ -11,10 +11,9 @@ COMMENT= VZ-like full-screen text editor with Japanese support
LICENSE= GPLv2
USES= ncurses
GNU_CONFIGURE= yes
CFLAGS+= -Wno-error=return-type # required for Clang
WRKSRC= ${WRKDIR}/${PORTNAME}
OPTIONS_DEFINE= DOCS

View File

@ -0,0 +1,11 @@
--- src/Makefile.in.orig 2000-04-19 07:32:36 UTC
+++ src/Makefile.in
@@ -41,7 +41,7 @@ TARS = $(SRCS) Makefile.in config.h.in n
all: $(PROG)
$(PROG): $(OBJS) ../lib/libele.a
- $(CC) -L../lib -o $@ $(OBJS) $(LIBS)
+ $(CC) -L../lib -o $@ $(OBJS) $(LDFLAGS) $(LIBS)
.c.o:
@echo $(CC) $(CFLAGS) -c $<