0a0986fecd
Changes in 3.0.6: Handle both COUNT and UNTIL in RRULEs Fix RRULE BYDAY with INTERVAL=2 conflict Various fuzzification fixes New publicly available function: icaltimezone_truncate_vtimezone() Add option to disable building the test suite Built-in timezones updated to tzdata2019c Changes in 3.0.5: New publicly available function: icalproperty_get_datetime_with_component() Allow reset DATE/DATE-TIME VALUE parameter for all-day events icalproperty_get_datetime_with_component() will use location as TZID fallback. New CMake option ENABLE_GTK_DOC for disabling the libical-glib developer documentation GObject Introspection - use $MAJOR-0 versioning libical-glib API is considered unstable: define LIBICAL_GLIB_UNSTABLE_API=1 before including <libical-glib/libical-glib.h> Built-in timezones updated to tzdata2019a De-fuzzifications and Coverity fixes Changes in 3.0.4: Silently fail RSCALE recurrence clauses when RSCALE is disabled Fixed icalcomponent_set_comment() and icalcomponent_set_uid() fix FREQ=MONTHLY;BYMONTH Skip UTF-8 marker when parsing Fix parsing ? in VCF files produced by Outlook Fix TZID on DATE-TIME value can override time specified in UTC CMake discovery module for ICU uses pkg-config now New publicly available function: icalparameter_kind_is_valid() Built-in timezones updated to tzdata2018e
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.23 2019/11/02 20:55:46 nia Exp $
|
|
|
|
DISTNAME= libical-3.0.6
|
|
CATEGORIES= time
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=libical/}
|
|
GITHUB_RELEASE= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/libical/libical/
|
|
COMMENT= Reference implementation of the iCalendar data type and format
|
|
LICENSE= gnu-lgpl-v2.1 OR mpl-2.0
|
|
|
|
USE_TOOLS+= perl pkg-config
|
|
USE_CMAKE= yes
|
|
|
|
CMAKE_ARGS+= -DUSE_BUILTIN_TZDATA=OFF
|
|
CMAKE_ARGS+= -DICAL_BUILD_DOCS=OFF
|
|
CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_BDB=ON
|
|
|
|
REPLACE_INTERPRETER+= perl
|
|
REPLACE.perl.old= .*/bin/tclsh
|
|
REPLACE.perl.new= ${PREFIX}/bin/tclsh
|
|
REPLACE_FILES.perl=
|
|
|
|
PKGCONFIG_OVERRIDE+= libical.pc.in
|
|
PKGCONFIG_OVERRIDE+= src/libical-glib/libical-glib.pc.in
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.if ${OPSYS} == "NetBSD"
|
|
# zone.tab file in /usr/share/zoneinfo
|
|
DEPENDS+= zonetab-[0-9]*:../../time/zonetab
|
|
.endif
|
|
|
|
# C++ is only needed for test
|
|
USE_LANGUAGES= c c++
|
|
#TEST_TARGET= check
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../textproc/icu/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|