public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aaron W. Swenson" <titanofold@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
Date: Fri, 21 Jun 2019 10:08:08 +0000 (UTC)	[thread overview]
Message-ID: <1561111675.95d44e303a459e9de6025f87156b58ecc6a0bc5d.titanofold@gentoo> (raw)

commit:     95d44e303a459e9de6025f87156b58ecc6a0bc5d
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 21 10:05:40 2019 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Fri Jun 21 10:07:55 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95d44e30

dev-db/pgrouting: Bump to 2.6.2

Fixes doc installation.

Bug: https://bugs.gentoo.org/625778
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  1 +
 dev-db/pgrouting/pgrouting-2.6.2.ebuild | 64 +++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index 40ae7848e25..8c026319d9c 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1 +1,2 @@
 DIST pgrouting-2.5.2.tar.gz 7221479 BLAKE2B afbf29b7cbd52df526203198fb76d9e9e37e88a4b92d2139975238a14fe5a30c8102449d157e391913e690129a1ca8ac718763d9242193cac4080bc7347e1553 SHA512 9d9d9ebbcbc003f62bf1f0d548363e756012cdce55a9c3ef56ae9a5a510f25337898becf42f3e04bf10e8d3672ebf698def03833bba33410b65e0d2bdd42aecd
+DIST pgrouting-2.6.2.tar.gz 6065517 BLAKE2B e27e28cf988040de1e894a857e3d210bc7676271f69d898afc2d6116d5b88d87404723b2cb1283ef77b4449b4aa62a03e2dbcd489ac641a4721a596d29f8fecd SHA512 6e37f66e631d0cc87e135be7d095822aae21656bb56b3d18afa5bececaad8cee6324d37e8e152bbf69e3374ded1f10aa4b9a4c52b873e3a4c43e73cd877fddcb

diff --git a/dev-db/pgrouting/pgrouting-2.6.2.ebuild b/dev-db/pgrouting/pgrouting-2.6.2.ebuild
new file mode 100644
index 00000000000..7690a22ce13
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-2.6.2.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+POSTGRES_COMPAT=( 9.{4..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="doc pdf html"
+
+REQUIRED_USE="html? ( doc ) pdf? ( doc )"
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	sci-mathematics/cgal
+"
+
+DEPEND="
+	doc? ( >=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=$(usex doc)
+	)
+
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	local make_opts
+	use doc && make_opts="all doc"
+	cmake-utils_src_make ${make_opts}
+}
+
+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
+}


             reply	other threads:[~2019-06-21 10:08 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-21 10:08 Aaron W. Swenson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-18  8:25 [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/ Patrick Lauer
2025-04-03 15:54 Patrick Lauer
2025-02-28  6:46 Patrick Lauer
2024-12-15 18:27 Patrick Lauer
2024-08-06 22:10 Andreas Sturmlechner
2024-06-13  8:28 Patrick Lauer
2024-03-16 17:34 Arthur Zamarin
2023-12-22 15:07 罗百科
2023-11-17  9:25 罗百科
2023-06-10 19:25 Andreas Sturmlechner
2023-02-07 16:54 Sam James
2023-02-07 16:54 Sam James
2021-09-30 19:02 罗百科
2021-08-22 21:53 David Seifert
2021-02-11 13:15 Aaron W. Swenson
2021-02-10 22:32 Aaron W. Swenson
2021-01-24 12:10 Agostino Sarubbo
2021-01-21  7:40 Agostino Sarubbo
2020-12-21 10:37 Aaron W. Swenson
2020-11-26  2:40 Aaron W. Swenson
2020-11-26  2:40 Aaron W. Swenson
2020-08-14  0:49 Aaron W. Swenson
2019-10-02 23:51 Aaron W. Swenson
2019-10-02 18:53 Agostino Sarubbo
2019-10-01 10:00 Agostino Sarubbo
2019-08-17 11:17 Aaron W. Swenson
2018-06-07 19:22 Aaron Bauman
2018-02-28 13:11 Aaron Swenson
2017-09-24 17:18 Patrick Lauer
2016-12-23 10:11 Johannes Huber

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1561111675.95d44e303a459e9de6025f87156b58ecc6a0bc5d.titanofold@gentoo \
    --to=titanofold@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox