mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
New binary and manpage: xembed. Switch to DISTVERSION. Use localbase:ldflags, doesn't need patching config.mk. Add libfontconfig dependency. Add xft and xorgproto to USES_XORG. Add LICENSE_FILE. PR: 282583 Approved by: maintainer timeout (2+ weeks)
12 lines
519 B
Text
12 lines
519 B
Text
--- Makefile.orig 2024-11-06 06:26:09 UTC
|
|
+++ Makefile
|
|
@@ -9,7 +9,8 @@ DOCPREFIX = ${PREFIX}/share/doc/${NAME}
|
|
DOCPREFIX = ${PREFIX}/share/doc/${NAME}
|
|
|
|
# use system flags.
|
|
-TABBED_CFLAGS = -I/usr/X11R6/include -I/usr/include/freetype2 ${CFLAGS}
|
|
+FREETYPE_CFLAGS!=pkg-config --cflags freetype2
|
|
+TABBED_CFLAGS = -I/usr/X11R6/include ${FREETYPE_CFLAGS} ${CFLAGS}
|
|
TABBED_LDFLAGS = -L/usr/X11R6/lib -lX11 -lfontconfig -lXft ${LDFLAGS}
|
|
TABBED_CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700L
|
|
|