| 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-util/idutils/idutils-4.5.ebuild,v 1.1 2012/02/21 08:57:58 robbat2 Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
inherit elisp-common
|
| 7 |
|
| 8 |
DESCRIPTION="Fast, high-capacity, identifier database tool"
|
| 9 |
HOMEPAGE="http://www.gnu.org/software/idutils/"
|
| 10 |
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
|
| 11 |
|
| 12 |
LICENSE="GPL-2"
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="~amd64 ~x86"
|
| 15 |
IUSE="emacs nls"
|
| 16 |
|
| 17 |
RDEPEND="emacs? ( virtual/emacs )
|
| 18 |
nls? ( virtual/libintl )"
|
| 19 |
DEPEND="${RDEPEND}
|
| 20 |
nls? ( sys-devel/gettext )"
|
| 21 |
|
| 22 |
DOCS="AUTHORS ChangeLog NEWS README* THANKS TODO"
|
| 23 |
|
| 24 |
src_configure() {
|
| 25 |
use emacs || export EMACS=no
|
| 26 |
econf \
|
| 27 |
$(use_enable nls) \
|
| 28 |
$(use_with emacs lispdir "${SITELISP}/${PN}")
|
| 29 |
}
|