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 |
|