mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
67e7b0ae83
Flux is intended to be a general-use high-level C library that supports various purposes, from CGI to IRC to sockets, ... It's sort of an addendum to the standard C libraries. PR: 15799 Submitted by: Will Andrews <andrews@technologist.com>
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= andrews@technologist.com
|
|
|
|
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>
|