summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaichi GOTO <daichi@FreeBSD.org>2003-07-11 05:17:09 +0000
committerDaichi GOTO <daichi@FreeBSD.org>2003-07-11 05:17:09 +0000
commitd7224af8d21b8954847020fd5dd71d64b47acdbf (patch)
treeeb473034e0e32b6224479e34105e524e0e4eb9a0
parentupdate misc/kcd: 6.4.2 -> 7.0.0 (diff)
update editors/hte: Add WITHOUT_X11 knob
PR: 54323 Submitted by: KATO Tsuguru <tkato@prontomail.com>
Notes
Notes: svn path=/head/; revision=84641
-rw-r--r--editors/hte/Makefile17
1 files changed, 12 insertions, 5 deletions
diff --git a/editors/hte/Makefile b/editors/hte/Makefile
index 97ce6f54d1e3..5167a7624294 100644
--- a/editors/hte/Makefile
+++ b/editors/hte/Makefile
@@ -17,13 +17,11 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= A file editor/viewer/analyzer for executables
USE_BZIP2= yes
-USE_XLIB= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
+CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS= --enable-release
-CONFIGURE_ENV= CPPFLAGS+="-I${X11BASE}/include" \
- LIBS+="-L${X11BASE}/lib"
.include <bsd.port.pre.mk>
@@ -31,9 +29,18 @@ CONFIGURE_ENV= CPPFLAGS+="-I${X11BASE}/include" \
LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses
.endif
+.if defined(WITHOUT_X11)
+PKGNAMESUFFIX= -nox11
+CONFIGURE_ARGS+= --disable-x11-textmode
+.else
+USE_XLIB= yes
+CPPFLAGS= -I${X11BASE}/include
+LDFLAGS= -L${X11BASE}/lib
+.endif
+
post-patch:
- @${REINPLACE_CMD} -e \
- 's|$$FLAGS_PIPE $$FLAGS_ALL|$$CFLAGS|g' \
+ @${REINPLACE_CMD} -e 's|$$FLAGS_PIPE $$FLAGS_ALL|$$CFLAGS|g ; \
+ s|-L/usr/X11/lib -L/usr/X11R6/lib|$$LDFLAGS|g' \
${WRKSRC}/configure
post-install: