You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
inherit eutils elisp-common
|
|
|
|
DESCRIPTION="Fast, high-capacity, identifier database tool"
|
|
HOMEPAGE="https://www.gnu.org/software/idutils/"
|
|
#DEB_PN="id-utils" # old upstream name for it
|
|
#DEB_P="${DEB_PN}_${PV}"
|
|
#DEB_PR="1"
|
|
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
|
|
#mirror://debian/pool/main/${PN:0:1}/${DEB_PN}/${DEB_P}-${DEB_PR}.diff.gz
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="emacs nls"
|
|
|
|
RDEPEND="emacs? ( virtual/emacs )
|
|
nls? ( virtual/libintl )"
|
|
DEPEND="${RDEPEND}
|
|
nls? ( sys-devel/gettext )"
|
|
|
|
src_unpack() {
|
|
unpack ${P}.tar.gz
|
|
if [ -n "${DEB_PR}" ]; then
|
|
cd "${S}"
|
|
epatch "${DISTDIR}"/${DEB_P}-${DEB_PR}.diff.gz
|
|
epatch "${S}"/debian/patches/*.dpatch
|
|
fi
|
|
}
|
|
|
|
src_compile() {
|
|
use emacs || export EMACS=no
|
|
econf \
|
|
$(use_enable nls) \
|
|
"$(use_with emacs lispdir "${SITELISP}/${PN}")"
|
|
emake || die
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed"
|
|
dodoc NEWS README* ChangeLog AUTHORS THANKS TODO
|
|
}
|