diff options
author | smb <smb@pkgsrc.org> | 2008-01-08 15:14:25 +0000 |
---|---|---|
committer | smb <smb@pkgsrc.org> | 2008-01-08 15:14:25 +0000 |
commit | 2e4ede884aa938d4080a5da4dacc8ad2cd4762b9 (patch) | |
tree | abc1884776b0c5594f8425ec32767055f68bdcea /www/liferea | |
parent | 239a1650c5d98633347c143622c26419d9e27674 (diff) | |
download | pkgsrc-2e4ede884aa938d4080a5da4dacc8ad2cd4762b9.tar.gz |
Add options to liferea to permit selection of different rendering engines
Diffstat (limited to 'www/liferea')
-rw-r--r-- | www/liferea/Makefile | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/www/liferea/Makefile b/www/liferea/Makefile index 28e546eccec..e397efa8329 100644 --- a/www/liferea/Makefile +++ b/www/liferea/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.64 2008/01/06 15:53:43 drochner Exp $ +# $NetBSD: Makefile,v 1.65 2008/01/08 15:14:25 smb Exp $ DISTNAME= liferea-1.4.10 CATEGORIES= www @@ -14,6 +14,14 @@ USE_DIRS+= xdg-1.1 USE_TOOLS+= gmake pkg-config msgfmt perl intltool USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes +USE_LANGUAGES+= c++ +USE_LANGUAGES+= c + +PKG_OPTIONS_VAR= PKG_OPTIONS.liferea +PKG_OPTIONS_REQUIRED_GROUPS= renderer +PKG_OPTIONS_GROUP.renderer= liferea-gtkhtml liferea-seamonkey liferea-firefox +PKG_SUGGESTED_OPTIONS= liferea-gtkhtml +.include "../../mk/bsd.options.mk" SHLIBTOOL_OVERRIDE= # empty @@ -31,7 +39,15 @@ GCONF_SCHEMAS= liferea.schemas .include "../../sysutils/libnotify/buildlink3.mk" .include "../../textproc/libxml2/buildlink3.mk" .include "../../textproc/libxslt/buildlink3.mk" +.if !empty(PKG_OPTIONS:Mliferea-gtkhtml) .include "../../www/libgtkhtml/buildlink3.mk" +.endif +.if !empty(PKG_OPTIONS:Mliferea-firefox) +.include "../../www/firefox/buildlink3.mk" +.endif +.if !empty(PKG_OPTIONS:Mliferea-seamonkey) +.include "../../www/seamonkey/buildlink3.mk" +.endif .include "../../x11/libSM/buildlink3.mk" .include "../../x11/gtk2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |