summaryrefslogtreecommitdiff
path: root/net-im/ocaml-jabbr/Makefile
blob: fa75905014a7963f0b8003a1165187463e34a8fa (plain) (blame)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# New ports collection makefile for:	ocaml jabbr
# Date created:		Thu Jan  9 05:59:43 UTC 2003
# Whom:			Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	jabbr
PORTVERSION=	0.0.${DATE_VERSION}
CATEGORIES=	net
MASTER_SITES=	http://mikelin.mit.edu/xmpp/jabbr/
PKGNAMEPREFIX=	ocaml-
DISTNAME=	jabbr

MAINTAINER=	lioux@FreeBSD.org
COMMENT=	XML Messaging and Presence Protocol a.k.a. Jabber for Objective Caml

BUILD_DEPENDS=	ocamlc:${PORTSDIR}/lang/ocaml
RUN_DEPENDS=	${LOCALBASE}/lib/ocaml/cryptokit.cma:${PORTSDIR}/security/ocaml-cryptokit \
		${LOCALBASE}/lib/ocaml/yaxpo.cma:${PORTSDIR}/textproc/ocaml-yaxpo

# depend when building as well
BUILD_DEPENDS+=	${RUN_DEPENDS}

USE_REINPLACE=	yes

DATE_VERSION=	20021124

post-configure:
# PREFIX safeness
	@${REINPLACE_CMD} -E -e \
		's|^(INSTALLDIR).*$$|\1=${PREFIX}/lib/ocaml|' \
		${WRKSRC}/Makefile

post-build:
.ifndef(NOPORTDOCS)
	@cd ${WRKSRC} && ${MAKE} doc
.endif

pre-install:
# in pre-install to make sure we're using the correct user:group
# combo
	@${REINPLACE_CMD} -E -e \
		's|cp -f |${INSTALL_DATA} |' \
		${WRKSRC}/Makefile
# create installation dir
	@${MKDIR} ${PREFIX}/lib/ocaml

post-install:
.ifndef(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
	@${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}
.endif

.include <bsd.port.mk>