# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DESCRIPTION="Refactored repack of https://github.com/andig/php-shunting-yard" HOMEPAGE="https://github.com/andig/php-shunting-yard" SRC_URI="https://github.com/andig/php-shunting-yard/archive/${PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/php-shunting-yard-${PV}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~x86" BDEPEND="dev-php/theseer-Autoload" RDEPEND=" >=dev-lang/php-5.3:* dev-php/fedora-autoloader " src_prepare() { default echo " autoload.php echo "require_once \"${EPREFIX}/usr/share/php/Fedora/Autoloader/autoload.php\";" >> autoload.php echo "\\Fedora\\Autoloader\\Autoload::addPsr0('RR\', __DIR__);" >> autoload.php } src_install() { insinto "/usr/share/php/Andig" doins -r *.php LICENSE src src/RR/* tests }