blob: 03297c443771745ea5cc896d25125578d0701d93 (
plain)
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
56
57
58
59
60
61
62
63
64
|
# New ports collection makefile for: pear-Date_Holidays
# Date created: 2006-06-16
# Whom: Thomas Abthorpe <thomas@goodking.ca>
#
# $FreeBSD$
#
PORTNAME= Date_Holidays
PORTVERSION= 0.20.0
CATEGORIES= devel www pear
MAINTAINER= tabthorpe@FreeBSD.org
COMMENT= PEAR driver based class to calculate holidays
BUILD_DEPENDS= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \
${PEARDIR}/XML/Serializer.php:${PORTSDIR}/devel/pear-XML_Serializer
RUN_DEPENDS= ${BUILD_DEPENDS}
CATEGORY= Date
FILES= Holidays.php \
Holidays/Holiday.php \
Holidays/Filter/Whitelist.php \
Holidays/Filter/Composite.php \
Holidays/Filter/Blacklist.php \
Holidays/Filter.php \
Holidays/Driver/Jewish.php \
Holidays/Driver/Composite.php \
Holidays/Driver/Christian.php \
Holidays/Driver.php \
lang/Christian/it_IT.xml \
lang/Christian/it_IT.ser \
lang/Christian/fr_FR.xml \
lang/Christian/fr_FR.ser \
lang/Christian/en_EN.xml \
lang/Christian/en_EN.ser \
lang/Christian/de_DE.xml \
lang/Christian/de_DE.ser \
EXAMPLES= addingTranslations.php creating_drivers.php \
fetchingInstalledDrivers.php languagefile-with-properties.xml \
usingCompositeDriver.php usingStandaloneDriver.php
TESTS= AllTests.php AllTestsUndeployed.php \
Date_Holidays_Bugfix_Retests_TestSuite.php \
Date_Holidays_Driver_Brazil_TestSuite.php \
Date_Holidays_Driver_Christian_TestSuite.php \
Date_Holidays_Driver_Jewish_TestSuite.php \
Date_Holidays_Driver_TestSuite.php \
Date_Holidays_Driver_TestSuite.xml \
Date_Holidays_TestSuite.php \
Example.php testHolidays2005stampsAndSavingsDay.php \
test_getHolidays.php test_missingLocale.php
LATEST_LINK= pear-Date_Holidays
OPTIONS= PEAR_CONSOLE_GETARGS "devel/pear-Console_Getargs" off
.include <bsd.port.pre.mk>
.if defined(PEAR_CONSOLE_GETARGS) || defined(WITH_PEAR_CONSOLE_GETARGS)
BUILD_DEPENDS+=${PEARDIR}/Console/Getargs.php:${PORTSDIR}/devel/pear-Console_Getargs
.endif
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.post.mk>
|