blob: c2ff5aec3ad0501dd4fcf5aa0c67796bdda721b9 (
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
39
|
# Created by: Bruce M. Simpson
# $FreeBSD$
PORTNAME= libstdc++_stldoc_4.2.2
PORTVERSION= 20071101
PORTREVISION= 1
CATEGORIES= lang devel
MASTER_SITES= ${MASTER_SITE_GCC}
MASTER_SITE_SUBDIR= \
libstdc++/doxygen
DISTNAME= libstdc++-html-USERS-4.2.2
MAINTAINER= ports@FreeBSD.org
COMMENT= GNU libstdc++ API documentation
USE_BZIP2= yes
NO_BUILD= yes
NO_WRKSUBDIR= yes
# This port contains too many pathnames to use for globs.
# PORTDOCS does not do the right thing when a single directory '.'
# is specified, so use a directory name.
PORTDOCS= stldoc
NO_STAGE= yes
do-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR} ${DOCSDIR}/stldoc
cd ${WRKSRC}/html_user-4.2.20071101 && \
${FIND} . -type f | \
${XARGS} -J % ${INSTALL_DATA} % ${DOCSDIR}/stldoc &&
${CHMOD} 755 ${DOCSDIR} ${DOCSDIR}/stldoc
.else
@${ECHO} "NOPORTDOCS is set -- installing nothing."
.endif
.include <bsd.port.mk>
|