mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# New ports collection makefile for: libofx
|
|
# Date created: February 16 2003
|
|
# Whom: Glenn Johnson <glennpj@charter.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libofx
|
|
PORTVERSION= 0.9.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= finance
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= OpenSource implementation of the OFX (Open Financial eXchange)
|
|
|
|
LIB_DEPENDS= curl.5:${PORTSDIR}/ftp/curl \
|
|
xml\\+\\+-1.0.1:${PORTSDIR}/textproc/libxml++ \
|
|
osp.5:${PORTSDIR}/textproc/opensp
|
|
|
|
USE_ICONV= yes
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= aclocal:110 autoheader:262 automake:110 autoconf:262 libtool:22
|
|
ACLOCAL_ARGS= -I m4
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_ARGS= --disable-doxygen --disable-dot --disable-gengetopt \
|
|
--with-opensp-includes=${LOCALBASE}/include/OpenSP
|
|
USE_LDCONFIG= yes
|
|
|
|
CPPFLAGS= -I${LOCALBASE}/include
|
|
LDFLAGS= -L${LOCALBASE}/lib
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in AUTHORS ChangeLog INSTALL NEWS README totest.txt
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
@(cd ${WRKSRC}/doc; ${COPYTREE_SHARE} html ${DOCSDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|