blob: 43d4d4dab30cce63cd7c5b929129bc440d24a682 [file] [log] [blame]
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgpg-error/libgpg-error-1.12.ebuild,v 1.13 2014/01/18 05:05:38 vapier Exp $
EAPI=5
inherit libtool
DESCRIPTION="Contains error handling functions used by GnuPG software"
HOMEPAGE="http://www.gnupg.org/related_software/libgpg-error"
SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="*"
IUSE="common-lisp nls static-libs"
RDEPEND="nls? ( virtual/libintl )"
DEPEND="nls? ( sys-devel/gettext )"
src_prepare() {
elibtoolize
}
src_configure() {
econf \
$(use_enable nls) \
$(use_enable static-libs static) \
$(use_enable common-lisp languages)
}
src_install() {
default
# library has no dependencies, so it does not need the .la file
find "${D}" -name '*.la' -delete
}