diff options
author | Repository mirror & CI <repomirrorci@gentoo.org> | 2019-09-23 01:25:59 +0000 |
---|---|---|
committer | Repository mirror & CI <repomirrorci@gentoo.org> | 2019-09-23 01:25:59 +0000 |
commit | e8ace042b594c69b4a5b32d0431daae7b0914626 (patch) | |
tree | 91b9cdca62b12c5f0e83782b5a6823fa978261ac | |
parent | 2019-09-22 23:46:29 UTC (diff) | |
parent | www-apps/cgisysinfo: removed -9999 logic. bump to eapi 7 (diff) | |
download | gentoo-e8ace042b594c69b4a5b32d0431daae7b0914626.tar.gz gentoo-e8ace042b594c69b4a5b32d0431daae7b0914626.tar.bz2 gentoo-e8ace042b594c69b4a5b32d0431daae7b0914626.zip |
Merge updates from master
-rw-r--r-- | www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild b/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild index 0dc2dac982cd..15aea0259587 100644 --- a/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild +++ b/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild @@ -1,22 +1,11 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI="7" inherit autotools -if [[ ${PV} = *9999* ]]; then - WANT_AUTOMAKE="1.10" - inherit git-r3 - EGIT_REPO_URI="https://github.com/rafaelmartins/${PN}" - KEYWORDS="" - DOCS=( "README.md" "AUTHORS" "NEWS" ) -else - SRC_URI="https://github.com/rafaelmartins/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" - DOCS=( "README" "AUTHORS" "NEWS" ) -fi - +SRC_URI="https://github.com/rafaelmartins/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" DESCRIPTION="A small cgi utility to show basic system information" HOMEPAGE="https://github.com/rafaelmartins/cgisysinfo" @@ -24,10 +13,14 @@ LICENSE="GPL-2" SLOT="0" IUSE="fastcgi" +KEYWORDS="~amd64 ~x86" +DOCS=( "README" "AUTHORS" "NEWS" ) + DEPEND="fastcgi? ( dev-libs/fcgi )" RDEPEND="${DEPEND}" src_prepare() { + default eautoreconf } |