26 lines
791 B
Bash
26 lines
791 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libassuan/libassuan-2.0.1.ebuild,v 1.8 2011/05/14 19:32:17 armin76 Exp $
|
|
|
|
EAPI="2"
|
|
|
|
DESCRIPTION="IPC library used by GnuPG and GPGME"
|
|
HOMEPAGE="http://www.gnupg.org/related_software/libassuan/index.en.html"
|
|
SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-3 LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
|
|
IUSE="static-libs"
|
|
|
|
DEPEND=">=dev-libs/libgpg-error-1.8"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
econf $(use_enable static-libs static)
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed"
|
|
dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die
|
|
}
|