20eecd3dd6
Approved by: portmgr (self)
67 lines
1.5 KiB
Makefile
67 lines
1.5 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: HT Editor
|
|
# Date created: Jun 12, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hte
|
|
PORTVERSION= 0.8.0
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ht-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A file editor/viewer/analyzer for executables
|
|
|
|
USE_BZIP2= 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
|
|
|
|
PORTDOCS= README
|
|
PLIST_FILES= bin/ht
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 502126
|
|
BROKEN= "Does not build on FreeBSD >= 5.x"
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 400000
|
|
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|^CXXFLAGS=.*$$|CXXFLAGS="$$CXXFLAGS"|g ; \
|
|
s|^CFLAGS=.*$$|CFLAGS="$$CFLAGS"|g ; \
|
|
s|-L/usr/X11/lib -L/usr/X11R6/lib|$$LDFLAGS|g' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e \
|
|
's|typedef unsigned int uint;||g' ${WRKSRC}/global.h
|
|
@${REINPLACE_CMD} -e \
|
|
's|uint |UINT |g' ${WRKSRC}/htdata.h
|
|
@${REINPLACE_CMD} -e \
|
|
's|#include <malloc.h>||g' ${WRKSRC}/cp-demangle.c
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|