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/geos-php: Add extension split off from sci-libs/geos
The split was done upstream and includes PHP 7 support Package-Manager: Portage-2.3.24, Repoman-2.3.6
- Loading branch information
Brian Evans
committed
Mar 6, 2018
1 parent
bbf0927
commit ff87051
Showing
3 changed files
with
39 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST geos-php-1.0.0.tar.gz 40870 BLAKE2B c6d526470bdb7e4aecce6ce5f2132f90a6c40e5a2b3a8169bbb7ae101394340aad8a23309130c7f1421e19162b5559f9e87e58fb704e91b1fc03b612543551e8 SHA512 4ceb9e1152d0b534bc3a5e372be0b98770b1883ec4dda1177c9399d95d947b9feee412accf003d27b55b1a901c90259a9b38792b453dac11cb8af26af3cd91ec |
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-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI="6" | ||
PHP_EXT_NAME="geos" | ||
PHP_EXT_INI="yes" | ||
PHP_EXT_ZENDEXT="no" | ||
|
||
USE_PHP="php5-6 php7-0 php7-1 php7-2" | ||
|
||
MY_PV="${PV/_/}" | ||
MY_PV="${MY_PV/rc/RC}" | ||
|
||
S="${WORKDIR}/php-geos" | ||
|
||
inherit php-ext-source-r3 | ||
|
||
KEYWORDS="~amd64 ~x86" | ||
|
||
DESCRIPTION="A PHP interface to GEOS - Geometry Engine, Open Source" | ||
HOMEPAGE="https://trac.osgeo.org/geos" | ||
SRC_URI="https://git.osgeo.org/gitea/geos/php-geos/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
LICENSE="LGPL-2.1" | ||
SLOT="0" | ||
IUSE="test" | ||
|
||
RDEPEND="sci-libs/geos[-php(-)]" | ||
DEPEND="sci-libs/geos[-php(-)] test? ( dev-php/phpunit )" | ||
DOCS=( README.md CREDITS NEWS TODO ) | ||
PHP_EXT_ECONF_ARGS=() |
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,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>PHP</name> | ||
</maintainer> | ||
</pkgmetadata> |