mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
Simple plaintext presentation tool. WWW: http://tools.suckless.org/sent/ PR: 209503 Submitted by: Neel Chauhan <neel@neelc.org>
19 lines
642 B
Makefile
19 lines
642 B
Makefile
--- config.mk.orig 2015-11-19 18:37:08 UTC
|
|
+++ config.mk
|
|
@@ -7,12 +7,12 @@ VERSION = 0.2
|
|
PREFIX = /usr/local
|
|
MANPREFIX = ${PREFIX}/share/man
|
|
|
|
-X11INC = /usr/X11R6/include
|
|
-X11LIB = /usr/X11R6/lib
|
|
+X11INC = /usr/local/X11R6/include
|
|
+X11LIB = /usr/local/X11R6/lib
|
|
|
|
# includes and libs
|
|
-INCS = -I. -I/usr/include -I/usr/include/freetype2 -I${X11INC}
|
|
-LIBS = -L/usr/lib -lc -lm -L${X11LIB} -lXft -lfontconfig -lX11 -lpng
|
|
+INCS = -I. -I/usr/local/include -I/usr/local/include/freetype2 -I${X11INC}
|
|
+LIBS = -L/usr/local/lib -lc -lm -L${X11LIB} -lXft -lfontconfig -lX11 -lpng
|
|
|
|
# flags
|
|
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_XOPEN_SOURCE=600
|