0d18caadae
In parser_get_next_char(), make sure we are on at least the second character when testing if the current double-quote char is escaped. Might fix the crash reported in ID: 2994723 This fixes a crash in evolution. ok sebastia@ (maintainer)
37 lines
853 B
Makefile
37 lines
853 B
Makefile
# $OpenBSD: Makefile,v 1.6 2011/03/18 12:23:45 ajacoutot Exp $
|
|
|
|
COMMENT= implementation of basic iCAL protocols
|
|
|
|
DISTNAME= libical-0.44
|
|
REVISION= 2
|
|
|
|
SHARED_LIBS += ical 1.0 # .44.0
|
|
SHARED_LIBS += icalss 1.0 # .44.0
|
|
SHARED_LIBS += icalvcal 0.0 # .44.0
|
|
|
|
CATEGORIES= textproc
|
|
|
|
HOMEPAGE= http://freeassociation.sf.net/
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=freeassociation/}
|
|
|
|
MAINTAINER= Sebastian Reitenbach <sebastia@openbsd.org>
|
|
|
|
# MPL/LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/libical/
|
|
${INSTALL_DATA} ${WRKSRC}/doc/UsingLibical.txt \
|
|
${PREFIX}/share/doc/libical/
|
|
|
|
.include <bsd.port.mk>
|