diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-12-23 18:16:45 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-12-23 18:16:45 +0000 |
commit | 95e11c82ce61d33bd1092b50fac28b31ec11e03d (patch) | |
tree | a1fa35163dfc916d89363afc7a26dd9f4949bcba /www-servers | |
parent | Drop old version, that does not build, wrt bug #499060 (diff) | |
download | gentoo-2-95e11c82ce61d33bd1092b50fac28b31ec11e03d.tar.gz gentoo-2-95e11c82ce61d33bd1092b50fac28b31ec11e03d.tar.bz2 gentoo-2-95e11c82ce61d33bd1092b50fac28b31ec11e03d.zip |
Add USE=ssl to control newly-added SSL support.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/pshs/ChangeLog | 5 | ||||
-rw-r--r-- | www-servers/pshs/pshs-9999.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/www-servers/pshs/ChangeLog b/www-servers/pshs/ChangeLog index cc725a6cf8e1..c7813388811d 100644 --- a/www-servers/pshs/ChangeLog +++ b/www-servers/pshs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/pshs # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/pshs/ChangeLog,v 1.11 2014/12/07 16:55:35 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/pshs/ChangeLog,v 1.12 2014/12/23 18:16:45 mgorny Exp $ + + 23 Dec 2014; Michał Górny <mgorny@gentoo.org> pshs-9999.ebuild: + Add USE=ssl to control newly-added SSL support. *pshs-0.2.4 (07 Dec 2014) diff --git a/www-servers/pshs/pshs-9999.ebuild b/www-servers/pshs/pshs-9999.ebuild index 283e42fba538..ac7fe191632a 100644 --- a/www-servers/pshs/pshs-9999.ebuild +++ b/www-servers/pshs/pshs-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/pshs/pshs-9999.ebuild,v 1.4 2014/12/01 19:19:54 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/pshs/pshs-9999.ebuild,v 1.5 2014/12/23 18:16:45 mgorny Exp $ EAPI=5 @@ -20,11 +20,13 @@ SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+magic +netlink qrcode upnp" +IUSE="+magic +netlink qrcode ssl upnp" RDEPEND=">=dev-libs/libevent-2:0= magic? ( sys-apps/file:0= ) qrcode? ( media-gfx/qrencode:0= ) + ssl? ( >=dev-libs/libevent-2.1:0=[ssl] + dev-libs/openssl:0= ) upnp? ( net-libs/miniupnpc:0= )" DEPEND="${RDEPEND} netlink? ( sys-apps/iproute2 @@ -41,6 +43,7 @@ src_configure() { $(use_enable magic libmagic) $(use_enable netlink) $(use_enable qrcode qrencode) + $(use_enable ssl) $(use_enable upnp) ) |