blob: ca093975a5f2e3d4ac5a33c761994c909b3548bf (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
DESCRIPTION="Script to emulate the behavior of glibc's getent utility"
HOMEPAGE="http://www.uclibc.org/"
SRC_URI="http://git.uclibc.org/uClibc/plain/extra/scripts/${PN}"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~sh ~sparc ~x86"
DEPEND="
!sys-libs/glibc
!<=sys-libs/uclibc-0.9.33.2-r9
"
src_unpack() {
mkdir ${P}
cp "${DISTDIR}"/${PN} ${P}
}
src_install() {
dobin getent
}
|