View | Details | Raw Unified | Return to bug 65412 | Differences between
and this patch

Collapse All | Expand All

(-)editors/wily/Makefile (-16 / +20 lines)
Lines 23-53 Link Here
23
USE_GMAKE=	YES
23
USE_GMAKE=	YES
24
MAN1=		wgoto.1 win.1 wreplace.1 Tag.1 mktags.1 Man.1
24
MAN1=		wgoto.1 win.1 wreplace.1 Tag.1 mktags.1 Man.1
25
25
26
# Run the configure script in the tools directory.
26
PORTDOCS=	index.html intro.html download.html credits.html FAQ.html \
27
post-configure:
28
	${RM} ${WRKSRC}/tools/win/config.cache
29
	cd ${WRKSRC}/tools/win; ./configure
30
31
WILYDOCDIR=	${PREFIX}/share/doc/wily
32
WILYTUTEDIR=	${WILYDOCDIR}/tute
33
WILYDOCFILES=	index.html intro.html download.html credits.html FAQ.html \
34
		onepage.html user.html idioms.html C.html python.html \
27
		onepage.html user.html idioms.html C.html python.html \
35
		hack.html AcmeVsWily.html Tcl.html \
28
		hack.html AcmeVsWily.html Tcl.html \
36
		pythonpaper.html winmanager.html auug.html one.html \
29
		pythonpaper.html winmanager.html auug.html one.html \
37
		example.gif thumb.gif cartoon.gif \
30
		example.gif thumb.gif cartoon.gif \
38
		FAQ.txt Tcl.txt changes.txt perl.txt \
31
		FAQ.txt Tcl.txt changes.txt perl.txt \
39
		Credits fonts mouse\
32
		Credits fonts mouse
40
		tute/findword tute/script tute/start tute/hello.c \
33
TUTEDOCS=	hello.c start typescript
41
		tute/send_to_gary
34
TUTESHS=	findword script send_to_gary
35
36
# Run the configure script in the tools directory.
37
post-configure:
38
	@${RM} ${WRKSRC}/tools/win/config.cache
39
	cd ${WRKSRC}/tools/win; ./configure
42
40
43
# The default Wily makefile does not install any documentation.  Rectify.
41
# The default Wily makefile does not install any documentation.  Rectify.
44
post-install:
42
post-install:
45
	${STRIP_CMD} ${PREFIX}/bin/wily
43
	@${STRIP_CMD} ${PREFIX}/bin/wily
46
.if !defined(NOPORTDOCS)
44
.if !defined(NOPORTDOCS)
47
	${MKDIR} ${WILYDOCDIR} ${WILYTUTEDIR}
45
	@${MKDIR} ${DOCSDIR}/tute
48
	set -e; for f in ${WILYDOCFILES}; do \
46
. for doc in ${PORTDOCS}
49
		${INSTALL_DATA} ${WRKSRC}/Doc/$${f} ${WILYDOCDIR}/$${f}; \
47
	@${INSTALL_DATA} ${WRKSRC}/Doc/${doc} ${DOCSDIR}
50
	done
48
. endfor
49
. for doc in ${TUTEDOCS}
50
	@${INSTALL_DATA} ${WRKSRC}/Doc/tute/${doc} ${DOCSDIR}/tute
51
. endfor
52
. for doc in ${TUTESHS}
53
	@${INSTALL_SCRIPT} ${WRKSRC}/Doc/tute/${doc} ${DOCSDIR}/tute
54
. endfor
51
.endif
55
.endif
52
	@${CAT} ${PKGMESSAGE}
56
	@${CAT} ${PKGMESSAGE}
53
57
(-)editors/wily/pkg-message (-1 / +1 lines)
Lines 6-9 Link Here
6
6
7
The wily(1) manual page has not been installed because it's out-of-date.
7
The wily(1) manual page has not been installed because it's out-of-date.
8
8
9
Please refer to "${PREFIX}/share/doc/wily/documentation".
9
Please refer to "${PREFIX}/share/doc/wily/" documentation.
(-)editors/wily/pkg-plist (-34 / +7 lines)
Lines 5-41 Link Here
5
bin/wily
5
bin/wily
6
bin/win
6
bin/win
7
bin/wreplace
7
bin/wreplace
8
share/doc/wily/index.html
8
%%PORTDOCS%%%%DOCSDIR%%/tute/findword
9
share/doc/wily/intro.html
9
%%PORTDOCS%%%%DOCSDIR%%/tute/hello.c
10
share/doc/wily/download.html
10
%%PORTDOCS%%%%DOCSDIR%%/tute/script
11
share/doc/wily/credits.html
11
%%PORTDOCS%%%%DOCSDIR%%/tute/send_to_gary
12
share/doc/wily/FAQ.html
12
%%PORTDOCS%%%%DOCSDIR%%/tute/start
13
share/doc/wily/onepage.html
13
%%PORTDOCS%%%%DOCSDIR%%/tute/typescript
14
share/doc/wily/user.html
14
%%PORTDOCS%%@dirrm %%DOCSDIR%%/tute
15
share/doc/wily/idioms.html
16
share/doc/wily/C.html
17
share/doc/wily/python.html
18
share/doc/wily/hack.html
19
share/doc/wily/AcmeVsWily.html
20
share/doc/wily/Tcl.html
21
share/doc/wily/pythonpaper.html
22
share/doc/wily/winmanager.html
23
share/doc/wily/auug.html
24
share/doc/wily/one.html
25
share/doc/wily/example.gif
26
share/doc/wily/thumb.gif
27
share/doc/wily/cartoon.gif
28
share/doc/wily/FAQ.txt
29
share/doc/wily/Tcl.txt
30
share/doc/wily/changes.txt
31
share/doc/wily/perl.txt
32
share/doc/wily/Credits
33
share/doc/wily/fonts
34
share/doc/wily/mouse
35
share/doc/wily/tute/findword
36
share/doc/wily/tute/script
37
share/doc/wily/tute/start
38
share/doc/wily/tute/hello.c
39
share/doc/wily/tute/send_to_gary
40
@dirrm share/doc/wily/tute
41
@dirrm share/doc/wily

Return to bug 65412