diff options
author | 2021-06-02 15:05:58 -0400 | |
---|---|---|
committer | 2021-06-02 15:07:51 -0400 | |
commit | e8f8eb8ab495296d1d42d2f1406fdb6f37460b13 (patch) | |
tree | d6a0099f8af3723bbd0b2e1d579bf2af6afc7b4f /dev-php | |
parent | dev-util/dialog: add 1.3.20210530 (diff) | |
download | gentoo-e8f8eb8ab495296d1d42d2f1406fdb6f37460b13.tar.gz gentoo-e8f8eb8ab495296d1d42d2f1406fdb6f37460b13.tar.bz2 gentoo-e8f8eb8ab495296d1d42d2f1406fdb6f37460b13.zip |
dev-php/zetacomponents-ConsoleTools: Revbump to fix USE dependency
Closes: https://bugs.gentoo.org/793959
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/zetacomponents-ConsoleTools/zetacomponents-ConsoleTools-1.7.2-r1.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-php/zetacomponents-ConsoleTools/zetacomponents-ConsoleTools-1.7.2-r1.ebuild b/dev-php/zetacomponents-ConsoleTools/zetacomponents-ConsoleTools-1.7.2-r1.ebuild new file mode 100644 index 000000000000..c6fb4b93279d --- /dev/null +++ b/dev-php/zetacomponents-ConsoleTools/zetacomponents-ConsoleTools-1.7.2-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="ConsoleTools" + +DESCRIPTION="A set of classes to do different actions with the console" +HOMEPAGE="https://github.com/zetacomponents/ConsoleTools" +SRC_URI="https://github.com/zetacomponents/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86" + +RDEPEND="dev-lang/php:*[iconv(-)]" + +S="${WORKDIR}/${MY_PN}-${PV}" + +src_install() { + insinto /usr/share/php/ezc/${MY_PN} + doins -r src/* + doins "${FILESDIR}"/autoload.php + + einstalldocs +} |