1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-07 22:58:11 +00:00
freebsd-ports/devel/flux/Makefile
Satoshi Asami ffb21b5654 Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in the
previous commit message to bsd.port.mk, which said INSTALL_SHLIBS.  Boo.)

Line up the rhs of variable assignments nicely.  Remove a couple of extra
whitespaces while I'm here.

Suggested by:	 sobomax
2000-06-16 21:52:40 +00:00

39 lines
1.0 KiB
Makefile

# New ports collection makefile for: flux
# Date created: 18 Dec 1999
# Whom: Will Andrews <andrews@technologist.com>
#
# $FreeBSD$
#
PORTNAME= flux
PORTVERSION= 0.3.0
CATEGORIES= devel
MASTER_SITES= ftp://ftp.styx.net/projects/flux/
MAINTAINER= will@FreeBSD.org
USE_LIBTOOL= yes
INSTALLS_SHLIB= 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>