mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
e866d4fe98
- Fix project url.
43 lines
838 B
Makefile
43 lines
838 B
Makefile
# Ports collection makefile for: extlib
|
|
# Date created: Nov 2, 2004
|
|
# Whom: mukai
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= extlib
|
|
PORTVERSION= 1.5.1
|
|
PORTREVISION= 0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://ocaml-extlib.googlecode.com/files/
|
|
MASTER_SITE_SUBDIR= ocaml-lib
|
|
PKGNAMEPREFIX= ocaml-
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= A complete - yet small - standard library for OCaml
|
|
|
|
BUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml \
|
|
ocamlfind:${PORTSDIR}/devel/ocaml-findlib
|
|
|
|
USE_GMAKE= yes
|
|
USE_DOS2UNIX= yes
|
|
ALL_TARGET= all opt
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
ALL_TARGET+= doc
|
|
.endif
|
|
|
|
PORTDOCS= *
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/css/d' ${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|