mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
b50a4b0708
- Mk/bsd.database.mk rewrite, new default to db5. - db6 is eligible by default only if installed on the system. - Bump PORTREVISION of all ports that directly depend on BerkeleyDB or where USE_BDB is found in the port's directory - Patch a few ports such that they will pick up or work with newer versions. - Add UPDATING entry - Drive-by format fix for pks - Drop BerkeleyDB option from mail/popular for now, requires more work. - Exp-run logs linked from the PR below. - Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes for new Berkeley DB, but are untested. NOTE: please read UPDATING and the Wiki page before proceeding! Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup PR: 192690 Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports)
75 lines
1.9 KiB
Makefile
75 lines
1.9 KiB
Makefile
# Created by: Matt Lancereau <matt@rimasec.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= orage
|
|
PORTVERSION= 4.10.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= deskutils xfce
|
|
MASTER_SITES= ${MASTER_SITE_XFCE}
|
|
MASTER_SITE_SUBDIR=src/apps/${PORTNAME}/${PORTVERSION:R}
|
|
DIST_SUBDIR= xfce4
|
|
|
|
MAINTAINER= xfce@FreeBSD.org
|
|
COMMENT= Calendar application for the Xfce Desktop
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt \
|
|
libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_ICONS= yes
|
|
USES= pkgconfig gettext desktop-file-utils gmake tar:bzip2
|
|
USE_GNOME= gtk20 intltool intlhack
|
|
USE_XFCE= configenv libmenu panel
|
|
USE_XORG= xext xrender xinerama xi xrandr xcursor xcomposite xdamage x11 \
|
|
xfixes
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
OPTIONS_DEFINE= BDB ICAL NOTIFY
|
|
OPTIONS_DEFAULT= NOTIFY
|
|
|
|
ICAL_DESC= iCalendar support
|
|
|
|
CONFIGURE_ARGS= --enable-dbus
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MBDB}
|
|
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-configure
|
|
CONFIGURE_ARGS+=--with-bdb4=yes --with-bdb4_dir=${LOCALBASE}
|
|
USE_BDB= yes
|
|
.else
|
|
CONFIGURE_ARGS+=--with-bdb4=no
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MICAL}
|
|
CONFIGURE_ARGS+=--enable-libical
|
|
LIB_DEPENDS+= libical.so:${PORTSDIR}/devel/libical
|
|
CFLAGS+= -I${LOCALBASE}/include/libical
|
|
PLIST_SUB+= WITH_ICAL="@comment "
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-libical
|
|
PLIST_SUB+= WITH_ICAL=""
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNOTIFY}
|
|
LIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify
|
|
CONFIGURE_ARGS+=--enable-libnotify
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-libnotify
|
|
.endif
|
|
|
|
post-patch:
|
|
.if ${PORT_OPTIONS:MBDB}
|
|
@${REINPLACE_CMD} -e 's|%%BDB_INCLUDE_DIR%%|${BDB_INCLUDE_DIR}|g ; \
|
|
s|%%BDB_LIB_DIR%%|${BDB_LIB_DIR}|g ; \
|
|
s|%%BDB_LIB_NAME%%|${BDB_LIB_NAME}|g' ${WRKSRC}/configure
|
|
.endif
|
|
@${REINPLACE_CMD} -e 's|echo aout|echo elf|g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|(datadir)/orage/doc/C|(datadir)/doc/orage/C|' \
|
|
${WRKSRC}/doc/C/Makefile.in \
|
|
${WRKSRC}/doc/C/images/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|