diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-11-10 18:07:49 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-11-10 18:07:49 +0000 |
commit | fc332e9143f1cacac506b35e6498715a337c1289 (patch) | |
tree | 164ce08c795ecec787f64280de6b6bb03c1d7417 /finance/libofx/Makefile | |
parent | 38b0331bd1f50d098075eb03df63f7f3c39fa6c9 (diff) | |
download | ports-fc332e9143f1cacac506b35e6498715a337c1289.tar.gz ports-fc332e9143f1cacac506b35e6498715a337c1289.zip |
Update to 0.6.5 and unbreak with the new OpenSP.
PR: 59125
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Notes
Notes:
svn path=/head/; revision=93673
Diffstat (limited to 'finance/libofx/Makefile')
-rw-r--r-- | finance/libofx/Makefile | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/finance/libofx/Makefile b/finance/libofx/Makefile index 8b8eff30de60..1b68d50950a7 100644 --- a/finance/libofx/Makefile +++ b/finance/libofx/Makefile @@ -6,19 +6,33 @@ # PORTNAME= libofx -PORTVERSION= 0.6.4 +PORTVERSION= 0.6.5 CATEGORIES= finance MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= libofx +MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= OpenSource implementation of the OFX (Open Financial eXchange) LIB_DEPENDS= osp.3:${PORTSDIR}/textproc/opensp -INSTALLS_SHLIB= yes USE_LIBTOOL= yes -CONFIGURE_ARGS= --with-opensp-includes=${LOCALBASE}/include/OpenSP \ - --with-opensp-libs=${LOCALBASE}/lib +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" +INSTALLS_SHLIB= yes + +CPPFLAGS= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib -lintl + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for file in AUTHORS ChangeLog INSTALL NEWS README totest.txt + ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} +.endfor + ${TAR} -C ${WRKSRC}/doc -cf - html | \ + ${TAR} -C ${DOCSDIR} --unlink -xf - + @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} +.endif .include <bsd.port.mk> |