aboutsummaryrefslogtreecommitdiff
path: root/textproc/tkxmlive/Makefile
blob: 0d9ac6cbc6afa15f03150d5f2edb937bc7abee0d (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
PORTNAME=		tkxmlive
PORTVERSION=		0.1.5
PORTREVISION=		2
CATEGORIES=		textproc
MASTER_SITES=		SF
DISTNAME=		tkxmlive-0.1.5-1

MAINTAINER=		nivit@FreeBSD.org
COMMENT=		Tcl/Tk XML intelligence visual editor

RUN_DEPENDS+=		${LOCALBASE}/lib/bwidget/pkgIndex.tcl:x11-toolkits/bwidget

NO_BUILD=		yes
USES=			tk:run

WRKSRC=			${WRKDIR}/${PORTNAME}

.include <bsd.port.pre.mk>

REPLACE_FILES=		${WRKSRC}/interface.tcl \
			${WRKSRC}/tkxmlive

post-patch: .SILENT
	for FILE in ${REPLACE_FILES}; do \
		${SED} -i .bak\
		-e "/%%DATADIR%%/s//${DATADIR:S/\//\\\//g}/g" \
		-e "/%%PREFIX%%/s//${PREFIX:S/\//\\\//g}/g" \
		-e "/%%WISH%%/s//${WISH:S/\//\\\//g}/g" \
		$${FILE}; \
	done;

LN_OPTS?=		-sf

FIND_ARGS1=		-type d \! -empty
FIND_ARGS2=		-type f -and -perm -a+x -and \! \
			-name "*.orig" \! -name "*.bak"
FIND_ARGS3=		-type f -and \! -perm -a+x -and \! \
			-name "*.orig" \! -name "*~" \! \
			-regex ".*[[:upper:]]+"

do-install: .SILENT
# Script and data
	cd ${WRKSRC}; \
	DIRS=$$(${FIND} . ${FIND_ARGS1}); \
	for DIR in $${DIRS}; do \
		${MKDIR} ${STAGEDIR}${DATADIR}/$${DIR}; \
	done; \
	FILES=$$(${FIND} . ${FIND_ARGS2}); \
	for FILE in $${FILES}; do \
		${INSTALL_SCRIPT} $${FILE} ${STAGEDIR}${DATADIR}/$${FILE}; \
	done; \
	FILES=$$(${FIND} -E . ${FIND_ARGS3}); \
	for FILE in $${FILES}; do \
		${INSTALL_DATA} $${FILE} ${STAGEDIR}${DATADIR}/$${FILE}; \
	done;

# Links to executables
	cd ${WRKSRC}; \
	FILES=${PORTNAME}; \
	for f in $${FILES}; do \
		${LN} ${LN_OPTS} ${DATADIR}/$${f} ${STAGEDIR}${PREFIX}/bin/$${f}; \
	done;

.include <bsd.port.post.mk>