blob: 641550478ae399e0db28e6db583dfd4fa38ae212 (
plain)
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
|
# $NetBSD: Makefile,v 1.11 2005/07/15 18:27:53 jlam Exp $
DISTNAME= bash-doc-2.05b
PKGNAME= bash-doc-2.05.2
CATEGORIES= shells
MASTER_SITES= ${MASTER_SITE_GNU:=bash/} \
ftp://ftp.cwru.edu/pub/bash/
MAINTAINER= wiz@NetBSD.org
HOMEPAGE= http://www.gnu.org/software/bash/bash.html
COMMENT= Documentation for the GNU Bourne Again Shell
CONFLICTS= bash<=2.05nb1
WRKSRC= ${WRKDIR}/doc
NO_CONFIGURE= # defined
NO_BUILD= # defined
USE_TOOLS+= gzip
DOCDIR= ${PREFIX}/share/doc/bash
HTMLDIR= ${PREFIX}/share/doc/html/bash
do-install:
${INSTALL_DATA_DIR} ${DOCDIR}
${INSTALL_MAN} \
${WRKSRC}/article.ps \
${WRKSRC}/bashref.ps \
${WRKSRC}/article.txt \
${PREFIX}/share/doc/bash
${INSTALL_DATA_DIR} ${HTMLDIR}
${INSTALL_MAN} \
${WRKSRC}/bash.html \
${WRKSRC}/bashref.html \
${HTMLDIR}
${GZIP_CMD} ${DOCDIR}/*.ps
.include "../../mk/bsd.pkg.mk"
|