| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-db/spatialite/spatialite-3.0.1.ebuild,v 1.1 2012/05/25 17:31:35 scarabeus Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
inherit multilib
|
| 8 |
|
| 9 |
DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
|
| 10 |
HOMEPAGE="http://www.gaia-gis.it/spatialite"
|
| 11 |
SRC_URI="http://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz"
|
| 12 |
|
| 13 |
LICENSE="MPL-1.1"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="~amd64 ~x86"
|
| 16 |
IUSE="static-libs"
|
| 17 |
|
| 18 |
RDEPEND=""
|
| 19 |
DEPEND="${RDEPEND}"
|
| 20 |
|
| 21 |
src_configure() {
|
| 22 |
econf \
|
| 23 |
$(use_enable static-libs static)
|
| 24 |
}
|
| 25 |
|
| 26 |
src_install() {
|
| 27 |
default
|
| 28 |
|
| 29 |
find "${ED}" -name '*.la' -exec rm -f {} +
|
| 30 |
}
|