1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00
freebsd-ports/finance/gnucash/Makefile

76 lines
2.3 KiB
Makefile
Raw Normal View History

# Ports collection makefile for: gnucash
# Date created: Mon Feb 03, 1997
# Whom: David O'Brien (obrien@NUXI.com)
#
1999-08-25 05:28:01 +00:00
# $FreeBSD$
#
PORTNAME= gnucash
PORTVERSION= 1.8.12
PORTREVISION= 1
CATEGORIES= finance gnome
MASTER_SITES= http://www.gnucash.org/pub/gnucash/sources/stable/ \
${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= gnucash
MAINTAINER= ports@FreeBSD.org
COMMENT= Quicken-like money and finance manager
2003-05-02 03:29:26 +00:00
LIB_DEPENDS= guile.15:${PORTSDIR}/lang/guile \
guppi.16:${PORTSDIR}/math/guppi \
popt.0:${PORTSDIR}/devel/popt \
2005-08-31 22:16:57 +00:00
ofx.2:${PORTSDIR}/finance/libofx \
2003-02-05 06:12:43 +00:00
gw-standard.0:${PORTSDIR}/devel/g-wrap
RUN_DEPENDS= ${LOCALBASE}/share/guile/slibcat:${PORTSDIR}/lang/slib-guile \
${SITE_PERL}/HTML/Base.pm:${PORTSDIR}/www/p5-HTML \
${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \
${SITE_PERL}/Date/Manip.pm:${PORTSDIR}/devel/p5-Date-Manip \
${SITE_PERL}/Finance/Quote.pm:${PORTSDIR}/finance/p5-Finance-Quote \
${SITE_PERL}/Finance/QuoteHist.pm:${PORTSDIR}/finance/p5-Finance-QuoteHist \
${X11BASE}/share/gnome/omf/gnucash-docs/gnucash-guide-C.omf:${PORTSDIR}/finance/gnucash-docs
OPTIONS= AQBANKING "AqBanking support (HBCI/OpenHBCI)" off
2000-10-05 07:10:50 +00:00
USE_X_PREFIX= yes
USE_GMAKE= yes
(1) Add new variable, XFREE86_VERSION, to specify which version of XFree86 (3 or 4) to depend to when USE_XLIB is set. XFREE86_VERSION defaults to 3 for now, but adventurous users can override it in /etc/make.conf. When XFREE86_VERSION=3, USE_XLIB will add a dependency to x11/XFree86; when it is set to 4, the dependency will be to x11/XFree86-4-libraries. When XFREE86_VERSION=4, the PKG_IGNORE_DEPENDS and ALWAYS_BUILD_DEPENDS hacks to avoid messing with XFree86 are turned off. Since XFree86 version 4 includes some software that used to be separate ports, when XFREE86_VERSION=3 the following variables are provided: USE_DGS LIB_DEPENDS on x11/dgs USE_FREETYPE LIB_DEPENDS on print/freetype USE_MESA LIB_DEPENDS on graphics/Mesa3 USE_XPM LIB_DEPENDS on graphics/xpm When XFREE86_VERSION=4, these variables have no effect. The LIB_DEPENDS in the tree for the above four ports have all been converted to the USE_* counterparts. For your information, this is the count of the number of ports: USE_DGS 0 USE_FREETYPE 16 USE_MESA 36 USE_XPM 236 There is a new variable, XAWVER, which is set to 6 when XFREE86_VERSION=3 and 7 when XFREE86_VERSION=4. This is also passed to PLIST_SUB so ports that build Xaw based shared libraries can use this variable to substitute the shlib version number. There is also a provision of using a separate mtree file for XFREE86_VERSION=4, but that part is not enabled yet. Reviewed by: the ports list Tested by: make index (XFREE86_VERSION=3 only) (2) Add hebrew to list of valid categories. Submitted by: nbm
2000-08-03 09:28:57 +00:00
USE_XPM= yes
USE_PERL5= yes
USE_GNOME= gnomeprefix gnomehack gnomeprint libglade gtkhtml libghttp intltool intlhack
2003-02-05 06:12:43 +00:00
GNU_CONFIGURE= yes
INSTALLS_SHLIB= yes
2003-02-05 06:12:43 +00:00
CONFIGURE_ARGS= --with-glib-config=${GLIB_CONFIG} \
--enable-ofx \
2003-02-05 06:12:43 +00:00
--disable-error-on-warning
2000-10-05 07:10:50 +00:00
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
2001-07-31 09:53:38 +00:00
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lintl"
2000-10-05 07:10:50 +00:00
MAN1= gnc-prices.1 gnucash.1
2003-08-17 04:14:30 +00:00
INFO= gnucash-design
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/include/db41/db_185.h)
LIB_DEPENDS+= db41.1:${PORTSDIR}/databases/db41
post-patch:
@${REINPLACE_CMD} -e "s|db4/db_185.h|db41/db_185.h|g" \
${WRKSRC}/configure
.else
LIB_DEPENDS+= db4.0:${PORTSDIR}/databases/db4
.endif
# WITH_OPENHBCI is old synonym for aqbanking option
.if defined(WITH_AQBANKING) || defined(WITH_OPENHBCI)
LIB_DEPENDS+= aqbanking.5:${PORTSDIR}/finance/aqbanking \
ktoblzcheck.4:${PORTSDIR}/finance/ktoblzcheck
CONFIGURE_ARGS+=--enable-hbci
PLIST_SUB= AQBANKING=""
.else
CONFIGURE_ARGS+=--disable-hbci
PLIST_SUB= AQBANKING="@comment "
.endif
post-configure:
@${RM} ${WRKSRC}/src/doc/design/gnucash-design.info
.include <bsd.port.post.mk>