Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/queue-standalone/
Date: Tue, 19 Feb 2019 15:52:50
Message-Id: 1550591556.fb85935b024b19afbe2ce55d863b3e43b52e3d1e.blueness@gentoo
1 commit: fb85935b024b19afbe2ce55d863b3e43b52e3d1e
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 19 15:49:54 2019 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 19 15:52:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb85935b
7
8 sys-libs/queue-standalone: use insinto/doins instead of a direct cp
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 .../queue-standalone-0.1-r1.ebuild | 22 ++++++++++++++++++++++
14 1 file changed, 22 insertions(+)
15
16 diff --git a/sys-libs/queue-standalone/queue-standalone-0.1-r1.ebuild b/sys-libs/queue-standalone/queue-standalone-0.1-r1.ebuild
17 new file mode 100644
18 index 00000000000..618545bae97
19 --- /dev/null
20 +++ b/sys-libs/queue-standalone/queue-standalone-0.1-r1.ebuild
21 @@ -0,0 +1,22 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +DESCRIPTION="Install <sys/queue.h> from glibc."
28 +HOMEPAGE="https://www.gnu.org/software/libc/libc.html"
29 +
30 +LICENSE="BSD"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~x86"
33 +
34 +DEPEND="
35 + !sys-libs/glibc
36 + !sys-libs/uclibc"
37 +
38 +S="${WORKDIR}"
39 +
40 +src_install() {
41 + insinto /usr/include/sys
42 + doins "${FILESDIR}"/queue.h
43 +}