From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 34C58139694 for ; Sun, 19 Feb 2017 21:15:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84CACE0DFE; Sun, 19 Feb 2017 21:15:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60502E0DFE for ; Sun, 19 Feb 2017 21:15:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 78E9F340988 for ; Sun, 19 Feb 2017 21:15:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC5DA4DA9 for ; Sun, 19 Feb 2017 21:15:24 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1487538909.a87c5bc8be22406fd92af699c4dc6067ac27a8fe.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/readosm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/readosm/readosm-1.0.0e-r1.ebuild X-VCS-Directories: sci-geosciences/readosm/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a87c5bc8be22406fd92af699c4dc6067ac27a8fe X-VCS-Branch: master Date: Sun, 19 Feb 2017 21:15:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8337dbdf-1ed3-41c9-8a42-458f4c66bd7f X-Archives-Hash: a9aa8151a6cd196b92c6ec417062c0a5 commit: a87c5bc8be22406fd92af699c4dc6067ac27a8fe Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 19 20:58:14 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 19 21:15:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a87c5bc8 sci-geosciences/readosm: Fix DEPENDs, HOMEPAGE, drop unused eclasses Package-Manager: portage-2.3.3 sci-geosciences/readosm/readosm-1.0.0e-r1.ebuild | 30 ++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/sci-geosciences/readosm/readosm-1.0.0e-r1.ebuild b/sci-geosciences/readosm/readosm-1.0.0e-r1.ebuild new file mode 100644 index 0000000000..24d95dded6 --- /dev/null +++ b/sci-geosciences/readosm/readosm-1.0.0e-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Library to extract valid data from an Open Street Map input file" +HOMEPAGE="https://www.gaia-gis.it/spatialite" +SRC_URI="https://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz" + +LICENSE="MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +RDEPEND=" + dev-libs/expat + sys-libs/zlib +" +DEPEND="${RDEPEND}" + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}