1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

Honour CPPFLAGS and LDFLAGS to fix readline support on current.

This commit is contained in:
Adam Weinberger 2014-08-09 18:37:19 +00:00
parent 082d1d2b8c
commit 102f427941
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=364461

View File

@ -1,14 +1,15 @@
--- ./Makefile.orig 1996-01-16 06:36:38.000000000 +0100
+++ ./Makefile 2013-06-10 00:05:02.101069622 +0200
--- Makefile.orig 1996-01-16 00:36:38.000000000 -0500
+++ Makefile 2014-08-09 14:36:10.000000000 -0400
@@ -15,13 +15,13 @@
#
# add -DUSE_READLINE To compile in support for the GNU readline library.
-CFLAGS= -s -O2 -DUSE_READLINE
-CC= gcc
+CFLAGS+= -s -DUSE_READLINE
-LIBS= -lreadline -ltermcap
+CFLAGS+= -s -DUSE_READLINE ${CPPFLAGS}
+CC?= gcc
LIBS= -lreadline -ltermcap
+LIBS= -lreadline -ltermcap ${LDFLAGS}
ALLFILES= makefile cdgram.y cdlex.l cdecl.c cdecl.1 testset testset++
-BINDIR= /usr/bin
-MANDIR= /usr/man/man1
@ -24,11 +25,11 @@
install: cdecl
- $(INSTALL) cdecl $(BINDIR)
+ ${BSD_INSTALL_PROGRAM} cdecl $(STAGEDIR)$(BINDIR)
- ln $(BINDIR)/cdecl $(BINDIR)/c++decl
+ ln -s $(BINDIR)/cdecl $(STAGEDIR)$(BINDIR)/c++decl
- $(INSTALL_DATA) cdecl.1 $(MANDIR)
- $(INSTALL_DATA) c++decl.1 $(MANDIR)
+ ${BSD_INSTALL_PROGRAM} cdecl $(STAGEDIR)$(BINDIR)
+ ln -s $(BINDIR)/cdecl $(STAGEDIR)$(BINDIR)/c++decl
+ ${BSD_INSTALL_MAN} cdecl.1 $(STAGEDIR)$(MANDIR)
+ ln -s $(MANDIR)/cdecl.1 $(STAGEDIR)$(MANDIR)/c++decl.1