2014-08-12 12:57:09 +04:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2011-11-09 11:33:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-10 23:59:40 +03:00
|
|
|
# $Id$
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
EAPI=2
|
|
|
|
|
|
|
|
inherit eutils multilib toolchain-funcs
|
|
|
|
|
2014-08-12 12:57:09 +04:00
|
|
|
DESCRIPTION="libnss-cache is a library that serves nss lookups"
|
2015-09-02 17:38:56 +03:00
|
|
|
HOMEPAGE="https://github.com/google/nsscache"
|
2015-08-25 09:01:42 +03:00
|
|
|
SRC_URI="https://nsscache.googlecode.com/files/${P}.tar.gz"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
S=${WORKDIR}/${PN}
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}"/${PF}-make-install.patch
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
emake CC="$(tc-getCC)" || die
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die
|
|
|
|
}
|