blob: db4df5cdc1910a62d7ba73aebe2d1af607f98ca8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="Install <sys/queue.h> from glibc."
HOMEPAGE="http://www.gnu.org/software/libc/libc.html"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm ~mips ppc x86"
DEPEND="
!sys-libs/glibc
!sys-libs/uclibc"
S="${WORKDIR}"
src_install() {
mkdir -p "${D}"/usr/include/sys
cp "${FILESDIR}"/queue.h "${D}"/usr/include/sys
}
|