openbsd-ports/editors/ht/Makefile
okan 54d00433f0 - update to 2.0.13
- install ht as hte to remove conflict with print/texlive/base
  (note in pkg/MESSAGE)
- respect CFLAGS and X11BASE
- add OpenBSD target

based on patches from Paul Irofti and Genadijus Paleckis

feedback and ok merdely@
2008-05-04 20:43:55 +00:00

50 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.10 2008/05/04 20:43:55 okan Exp $
COMMENT= file editor/viewer/analyzer for executables
DISTNAME= ht-2.0.13
CATEGORIES= editors
HOMEPAGE= http://hte.sourceforge.net/
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hte/}
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c m ncurses stdc++
CONFIGURE_STYLE= gnu
USE_GMAKE= Yes
FLAVORS= no_x11
FLAVOR?=
LIB_DEPENDS= lzo::archivers/lzo
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
USE_X11= Yes
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
X11BASE=${X11BASE}
CONFIGURE_ARGS+= --enable-x11-textmode \
--x-includes=${X11BASE}/include \
--x-libraries=${X11BASE}/lib
WANTLIB+= X11
.endif
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ht
${INSTALL_DATA} ${WRKSRC}/doc/{README,ht.html} ${PREFIX}/share/doc/ht
.include <bsd.port.mk>