diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2017-03-26 12:54:28 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2017-03-26 12:54:28 -0400 |
commit | 0e606993ffaec517db6ea4eccab94bb46fcc94cf (patch) | |
tree | 01ad9662885db31138932d23b5ce7385d2095084 /x11-plugins/gkwebmon/gkwebmon-0.2-r2.ebuild | |
parent | x11-plugins/pidgin-indicator: remove unused version 0.9. (diff) | |
download | gentoo-0e606993ffaec517db6ea4eccab94bb46fcc94cf.tar.gz gentoo-0e606993ffaec517db6ea4eccab94bb46fcc94cf.tar.bz2 gentoo-0e606993ffaec517db6ea4eccab94bb46fcc94cf.zip |
x11-plugins/gkwebmon: new revision to fix missing USE dependency.
This package requires app-admin/gkrellm to be built with "X"
support. Now it will be.
Gentoo-Bug: 613670
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'x11-plugins/gkwebmon/gkwebmon-0.2-r2.ebuild')
-rw-r--r-- | x11-plugins/gkwebmon/gkwebmon-0.2-r2.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/x11-plugins/gkwebmon/gkwebmon-0.2-r2.ebuild b/x11-plugins/gkwebmon/gkwebmon-0.2-r2.ebuild new file mode 100644 index 000000000000..df88d14d71ea --- /dev/null +++ b/x11-plugins/gkwebmon/gkwebmon-0.2-r2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gkrellm-plugin toolchain-funcs + +DESCRIPTION="A web monitor plugin for GKrellM2" +HOMEPAGE="http://${PN}.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="" + +# The Makefile links with -lssl. +COMMON_DEPEND="app-admin/gkrellm[X] + dev-libs/openssl:0" + +DEPEND+=" ${COMMON_DEPEND}" +RDEPEND+=" ${COMMON_DEPEND}" + +PATCHES=( "${FILESDIR}/respect-cc-cflags-ldflags.patch" ) + +src_compile() { + emake CC="$(tc-getCC)" +} |