diff options
author | thierry <thierry@FreeBSD.org> | 2004-04-13 04:54:04 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2004-04-13 04:54:04 +0800 |
commit | 0d3c39f89f487da70df1b260938142e2021a777f (patch) | |
tree | 60bd55bff4d56a740fe70804faa1feb15e405e9f /editors/wily/Makefile | |
parent | f1fcd1668e49dba9afaaa9e669d2ad4d014a73cf (diff) | |
download | freebsd-ports-gnome-0d3c39f89f487da70df1b260938142e2021a777f.tar.gz freebsd-ports-gnome-0d3c39f89f487da70df1b260938142e2021a777f.tar.zst freebsd-ports-gnome-0d3c39f89f487da70df1b260938142e2021a777f.zip |
use DOCSDIR + some cleaning.
PR: ports/65412
Submitted by: maintainer
Approved by: pav (mentor)
Diffstat (limited to 'editors/wily/Makefile')
-rw-r--r-- | editors/wily/Makefile | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/editors/wily/Makefile b/editors/wily/Makefile index 1346d332b093..12b0f49f36d1 100644 --- a/editors/wily/Makefile +++ b/editors/wily/Makefile @@ -23,31 +23,35 @@ GNU_CONFIGURE= YES USE_GMAKE= YES MAN1= wgoto.1 win.1 wreplace.1 Tag.1 mktags.1 Man.1 -# Run the configure script in the tools directory. -post-configure: - ${RM} ${WRKSRC}/tools/win/config.cache - cd ${WRKSRC}/tools/win; ./configure - -WILYDOCDIR= ${PREFIX}/share/doc/wily -WILYTUTEDIR= ${WILYDOCDIR}/tute -WILYDOCFILES= index.html intro.html download.html credits.html FAQ.html \ +PORTDOCS= index.html intro.html download.html credits.html FAQ.html \ onepage.html user.html idioms.html C.html python.html \ hack.html AcmeVsWily.html Tcl.html \ pythonpaper.html winmanager.html auug.html one.html \ example.gif thumb.gif cartoon.gif \ FAQ.txt Tcl.txt changes.txt perl.txt \ - Credits fonts mouse\ - tute/findword tute/script tute/start tute/hello.c \ - tute/send_to_gary + Credits fonts mouse +TUTEDOCS= hello.c start typescript +TUTESHS= findword script send_to_gary + +# Run the configure script in the tools directory. +post-configure: + @${RM} ${WRKSRC}/tools/win/config.cache + cd ${WRKSRC}/tools/win; ./configure # The default Wily makefile does not install any documentation. Rectify. post-install: - ${STRIP_CMD} ${PREFIX}/bin/wily + @${STRIP_CMD} ${PREFIX}/bin/wily .if !defined(NOPORTDOCS) - ${MKDIR} ${WILYDOCDIR} ${WILYTUTEDIR} - set -e; for f in ${WILYDOCFILES}; do \ - ${INSTALL_DATA} ${WRKSRC}/Doc/$${f} ${WILYDOCDIR}/$${f}; \ - done + @${MKDIR} ${DOCSDIR}/tute +. for doc in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/Doc/${doc} ${DOCSDIR} +. endfor +. for doc in ${TUTEDOCS} + @${INSTALL_DATA} ${WRKSRC}/Doc/tute/${doc} ${DOCSDIR}/tute +. endfor +. for doc in ${TUTESHS} + @${INSTALL_SCRIPT} ${WRKSRC}/Doc/tute/${doc} ${DOCSDIR}/tute +. endfor .endif @${CAT} ${PKGMESSAGE} |