forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-php/pecl-ps: Version bump for 1.4.4
Signed-off-by: Brian Evans <[email protected]>
- Loading branch information
Brian Evans
committed
Sep 29, 2021
1 parent
30267ee
commit e585f2c
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST ps-1.4.1.tgz 578991 BLAKE2B 549fae78ffb6e91f39b6292d969b9b80adba1a5911fb52e99c5fcbc940b9470205556e3e11c2940fadc7cc084400bc08ae7255b79e175d705c9bacb8eb3d6e71 SHA512 e9eeb5ad1c9314af0fcfd33e461b560f6cc599a679bc0a5541994fa698e3da63b7cb523f617647bdb2ac1c8fc090263e314ddf956a1e6126f8813de92e49f3af | ||
DIST ps-1.4.4.tgz 637247 BLAKE2B 19dd32a2321fd53224c662e68603c7c330fcf8fe0d3e4e3d4a6e75e211c876225f1f6cf9325b117f7a3713abd87e6acfe25c4c9b0c161e6d6717f94cc90b7649 SHA512 42ab1fff661da68afb42d90dc7fb07761698f191beaf09b6dd4b2c3e7e67949ef06b2f6389738a462f58722f863c6b80f55a00a57dddc860250a4500cbfecf8b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI="7" | ||
|
||
PHP_EXT_NAME="ps" | ||
USE_PHP="php7-3 php7-4 php8-0" | ||
PHP_EXT_NEEDED_USE="gd(-)?" | ||
|
||
inherit php-ext-pecl-r3 | ||
|
||
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" | ||
|
||
DESCRIPTION="PHP extension for creating PostScript files" | ||
LICENSE="BSD" | ||
SLOT="7" | ||
IUSE="examples gd" | ||
|
||
DEPEND="dev-libs/pslib gd? ( media-libs/gd:2= )" | ||
RDEPEND="${DEPEND}" | ||
|
||
src_configure() { | ||
PHP_EXT_ECONF_ARGS="$(use_enable gd)" | ||
php-ext-source-r3_src_configure | ||
} | ||
|
||
src_test() { | ||
# tests/004.phpt depends on set numeric format | ||
LC_ALL=C php-ext-pecl-r3_src_test | ||
} |