blob: 6284c3e30acb610a4f31a20048eb0cc58d07d248 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Created by: nivit@users.sourceforge.net
# $FreeBSD$
PORTNAME= tkshape
PORTVERSION= 0.4
PORTREVISION= 2
CATEGORIES= x11-toolkits
MASTER_SITES= http://www.cs.man.ac.uk/~fellowsd/tcl/ \
http://nivi.interfree.it/distfiles/${PORTNAME}/${PORTVERSION}/
DISTNAME= shape${PORTVERSION:S/.//g}
MAINTAINER= nivit@FreeBSD.org
COMMENT= A Tk library to access to X Shaped Window Extension
USES= gmake tk:85+
USE_XORG= x11 xext
PLIST_SUB= PORTNAME="${PORTNAME}"
USE_LDCONFIG= yes
OPTIONS_DEFINE= MANPAGES
OPTIONS_DEFAULT= MANPAGES
MANPAGES_DESC= Install manual pages
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MMANPAGES}
PLIST_SUB+= MAN=""
.else
PLIST_SUB+= MAN="@comment "
.endif
WRKSRC= ${WRKDIR}/${PORTNAME:C/^tk//1}${PORTVERSION}
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-tclconf=${TCL_LIBDIR} \
--with-tkconf=${TK_LIBDIR}
CONFIGURE_WRKSRC= ${WRKSRC}/unix
BUILD_WRKSRC= ${CONFIGURE_WRKSRC}
WHERE_REPLACE= ${WRKSRC}/demos
REPLACE_FILES= ${WHERE_REPLACE}/dragger.tcl \
${WHERE_REPLACE}/fancytext.tcl \
${WHERE_REPLACE}/fingerprint.tcl
post-patch: .SILENT
for FILE in ${REPLACE_FILES}; do \
${REINPLACE_CMD} -e "/%%WISH%%/s//${WISH:S/\//\\\//g}/g" \
$${FILE}; \
done;
${REINPLACE_CMD} -E 's,(^CFLAGS = )-g,\1${CFLAGS},' \
${BUILD_WRKSRC}/Makefile.in
FIND_DIRS= -type d \! -empty
FIND_DEMOS= demos -type f -and -name "*.tcl" -maxdepth 1
FIND_IMAGES= demos/images -type f \
-and \( -name "*.gif" -or -name "*.xbm" \
-or -name "*.cur" \)
TARGET_DIR= ${STAGEDIR}${PREFIX}/lib/${PORTNAME}
MANPAGES= CombShape.3 QuryShape.3 shape.n
do-install:
# script, library
cd ${WRKSRC}; \
${MKDIR} ${TARGET_DIR}/demos; \
FILES=$$(${FIND} ${FIND_DEMOS}); \
for FILE in $${FILES}; do \
${INSTALL_SCRIPT} $${FILE} ${TARGET_DIR}/$${FILE}; \
done; \
${INSTALL_SCRIPT} unix/libshape04.so.1.0 ${TARGET_DIR}/libshape04.so.1;
# images, pkgIndex.tcl
cd ${WRKSRC}; \
${MKDIR} ${TARGET_DIR}/demos/images; \
FILES=$$(${FIND} ${FIND_IMAGES}); \
for FILE in $${FILES}; do \
${INSTALL_DATA} $${FILE} ${TARGET_DIR}/$${FILE}; \
done; \
${INSTALL_DATA} unix/pkgIndex.tcl ${TARGET_DIR}/pkgIndex.tcl;
# manpages
.if ${PORT_OPTIONS:MMANPAGES}
cd ${WRKSRC}; \
for m in ${MANPAGES} ; do \
s=$${m##*.}; \
${INSTALL_MAN} doc/$${m} ${STAGEDIR}${PREFIX}/man/man$${s}/$${m}; \
done;
.endif
.include <bsd.port.mk>
|