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-9999.ebuild | 19 |
2 files changed, 5 insertions, 16 deletions
diff --git a/app-eselect/eselect-php/Manifest b/app-eselect/eselect-php/Manifest index 371307a48828..66940bd1a83d 100644 --- a/app-eselect/eselect-php/Manifest +++ b/app-eselect/eselect-php/Manifest @@ -5,5 +5,5 @@ DIST eselect-php-0.9.4.tar.xz 49576 BLAKE2B 417956b355ffec7d7cda03dffa94e4d749a2 DIST eselect-php-0.9.5.tar.xz 49732 BLAKE2B 78c2010abcb1c9efd4d5f2f3f934365b338901a98bc8528131f2b9f564c1c3f740ab2dc2a28a0a58912e750062e61f75a7c6611c2f37019ca6525d729ffb5fd2 SHA512 55e401cb0c3ed19fed90485d62ba3deed3355503542898ff0d1b5404bd5fafb2f887df433609d4d4b28f32c0034100ea32c9e58547ef6417ea0b0f60d061d119 EBUILD eselect-php-0.9.4-r5.ebuild 1357 BLAKE2B 7c1db9e923b00c7b46d4b05dddf63c0128af870c9eee1d2adf522c3f5e1add9e916faadc9fbbb9e72cb81e14e5e681d8337f002901831b6f63bc94b9806a66da SHA512 69854d755224fcc9e53e2b87746c40a29704b12a1657826f4709f49df23b5b4456a23de1f913dcf64b11d5a06ba7ec4e776a78e27f439ec8806bc4868aa3f6cd EBUILD eselect-php-0.9.5.ebuild 1370 BLAKE2B 4802bf0f6bce5cf4546eac9bd36aac5acf33ac81adf3b3c6cf4ca49bbf5c5a5366b3be1892f797e74aadb8141d949befc8c4ee6c869f692eccbd7c47e2f545b0 SHA512 726edb855acf8f8021c7ec1383b643f48f24a8c0c2ed4f67ea1604d7166d1f8c9c3ff8bf2ab96a490d31c45105762f36b7aeefb7848065e46709238053e412c6 -EBUILD eselect-php-9999.ebuild 1306 BLAKE2B 45c8551979e6c5cd4623cfbd77aff888462ddd18121892b6891459e2281581382c0c6738370f859f5dbd21fcf7ead4056afd78de587b8387bc79cefd689d88b3 SHA512 9982c8bda294445cf3496da2d58f0126278924165cf66967d31628a2eb907c258e50d460e3c1daf5b9c042386730452d2c02a096d1f45c86d10c6538e8afeec7 +EBUILD eselect-php-9999.ebuild 1030 BLAKE2B efb100c840dc12e1cd3b7c252569f81498b37164df05c255b6178f4cf0fb8abc696917978e45ac6c32e819da8773522069b9d45fb177f55ab9979e80c2ec5424 SHA512 f9d04e6212c6c50fcb22fda92ffa879ea99d082529c6fc489ee0d73f280716c260b370c9b8d14fe050f0c3b2617ccf9efe4019e72e6d8262bb6cf0a7ca13ee57 MISC metadata.xml 517 BLAKE2B b597cb77735fa8a26f686dd357f92977342fe28272aa78471fc184fcffbead1fe64c7f7b90f608a6854ce7a9e7529f6132dba83dc9f368b3cdd6ab6b5db5ff05 SHA512 23e39402a69ee17795f08716462c5ce3a5fd8e5c21a8e39737a803f34edbd2c3d38d7e96931ccedcaded612bec5d9e3fe09004a4def1ee4307a63c3bcf99b89a diff --git a/app-eselect/eselect-php/eselect-php-9999.ebuild b/app-eselect/eselect-php/eselect-php-9999.ebuild index e6b5ef3d8804..013fabe6fdd3 100644 --- a/app-eselect/eselect-php/eselect-php-9999.ebuild +++ b/app-eselect/eselect-php/eselect-php-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit systemd git-r3 autotools +inherit git-r3 autotools DESCRIPTION="PHP eselect module" HOMEPAGE="https://gitweb.gentoo.org/proj/eselect-php.git/" @@ -19,7 +19,7 @@ RDEPEND="app-admin/eselect apache2? ( www-servers/apache[apache2_modules_dir] )" src_prepare() { - eapply_user + default eautoreconf } @@ -36,14 +36,3 @@ src_configure(){ $(use_enable apache2) \ $(use_enable fpm) } - -src_install() { - default - - if use fpm ; then - systemd_dotmpfilesd "${FILESDIR}/php-fpm.conf" - sed -e "s,@libdir@,$(get_libdir),g" "${FILESDIR}/php-fpm-launcher-r3" > "${T}"/php-fpm-launcher || die - exeinto /usr/libexec - doexe "${T}"/php-fpm-launcher - fi -} |