openbsd-ports/editors/ht/Makefile
gonzalo edfd7e5444 Little update for 'ht', with some fixes:
- Fixed loading of 32 bit ELFs
	- Use wide ncurses if necessars
	- Show search progress in MiB
	- [x86] fixed a lot of small bugs
	- fixed a crash with the "follow" function on
	  invalid addresses in analyser
	- [x86] AVX updates
	- [x86] AVX2
	- [x86] BMI, BMI2 and TBM instructions
	- fixed loading of ELF files with no section headers

OK, benoit@ (maintainer), edd@, aja@
2012-04-15 18:38:53 +00:00

54 lines
1.2 KiB
Makefile

# $OpenBSD: Makefile,v 1.20 2012/04/15 18:38:53 gonzalo Exp $
COMMENT = file editor/viewer/analyzer for executables
DISTNAME = ht-2.0.20
CATEGORIES = editors
HOMEPAGE = http://hte.sourceforge.net/
MAINTAINER = Benoit Lecocq <benoit@openbsd.org>
# GPLv2
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
WANTLIB = c m ncursesw stdc++
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=hte/}
CONFIGURE_STYLE = gnu
USE_GMAKE = Yes
FLAVORS = no_x11
FLAVOR ?=
LIB_DEPENDS = archivers/lzo2
WANTLIB += lzo2
CONFIGURE_ENV = CFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS = --program-transform-name='s/ht/hte/'
.if ${FLAVOR:Mno_x11}
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include"
CONFIGURE_ARGS += --disable-x11-textmode
.else
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
X11BASE=${X11BASE}
CONFIGURE_ARGS += --enable-x11-textmode
WANTLIB += X11
.endif
do-install:
chmod +x ${WRKSRC}/install-sh
post-install:
${INSTALL_PROGRAM} ${WRKBUILD}/ht ${PREFIX}/bin/hte
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ht
${INSTALL_DATA} ${WRKSRC}/doc/{README,ht.html} ${PREFIX}/share/doc/ht
.include <bsd.port.mk>