29 lines
757 B
Bash
29 lines
757 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/idutils/idutils-4.6.ebuild,v 1.1 2012/05/11 09:10:44 ssuominen Exp $
|
|
|
|
EAPI=4
|
|
inherit elisp-common
|
|
|
|
DESCRIPTION="Fast, high-capacity, identifier database tool"
|
|
HOMEPAGE="http://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_configure() {
|
|
use emacs || export EMACS=no
|
|
econf \
|
|
$(use_enable nls) \
|
|
$(use_with emacs lispdir "${SITELISP}/${PN}")
|
|
}
|