mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
2e0669cf63
Bugfix to address buffer overflow (CVE-2017-2816) MFH: 2017Q4 Security: 58fafead-cd13-472f-a9bd-d0173ba1b04c
37 lines
916 B
Makefile
37 lines
916 B
Makefile
# Created by: Glenn Johnson <glennpj@charter.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libofx
|
|
PORTVERSION= 0.9.12
|
|
CATEGORIES= finance
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= OpenSource implementation of the OFX (Open Financial eXchange)
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libcurl.so:ftp/curl \
|
|
libxml++-2.6.so:textproc/libxml++26 \
|
|
libosp.so:textproc/opensp
|
|
|
|
USES= gettext-runtime gmake iconv libtool localbase pathfix pkgconfig \
|
|
compiler:c++11-lang
|
|
USE_CXXSTD= c++11
|
|
USE_GNOME= glib20 glibmm libsigc++20 libxml2
|
|
CONFIGURE_ARGS= --disable-doxygen --disable-dot --disable-gengetopt \
|
|
--with-opensp-includes=${LOCALBASE}/include/OpenSP \
|
|
--with-opensp-libs=${LOCALBASE}/lib
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${RM} ${STAGEDIR}${DOCSDIR}/COPYING
|
|
|
|
.include <bsd.port.mk>
|