commit: fb85935b024b19afbe2ce55d863b3e43b52e3d1e Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org> AuthorDate: Tue Feb 19 15:49:54 2019 +0000 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org> CommitDate: Tue Feb 19 15:52:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb85935b
sys-libs/queue-standalone: use insinto/doins instead of a direct cp Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 .../queue-standalone-0.1-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/sys-libs/queue-standalone/queue-standalone-0.1-r1.ebuild b/sys-libs/queue-standalone/queue-standalone-0.1-r1.ebuild new file mode 100644 index 00000000000..618545bae97 --- /dev/null +++ b/sys-libs/queue-standalone/queue-standalone-0.1-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Install <sys/queue.h> from glibc." +HOMEPAGE="https://www.gnu.org/software/libc/libc.html" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~x86" + +DEPEND=" + !sys-libs/glibc + !sys-libs/uclibc" + +S="${WORKDIR}" + +src_install() { + insinto /usr/include/sys + doins "${FILESDIR}"/queue.h +}
