mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
af4a01863e
andrews@technologist.com -> will@FreeBSD.org. :-) Reminded by: asami
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
Makefile
# New ports collection makefile for: flux
|
|
# Version required: 0.3.0
|
|
# Date created: 18 Dec 1999
|
|
# Whom: Will Andrews <andrews@technologist.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= flux-0.3.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.styx.net/projects/flux/
|
|
|
|
MAINTAINER= will@FreeBSD.org
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_GMAKE= yes
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/flux/html/img
|
|
.for DIR in builds howto ideas reference
|
|
@${MKDIR} ${PREFIX}/share/flux/plain/${DIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/plain/${DIR}/* ${PREFIX}/share/flux/plain/${DIR}/
|
|
.endfor
|
|
.for DIR in tex xml
|
|
@${MKDIR} ${PREFIX}/share/flux/${DIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/${DIR}/* ${PREFIX}/share/flux/${DIR}/
|
|
.endfor
|
|
.for DOC in AUTHORS NEWS README TODO
|
|
@${INSTALL_DATA} ${WRKSRC}/${DOC} ${PREFIX}/share/flux/
|
|
.endfor
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/html/img/* ${PREFIX}/share/flux/html/img
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/html/*.html ${PREFIX}/share/flux/html
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/html/*.css ${PREFIX}/share/flux/html
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|