Diff spatialite-5.0.1-r1 with a spatialite-5.0.1-r2
/usr/portage/dev-db/spatialite/spatialite-5.0.1-r2.ebuild 2023-10-09 14:52:29.340368346 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2021 Gentoo Authors |
|
1 |
# Copyright 1999-2023 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
5 | ||
6 |
inherit flag-o-matic |
|
4 |
EAPI=8 |
|
7 | 5 | |
8 | 6 |
MY_PN="lib${PN}" |
9 | 7 |
MY_P="${MY_PN}-${PV}" |
... | ... | |
15 | 13 | |
16 | 14 |
LICENSE="MPL-1.1" |
17 | 15 |
SLOT="0" |
18 |
KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv x86" |
|
19 |
IUSE="+geos iconv +proj test +xls +xml" |
|
16 |
KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86" |
|
17 |
IUSE="+geos iconv +proj rttopo test +xls +xml" |
|
20 | 18 |
# Further poking required |
21 | 19 |
RESTRICT="test" |
22 | 20 | |
... | ... | |
27 | 25 |
proj? ( sci-libs/proj:= ) |
28 | 26 |
xls? ( dev-libs/freexl ) |
29 | 27 |
xml? ( dev-libs/libxml2 ) |
28 |
rttopo? ( sci-geosciences/librttopo ) |
|
30 | 29 |
" |
31 | 30 |
DEPEND="${RDEPEND}" |
32 | 31 | |
33 | 32 |
REQUIRED_USE="test? ( iconv )" |
34 | 33 | |
35 | 34 |
src_configure() { |
36 |
# 1) rttopo not yet packaged |
|
37 |
# 2) gcp disabled for now to preserve MPL licence |
|
35 |
# 1) gcp disabled for now to preserve MPL licence |
|
38 | 36 |
econf \ |
39 |
--disable-rttopo \ |
|
40 | 37 |
--disable-gcp \ |
41 | 38 |
--disable-examples \ |
42 | 39 |
--disable-static \ |
43 | 40 |
--enable-epsg \ |
44 | 41 |
--enable-geocallbacks \ |
42 |
$(use_enable rttopo) \ |
|
45 | 43 |
$(use_enable geos) \ |
46 | 44 |
$(use_enable geos geosadvanced) \ |
47 | 45 |
$(use_enable iconv) \ |
... | ... | |
52 | 50 | |
53 | 51 |
src_install() { |
54 | 52 |
default |
55 |
find "${D}" -name '*.la' -delete || die |
|
53 |
find "${ED}" -name '*.la' -delete || die |
|
56 | 54 |
} |