aboutsummaryrefslogtreecommitdiff
path: root/devel/pear-I18N/Makefile
blob: cb6e2daafa7aa0c2dcddf134a9b5a4f7ef1e3c10 (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
# Ports collection makefile for:  pear-I18N
# Date created:			  30 November 2002
# Whom:				  Thierry Thomas (<thierry@pompo.net>)
#
# $FreeBSD$
#

PORTNAME=	I18N
PORTVERSION=	0.8.5
CATEGORIES=	devel www

MAINTAINER=	ports@FreeBSD.org
COMMENT=	PEAR internationalization package

BUILD_DEPENDS=	${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR
RUN_DEPENDS=	${BUILD_DEPENDS}

.include <bsd.port.pre.mk>
.include "${.CURDIR}/../../devel/pear-PEAR/Makefile.common"

MANIFEST=	Common.php Country.php Language.php Negotiator.php
EXAMPLES=	I18N_Currency.php I18N_DateTime.php I18N_Message.php \
		I18N_Message_Translate.php I18N_Message_Translate.tpl \
		I18N_Negotiator.php I18N_Number.php

do-install:
	@${MKDIR} ${PEARDIR}/I18N
.for FILE in ${MANIFEST}
	@${CP} -p ${WRKSRC}/${FILE} ${PEARDIR}/I18N
.endfor
	@${CHMOD} a-x ${PEARDIR}/I18N/*
	@${CP} -Rp ${WRKSRC}/Messages ${PEARDIR}/I18N
	@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/I18N
	@${CHMOD} a-x ${PEARDIR}/I18N/Messages/*
.if !defined(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
.for FILE in ${EXAMPLES}
	@${INSTALL_DATA} ${WRKSRC}/docs/${FILE} ${DOCSDIR}
.endfor
	@${ECHO_MSG} "===> Examples installed in ${DOCSDIR}."
.endif

.include <bsd.port.post.mk>