diff options
Diffstat (limited to 'app-eselect/eselect-php')
-rw-r--r-- | app-eselect/eselect-php/Manifest | 2 | ||||
-rw-r--r-- | app-eselect/eselect-php/eselect-php-0.9.8.ebuild | 39 |
2 files changed, 0 insertions, 41 deletions
diff --git a/app-eselect/eselect-php/Manifest b/app-eselect/eselect-php/Manifest index 4defbd25a2dc..48f44060a0ab 100644 --- a/app-eselect/eselect-php/Manifest +++ b/app-eselect/eselect-php/Manifest @@ -1,6 +1,4 @@ -DIST eselect-php-0.9.8.tar.xz 62048 BLAKE2B 7938053be5d3893d1b3b399decb9fb90ecc1d266edcee7192511c63ccdd21fb0e7deac2b654db3dc05f56de7c757bb34ed813a026fc711adc4ab05b373f3d275 SHA512 c947d303dc0406539017f3779a7ee1e51e670ce73a47e1a6722f8403573a5dae0825c3b6932d12123bab77187a515023b69fc771f24522480e74fa0287377c3c DIST eselect-php-0.9.9.tar.xz 54632 BLAKE2B bdd8cb3fafbef057e068c57b413bf3ff03be324c9d0e4938342204780cc15ee9fd415757b1293892032901fb041746cc59f912783cea9dc04b52559d3d6f2415 SHA512 9a86986f9be05fe3c0796bf10dae9de7c9c2c57944d24ea202c6537ad185e4eea915d67befee27ce1c0e3908890661bf384bd54b1b421ec2b928776485da0364 -EBUILD eselect-php-0.9.8.ebuild 1218 BLAKE2B 3d9617af416b78cd017915bfb037a5449cbd45b18180dd28591188e2c68163f9c7e43ee753de05da455b20098f0f5cc6dff5f16ecc31958d61d84e747957d12a SHA512 37012bc6087ac2947916bbc39b6ed2be7af2a59d03d61e75e9e34587f8c230d07ef12a2bc82fa73fa317ae3c0ab8b91d1300583cfd9dfca851f10c5b338f163d EBUILD eselect-php-0.9.9.ebuild 1213 BLAKE2B 8551e06e9ec6fa3a7cb8ca00a78620069969e9167793eb5876d330d4b907565559a4106c7067f68c7e21199512806a9c897878d1011c6f47d9975a86ba5154b1 SHA512 801f9d2c8046630abfd1b887802dc05c90309386bd6359adaf1289908723c40b18760671e762aec4cbe7832b86a35050100795f60287f9aacb4a81762a40613a EBUILD eselect-php-9999.ebuild 1153 BLAKE2B 12ba252dbc38e5e6ca7cc87299c6e8da2c19ca5e2550b5a1528fe07885a4389cbd65064eb96b4ae75385501b9b4ece505a16033cdc582afedc9fac42827ae5d3 SHA512 193f227403fa842c94e1c6744da76fa125883fadfd07a0fcff0dfd6f5926363e2514f9531be57e555cb96bbb1837e14a9c63482dd2d7e8e50cb89fd71fd8aa1b MISC metadata.xml 469 BLAKE2B 5673844c7acdf9d8c0670aa386e49864d4d96a393e0589561a6d31cc9ced135119622d35cf8e5296adeae1bcb5e5b3f23fc75f447bc288547a1bda6dc0266cc7 SHA512 f2570073ee901fd2ac92ca20bd0faca521007eb57b9fd9368b99dc5d8f97131f0eb044d75cf16b8b0ef600f2d6368498a968552b4696b2d46cf040529c05d15e diff --git a/app-eselect/eselect-php/eselect-php-0.9.8.ebuild b/app-eselect/eselect-php/eselect-php-0.9.8.ebuild deleted file mode 100644 index ccd4fa89b0df..000000000000 --- a/app-eselect/eselect-php/eselect-php-0.9.8.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -TMPFILES_OPTIONAL="yes" -inherit tmpfiles - -DESCRIPTION="PHP eselect module" -HOMEPAGE="https://gitweb.gentoo.org/proj/eselect-php.git/" -SRC_URI="https://dev.gentoo.org/~grknight/distfiles/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="fpm apache2" - -# The "DirectoryIndex" line in 70_mod_php.conf requires mod_dir. -RDEPEND="app-admin/eselect - apache2? ( www-servers/apache[apache2_modules_dir] ) - fpm? ( virtual/tmpfiles )" - -src_configure() { - # We expect localstatedir to be "var"ish, not "var/lib"ish, because - # that's what PHP upstream expects. See for example the FPM - # configuration where they put logs in @localstatedir@/log. - # - # The libdir is passed explicitly in case the /usr/lib symlink - # is not present (bug 624528). - econf --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --localstatedir="${EPREFIX}/var" \ - --with-piddir="${EPREFIX}/run" \ - $(use_enable apache2) \ - $(use_enable fpm) -} - -pkg_postinst() { - use fpm && tmpfiles_process php-fpm.conf -} |