freebsd-ports/deskutils/orage/Makefile
Oliver Lehmann bd46784f9e fix build when libical is enabled
Submitted By:	Ron MacNeil <macro@hotmail.com>
PR:		155339
2011-03-07 09:55:49 +00:00

60 lines
1.5 KiB
Makefile

# New ports collection makefile for: xfce4-calendar
# Date created: 2003-01-14
# Whom: Matt Lancereau <matt@rimasec.net>
#
# $FreeBSD$
#
PORTNAME= orage
PORTVERSION= 4.8.1
CATEGORIES= deskutils xfce
MASTER_SITES= ${MASTER_SITE_XFCE}
MASTER_SITE_SUBDIR=/src/apps/${PORTNAME}/${PORTVERSION:R}
DIST_SUBDIR= xfce4
MAINTAINER= oliver@FreeBSD.org
COMMENT= A calendar application to manage your time with XFce 4
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
USE_BZIP2= yes
USE_GETTEXT= yes
USE_GMAKE= yes
USE_GNOME= gnometarget gtk20 intltool intlhack pkgconfig
USE_XFCE= configenv libgui panel
USE_XORG= xext xrender xinerama xi xrandr xcursor xcomposite xdamage x11 \
xfixes
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib"
OPTIONS= BDB "Enable BDB support" off \
ICAL "Enable libical support" off
MAN1= globaltime.1 orage.1 tz_convert.1
.include <bsd.port.pre.mk>
.if defined(WITH_BDB)
CONFIGURE_ARGS+=--with-bdb4=yes --with-bdb4_dir=${LOCALBASE}
USE_BDB= 40
.else
CONFIGURE_ARGS+=--with-bdb4=no
.endif
.if defined(WITH_ICAL)
LIB_DEPENDS+= ical.44:${PORTSDIR}/devel/libical
CONFIGURE_ENV+= CFLAGS="${CLFAGS} -I${LOCALBASE}/include/libical"
PLIST_SUB+= WITH_ICAL="@comment "
.else
CONFIGURE_ARGS+=--disable-libical
PLIST_SUB+= WITH_ICAL=""
.endif
post-patch:
.if !defined(WITH_ICAL)
@${REINPLACE_CMD} -e 's|libical-|no-&|g' ${WRKSRC}/configure
.endif
@${REINPLACE_CMD} -e 's|echo aout|echo elf|g' ${WRKSRC}/configure
.include <bsd.port.post.mk>