aboutsummaryrefslogtreecommitdiffstats
path: root/editors/hte/Makefile
blob: 63dd791c775f97884f5c4997e7f61f0b2382ff51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# 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 compile with gcc 3.4.2"
.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>