2012-01-13 Andrew McMillan <andrew@morphoss.com> * [vComponent] Fix handling for vcard peculiarities. * [vComponent] Don't escape all ; in N or ADR. * [vComponent] Allow for property parameters to be multiply set. * [AwlDbDialect] Don't treat binary strings longer than 6 characters as numbers. * Release 0.51 2012-01-04 Andrew McMillan <andrew@morphoss.com> * Release 0.50 2011-11-09 Andrew McMillan <andrew@morphoss.com> * [AWLUtilities] Ensure we flush output buffers on abort. 2011-11-02 Andrew McMillan <andrew@morphoss.com> * [vCalendar] More support for scheduling-related actions. * [vComponent] Minor performance tweaks. 2011-10-31 Andrew McMillan <andrew@morphoss.com> * [vCalendar] Add method to scrub a confidential event. 2011-10-24 Andrew McMillan <andrew@morphoss.com> * [AwlDatabase] Throw an exception when we can't rollback a transaction. * [vCalendar] New functions for updating organizer/attendee status.
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2012/01/28 15:34:06 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= awl-${LIBAWL_VERSION}
|
|
PKGNAME= ${PHP_PKG_PREFIX}-libawl-${LIBAWL_VERSION}
|
|
LIBAWL_VERSION= 0.51
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://debian.mcmillan.net.nz/packages/awl/
|
|
|
|
MAINTAINER= jym@NetBSD.org
|
|
HOMEPAGE= http://andrew.mcmillan.net.nz/projects/awl/
|
|
COMMENT= PHP Andrew's Web Libraries
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../lang/php/phpversion.mk"
|
|
|
|
.if ${PKG_PHP_VERSION} == "5"
|
|
DEPENDS+= php>=5.2.0<5.3:../../lang/php5
|
|
.endif
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-iconv-[0-9]*:../../converters/php-iconv
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-gettext-[0-9]*:../../devel/php-gettext
|
|
|
|
INSTALLATION_DIRS= ${LIBAWLDIR} ${LIBAWLDIR}/inc ${LIBAWLDIR}/dba
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/dba; \
|
|
for f in *; do \
|
|
${INSTALL_DATA} "$$f" \
|
|
${DESTDIR}${PREFIX}/${LIBAWLDIR}/dba; \
|
|
done;
|
|
|
|
cd ${WRKSRC}/inc; \
|
|
for f in *; do \
|
|
${INSTALL_DATA} "$$f" \
|
|
${DESTDIR}${PREFIX}/${LIBAWLDIR}/inc; \
|
|
done;
|
|
|
|
.include "../../devel/php-libawl/Makefile.common"
|
|
.include "../../mk/bsd.pkg.mk"
|