01dfcbe035
This is a bugfix release so no buildlink change. ChangeLog: New Features in Qore * added broken-logic-precedence warning. Bug Fixes in Qore * fixed documentation regarding escaping of characters in strings and added a parse exception in case of trying to escape octal values in range 400-777 (issue 50) * fixed a crashing bug where Datasource::getConfigString() was called without a connection, also could crash in an implicit internal call to this method with the DatasourcePool class when connections were lost and the warning callback should be called (issue 1992) * fixed a bug where Datasource::getConfigHash() returned different values depending on if the object was connected or not (issue 1994)
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.14 2017/07/30 19:27:08 nros Exp $
|
|
|
|
DISTNAME= qore-0.8.12.11
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
GITHUB_RELEASE= release-${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= nros@NetBSD.org
|
|
COMMENT= Qore programming language
|
|
HOMEPAGE= http://www.qore.org/
|
|
LICENSE= gnu-gpl-v2 OR gnu-lgpl-v2.1 OR mit
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= bash bison flex gmake pax
|
|
USE_LANGUAGES= c c99 c++
|
|
PTHREAD_OPTS+= native
|
|
FLEX_REQD= 2.5.31
|
|
|
|
PKGCONFIG_OVERRIDE+= qore.pc.in
|
|
REPLACE_QORE= bin/qget bin/rest bin/schema-reverse
|
|
REPLACE_QORE+= bin/sfrest bin/sqlutil doxygen/qdx
|
|
|
|
CONFIGURE_ARGS+=--with-libsuffix=""
|
|
|
|
#pre-configure:
|
|
# set -e; cd ${WRKSRC}; \
|
|
# autoheader; autoconf
|
|
|
|
#This is needed in order to comply the with MIT license and binary distribution
|
|
#Install docs
|
|
licensedir= share/doc/qore/license
|
|
INSTALLATION_DIRS+= ${licensedir}
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING.GPL ${DESTDIR}${PREFIX}/${licensedir}
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING.LGPL ${DESTDIR}${PREFIX}/${licensedir}
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING.MIT ${DESTDIR}${PREFIX}/${licensedir}
|
|
${INSTALL_DATA} ${WRKSRC}/README-LICENSE ${DESTDIR}${PREFIX}/${licensedir}
|
|
cd ${WRKSRC}/docs/ && ${PAX} -wr * ${DESTDIR}${PREFIX}/share/doc/qore
|
|
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DESTDIR}${PREFIX}/share/doc/qore
|
|
|
|
.include "application.mk"
|
|
.include "options.mk"
|
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../math/mpfr/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|