blob: b3dddfef08abc71f822f49b9fe08437b719e59aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit elisp-common eutils
DESCRIPTION="Fast, high-capacity, identifier database tool"
HOMEPAGE="https://www.gnu.org/software/idutils/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="emacs nls"
RDEPEND="emacs? ( virtual/emacs )
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
DOCS="AUTHORS ChangeLog NEWS README* THANKS TODO"
src_prepare() {
epatch "${FILESDIR}/${PN}-4.6-glibc-2.16.patch"
}
src_configure() {
use emacs || export EMACS=no
econf \
$(use_enable nls) \
$(use_with emacs lispdir "${SITELISP}/${PN}")
}
|