diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2018-01-28 10:34:43 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2018-01-28 11:45:53 -0500 |
commit | adc0e21417490d1c472a3566d83e221c0f8e877f (patch) | |
tree | d47d271d2154521203e3188003e25cd316d3b4ad | |
parent | dev-php/theseer-tokenizer: new package (diff) | |
download | gentoo-adc0e21417490d1c472a3566d83e221c0f8e877f.tar.gz gentoo-adc0e21417490d1c472a3566d83e221c0f8e877f.tar.bz2 gentoo-adc0e21417490d1c472a3566d83e221c0f8e877f.zip |
dev-php/theseer-tokenizer: minor variable cleanup.
Package-Manager: Portage-2.3.19, Repoman-2.3.6
-rw-r--r-- | dev-php/theseer-tokenizer/theseer-tokenizer-1.1.0.ebuild | 10 |
1 files changed, 4 insertions, 6 deletions
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 } |