| 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-libs/libassuan/libassuan-2.0.3.ebuild,v 1.9 2012/08/26 18:29:18 armin76 Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
DESCRIPTION="IPC library used by GnuPG and GPGME"
|
| 8 |
HOMEPAGE="http://www.gnupg.org/related_software/libassuan/index.en.html"
|
| 9 |
SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
|
| 10 |
|
| 11 |
LICENSE="GPL-3 LGPL-2.1"
|
| 12 |
SLOT="0"
|
| 13 |
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
| 14 |
IUSE="static-libs"
|
| 15 |
|
| 16 |
RDEPEND=">=dev-libs/libgpg-error-1.8"
|
| 17 |
DEPEND="${RDEPEND}"
|
| 18 |
|
| 19 |
DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
|
| 20 |
|
| 21 |
src_configure() {
|
| 22 |
econf $(use_enable static-libs static)
|
| 23 |
}
|
| 24 |
|
| 25 |
src_install() {
|
| 26 |
default
|
| 27 |
# ppl need to use libassuan-config for --cflags and --libs
|
| 28 |
rm -f "${ED}"usr/lib*/${PN}.la
|
| 29 |
}
|