diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2021-02-10 17:24:52 -0500 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2021-02-10 17:24:52 -0500 |
commit | 267962aea4a9c5b815fb9a74615cd585fa93c421 (patch) | |
tree | ec6e45978ff32c673025c2fc895307a537e9fbee /dev-db/pgrouting | |
parent | sys-block/open-isns: bump to v0.101 (diff) | |
download | gentoo-267962aea4a9c5b815fb9a74615cd585fa93c421.tar.gz gentoo-267962aea4a9c5b815fb9a74615cd585fa93c421.tar.bz2 gentoo-267962aea4a9c5b815fb9a74615cd585fa93c421.zip |
dev-db/pgrouting: Cleanup
Signed-off-by: Aaron W. Swenson <titanofold@gentoo.org>
Diffstat (limited to 'dev-db/pgrouting')
-rw-r--r-- | dev-db/pgrouting/Manifest | 1 | ||||
-rw-r--r-- | dev-db/pgrouting/metadata.xml | 3 | ||||
-rw-r--r-- | dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild | 61 |
3 files changed, 0 insertions, 65 deletions
diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest index 36a983e101a7..8da077b46f6f 100644 --- a/dev-db/pgrouting/Manifest +++ b/dev-db/pgrouting/Manifest @@ -1,3 +1,2 @@ -DIST pgrouting-2.6.2.tar.gz 6065517 BLAKE2B e27e28cf988040de1e894a857e3d210bc7676271f69d898afc2d6116d5b88d87404723b2cb1283ef77b4449b4aa62a03e2dbcd489ac641a4721a596d29f8fecd SHA512 6e37f66e631d0cc87e135be7d095822aae21656bb56b3d18afa5bececaad8cee6324d37e8e152bbf69e3374ded1f10aa4b9a4c52b873e3a4c43e73cd877fddcb DIST pgrouting-3.1.1.tar.gz 6133979 BLAKE2B b7657eeb88773773e6166190cda73d9e657774ff81ce7e9f005333a8dcb9d56587d4a793410356092bb1623ec287549dbc60d814b1d5156ff28301503acee776 SHA512 73285d2d47be844203df136b8a8c13d1672ad8c2dac44a1ff7ce16e4676043692a8f2a60a305542132891da83560c49c5eaeb7712e3e3dd250cd8fd550260d4a DIST pgrouting-3.1.2.tar.gz 6063893 BLAKE2B a371fb9c744b14072c65af5ceb1ea73d2cdb69821626be3ac79e08c9dee854272ce8cb3816d1de3eade06d50a7520846dd6bccda06934b9db926f9092719f131 SHA512 3cf3e0a4a726f6f11887d15ad71b789a9067f3bc5a675288f22730215aa12d12b94d75f9bdc8ab3077de8368c45c55c0dc27128d0453c4c30965bfc0cf118dcd diff --git a/dev-db/pgrouting/metadata.xml b/dev-db/pgrouting/metadata.xml index a88d76503805..2072ed843440 100644 --- a/dev-db/pgrouting/metadata.xml +++ b/dev-db/pgrouting/metadata.xml @@ -5,9 +5,6 @@ <email>pgsql-bugs@gentoo.org</email> <name>PostgreSQL and Related Package Development</name> </maintainer> - <use> - <flag name="html">Install HTML formatted documentation</flag> - </use> <upstream> <remote-id type="github">pgRouting/pgrouting</remote-id> </upstream> diff --git a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild deleted file mode 100644 index 00807308c211..000000000000 --- a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -POSTGRES_COMPAT=( 9.{5..6} 10 11 ) -POSTGRES_USEDEP="server" - -inherit postgres cmake-utils - -DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality." -HOMEPAGE="http://pgrouting.org/" -LICENSE="GPL-2 MIT Boost-1.0" - -SLOT="0" -KEYWORDS="amd64 x86" -SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -IUSE="pdf html" - -RDEPEND="${POSTGRES_DEP} - >=dev-db/postgis-2.0 - dev-libs/boost - sci-mathematics/cgal -" - -# Sphinx is needed to build the man pages -DEPEND="${RDEPEND} - >=dev-python/sphinx-1.2 - pdf? ( >=dev-python/sphinx-1.2[latex] ) -" - -# Needs a running psql instance, doesn't work out of the box -RESTRICT="test" - -pkg_setup() { - postgres_pkg_setup -} - -src_configure() { - local mycmakeargs=( - -DBUILD_HTML=$(usex html) - -DBUILD_LATEX=$(usex pdf) - -DBUILD_MAN=ON - -DWITH_DOC=ON - ) - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_make all doc -} - -src_install() { - cmake-utils_src_install - - doman "${BUILD_DIR}"/doc/man/en/pgrouting.7 - - use html && dodoc -r "${BUILD_DIR}"/doc/html - use pdf && dodoc "${BUILD_DIR}"/doc/latex/en/*.pdf -} |