mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
15945f8122
to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit)
111 lines
2.8 KiB
Makefile
111 lines
2.8 KiB
Makefile
# Created by: Michael Johnson <ahze@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= midori
|
|
PORTVERSION= 0.5.8
|
|
PORTREVISION= 6
|
|
CATEGORIES= www xfce
|
|
MASTER_SITES= http://www.midori-browser.org/downloads/
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}_all_
|
|
DIST_SUBDIR= xfce4
|
|
|
|
MAINTAINER= xfce@FreeBSD.org
|
|
COMMENT= Lightweight web browser using WebKit browser engine
|
|
|
|
LICENSE= LGPL21 MIT
|
|
LICENSE_COMB= multi
|
|
|
|
BUILD_DEPENDS= rsvg-convert:${PORTSDIR}/graphics/librsvg2 \
|
|
valac:${PORTSDIR}/lang/vala
|
|
LIB_DEPENDS= libnotify.so:${PORTSDIR}/devel/libnotify \
|
|
libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome
|
|
RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CMAKE_ARGS= -DUSE_GCR:BOOL=OFF
|
|
|
|
#WRKSRC= ${WRKDIR}/${DISTNAME:C/([a-z]*)_([0-9\.]*)(_all_)/\1-\2/}
|
|
NO_WRKSUBDIR= yes
|
|
USE_GNOME= glib20 intltool libxml2
|
|
USE_XORG= xscrnsaver
|
|
INSTALLS_ICONS= yes
|
|
USE_LDCONFIG= yes
|
|
USES= desktop-file-utils pkgconfig cmake gettext tar:bzip2
|
|
USE_SQLITE= yes
|
|
|
|
PLIST_SUB= VERSION="${PORTVERSION:R}"
|
|
|
|
OPTIONS_DEFINE= DOCS GIR GRANITE ZEITGEIST
|
|
OPTIONS_SINGLE= GTK
|
|
OPTIONS_SINGLE_GTK= GTK2 GTK3
|
|
OPTIONS_DEFAULT= GTK2
|
|
GIR_DESC= GObject Introspection
|
|
GRANITE_DESC= Additional GTK widgets (require GTK3)
|
|
ZEITGEIST_DESC= User logs activities
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MGTK2}
|
|
LIB_DEPENDS+= libwebkitgtk-1.0.so:${PORTSDIR}/www/webkit-gtk2
|
|
USE_GNOME+= gtk20
|
|
CMAKE_ARGS+= -DUSE_GTK3:BOOL=OFF
|
|
PLIST_SUB+= ONLY_WEBKIT1=""
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGTK3}
|
|
LIB_DEPENDS+= libwebkitgtk-3.0.so:${PORTSDIR}/www/webkit-gtk3
|
|
USE_GNOME+= gtk30
|
|
CMAKE_ARGS+= -DUSE_GTK3:BOOL=ON
|
|
|
|
# Support the new WebKit2 API (>= 1.11.91)
|
|
.if exists(${LOCALBASE}/libdata/pkgconfig/webkit2gtk-3.0.pc)
|
|
CMAKE_ARGS+= -DHALF_BRO_INCOM_WEBKIT2:BOOL=ON
|
|
# Some extensions are not yet ported to the new API (WebKit2)
|
|
PLIST_SUB+= ONLY_WEBKIT1="@comment "
|
|
.else
|
|
CMAKE_ARGS+= -DHALF_BRO_INCOM_WEBKIT2:BOOL=OFF
|
|
PLIST_SUB+= ONLY_WEBKIT1=""
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGRANITE}
|
|
LIB_DEPENDS+= libgranite.so:${PORTSDIR}/x11-toolkits/granite
|
|
CMAKE_ARGS+= -DUSE_GRANITE:BOOL=ON
|
|
.else
|
|
CMAKE_ARGS+= -DUSE_GRANITE:BOOL=OFF
|
|
.endif
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
BUILD_DEPENDS+= gtkdoc-scan:${PORTSDIR}/textproc/gtk-doc
|
|
CMAKE_ARGS+= -DUSE_APIDOCS:BOOL=ON
|
|
PLIST_SUB+= APIDOCS=""
|
|
.else
|
|
CMAKE_ARGS+= -DUSE_APIDOCS:BOOL=OFF
|
|
PLIST_SUB+= APIDOCS="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MZEITGEIST}
|
|
LIB_DEPENDS+= libzeitgeist-1.0.so:${PORTSDIR}/sysutils/libzeitgeist
|
|
CMAKE_ARGS+= -DUSE_ZEITGEIST:BOOL=ON
|
|
.else
|
|
CMAKE_ARGS+= -DUSE_ZEITGEIST:BOOL=OFF
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGIR} && ${PORT_OPTIONS:MGTK2}
|
|
USE_GNOME+= introspection:build
|
|
CMAKE_ARGS+= -DUSE_GIR:BOOL=ON
|
|
PLIST_SUB+= GIR=""
|
|
.else
|
|
CMAKE_ARGS+= -DUSE_GIR:BOOL=OFF
|
|
PLIST_SUB+= GIR="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
# Avoid errors with CMake
|
|
.for dir in config extensions
|
|
@${RM} ${WRKSRC}/${dir}/*.orig
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|