From: Michael Orlitzky Date: Sun, 28 Jan 2018 15:34:43 +0000 (-0500) Subject: dev-php/theseer-tokenizer: minor variable cleanup. X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=adc0e21417490d1c472a3566d83e221c0f8e877f;p=gentoo.git dev-php/theseer-tokenizer: minor variable cleanup. Package-Manager: Portage-2.3.19, Repoman-2.3.6 --- diff --git a/dev-php/theseer-tokenizer/theseer-tokenizer-1.1.0.ebuild b/dev-php/theseer-tokenizer/theseer-tokenizer-1.1.0.ebuild index f4435fb25f39..2f736a8e8645 100644 --- a/dev-php/theseer-tokenizer/theseer-tokenizer-1.1.0.ebuild +++ b/dev-php/theseer-tokenizer/theseer-tokenizer-1.1.0.ebuild @@ -3,18 +3,16 @@ EAPI=6 -MY_PN="tokenizer" - -DESCRIPTION="Library for converting tokenized PHP source code into XML and other formats" +DESCRIPTION="Convert tokenized PHP source code into XML and other formats" HOMEPAGE="https://github.com/theseer/tokenizer" -SRC_URI="https://github.com/theseer/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="test" -S="${WORKDIR}/${MY_PN}-${PV}" +S="${WORKDIR}/tokenizer-${PV}" RDEPEND="dev-php/fedora-autoloader >=dev-lang/php-7.0:*[tokenizer,xmlwriter]" @@ -28,7 +26,7 @@ src_prepare() { src_install() { insinto /usr/share/php/TheSeer/Tokenizer - doins -r src/* + doins src/*.php dodoc README.md }