aboutsummaryrefslogtreecommitdiffstats
path: root/editors/code-browser/Makefile
blob: cafecd78c8b217776a78226d9f80c0f653797fd0 (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
# ex:ts=8
# Ports collection makefile for:    code-browser
# Date created:         Jan 25, 2005
# Whom:             ijliao
#
# $FreeBSD$
#

PORTNAME=   code-browser
PORTVERSION=    3.17
CATEGORIES= editors
MASTER_SITES=   http://tibleiz.net/download/
DISTNAME=   ${PORTNAME}-${PORTVERSION}-src

MAINTAINER= gahr@FreeBSD.org
COMMENT=    A Folding Text Editor

WRKSRC=     ${WRKDIR}/${PORTNAME}-${PORTVERSION}

USE_GNOME=  gtk20
USE_GMAKE=  yes
MAKE_JOBS_UNSAFE=   yes

DATADIR=    ${PREFIX}/share/${PORTNAME}-3

.include <bsd.port.pre.mk>

ONLY_FOR_ARCHS=     i386 amd64 sparc64
ONLY_FOR_ARCHS_REASON=  does not build on ${ARCH}; signal 11 errors during build

.if ${ARCH} != "i386"
MAKE_ARGS+= MODE=64
.endif

post-patch:
.for file in Makefile zinc/Makefile
    @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g ; \
         s|^CC|#CC|g ; \
         s|^CFLAGS|#CFLAGS|g ; \
         s| make| $$(MAKE)|g ; \
         s|@$$(|$$(|g' ${WRKSRC}/${file}
.endfor

post-install:
.if !defined(NOPORTDOCS)
    (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* ${DOCSDIR})
    (cd ${WRKSRC}/samples && ${COPYTREE_SHARE} \* ${DOCSDIR}/samples)
.endif

.include <bsd.port.post.mk>