diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2012-12-14 04:33:06 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2012-12-14 04:33:06 +0800 |
commit | add412923c6b9f44597ef5d8e586c6999d04aeae (patch) | |
tree | 5d32a289fcd54f74eafa89ee31136ad75fb70c89 /www/epiphany-extensions/Makefile | |
parent | 16adc0b8b480aadfbffe2443d6ba9bdcc9d52c08 (diff) | |
download | marcuscom-ports-add412923c6b9f44597ef5d8e586c6999d04aeae.tar marcuscom-ports-add412923c6b9f44597ef5d8e586c6999d04aeae.tar.gz marcuscom-ports-add412923c6b9f44597ef5d8e586c6999d04aeae.tar.bz2 marcuscom-ports-add412923c6b9f44597ef5d8e586c6999d04aeae.tar.lz marcuscom-ports-add412923c6b9f44597ef5d8e586c6999d04aeae.tar.xz marcuscom-ports-add412923c6b9f44597ef5d8e586c6999d04aeae.tar.zst marcuscom-ports-add412923c6b9f44597ef5d8e586c6999d04aeae.zip |
Chase pcre update. Remove library versioning from ports that still mention pcre.1.
While here update to new header format and convert to OptionsNG.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@17164 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/epiphany-extensions/Makefile')
-rw-r--r-- | www/epiphany-extensions/Makefile | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/www/epiphany-extensions/Makefile b/www/epiphany-extensions/Makefile index 2d82a0b3f..086635814 100644 --- a/www/epiphany-extensions/Makefile +++ b/www/epiphany-extensions/Makefile @@ -1,10 +1,6 @@ -# Ports collection Makefile for: epiphany-extensions -# Date created: 30 December 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# +# Created by: Joe Marcus Clarke <marcus@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/www/epiphany-extensions/Makefile,v 1.138 2012/08/17 19:06:47 kwm Exp $ -# +# $MCom: ports/www/epiphany-extensions/Makefile,v 1.139 2012/09/01 23:02:13 mezz Exp $ PORTNAME= epiphany-extensions PORTVERSION= 2.30.2 @@ -17,8 +13,8 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= A set of add-ons for the Epiphany web browser BUILD_DEPENDS= epiphany:${PORTSDIR}/www/epiphany -LIB_DEPENDS= pcre.1:${PORTSDIR}/devel/pcre \ - webkitgtk-1.0.0:${PORTSDIR}/www/webkit-gtk2 +LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre \ + webkitgtk-1.0:${PORTSDIR}/www/webkit-gtk2 RUN_DEPENDS= epiphany:${PORTSDIR}/www/epiphany CONFLICTS= epiphany-extensions-3.[0-9]* @@ -37,11 +33,12 @@ EPHY_VERSION= ${PORTVERSION:R} PLIST_SUB= VERSION=${EPHY_VERSION} EPHY_VERSION=${EPHY_VERSION} -OPTIONS= OPENSP "Enable OpenSP SGML support" off +OPTIONS_DEFINE= OPENSP +OPENSP_DESC= OpenSP SGML support -.include <bsd.port.pre.mk> +.include <bsd.port.optioins.mk> -.if defined(WITH_OPENSP) +.if ${PORT_OPTIONS:MOPENSP} CONFIGURE_ARGS+= --enable-opensp=yes LIB_DEPENDS+= osp.5:${PORTSDIR}/textproc/opensp .else @@ -56,4 +53,4 @@ post-patch: -e 's|EPIPHANY_API_VERSION=2.29|EPIPHANY_API_VERSION=2.30|g' \ ${WRKSRC}/configure -.include <bsd.port.post.mk> +.include <bsd.port.mk> |