freebsd-ports/science/epte/files/patch-makefile
John Marino a7fb5472f6 science/epte: Add forgetten patch hunk from previous commit
This chunk enables the build to honor LDFLAGS.
2016-08-28 05:56:01 +00:00

42 lines
1,003 B
Text

--- makefile.orig 2012-08-04 20:53:21 UTC
+++ makefile
@@ -320,13 +320,13 @@ IS_INTERACTIVE= yes
#ifdef VMS
CC = cc
#else
-CC = gcc
+CC ?= gcc
#endif
#ifdef DEVELOPER
-CC_OPTIONS = -c -g
+CC_OPTIONS = -c -g ${CFLAGS}
#else
-CC_OPTIONS = -c -g
+CC_OPTIONS = -c -g ${CFLAGS}
#endif
@@ -340,11 +340,11 @@ DISTNAME = [system]
LIBS = -lcursesX -o epte
#endif
# Use ncurses library for linux & FreeBSD
-#if defined(linux) || defined(__FreeBSD__)
+#if defined(linux) || defined(__FreeBSD__) || defined(__DragonFly__)
LIBS = -lncurses -o epte
#endif
-DISTNAME=/usr/bin
+DISTNAME=${PREFIX}
MAIN = ask_user.o bell.o bold.o blink.o draw_blocks.o draw_table.o endprog.o listcommand.o epte.o make_coordinates.o reverse.o setaudio.o setinput.o table_key.o ttflush.o ttinp.o
@@ -354,7 +354,7 @@ DOES = do_bondeng.o do_attributes.o do_c
epte : $(MAIN) $(FILLS) $(DOES)
- $(CC) $(MAIN) $(FILLS) $(DOES) $(LIBS)
+ $(CC) $(MAIN) $(FILLS) $(DOES) $(LDFLAGS) $(LIBS)
clean:
rm -f *.o