From: Fabian Groffen Date: Sat, 2 Jun 2018 17:19:01 +0000 (+0200) Subject: sys-libs/native-uuid: new pseudo package for *-macos in Prefix X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ea089bd588671e6a5c1d05049c63012f46cf6f58;p=gentoo.git sys-libs/native-uuid: new pseudo package for *-macos in Prefix Package-Manager: Portage-2.3.24, Repoman-2.3.6 --- diff --git a/sys-libs/native-uuid/metadata.xml b/sys-libs/native-uuid/metadata.xml new file mode 100644 index 000000000000..06454c38b1ef --- /dev/null +++ b/sys-libs/native-uuid/metadata.xml @@ -0,0 +1,15 @@ + + + + + grobian@gentoo.org + Fabian Groffen + + + prefix@gentoo.org + Gentoo Prefix + + + pkgconfig file for host-provided uuid for Prefix systems + + diff --git a/sys-libs/native-uuid/native-uuid-1.0.ebuild b/sys-libs/native-uuid/native-uuid-1.0.ebuild new file mode 100644 index 000000000000..2f7e48e9fc4a --- /dev/null +++ b/sys-libs/native-uuid/native-uuid-1.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION=".pc file for uuid" +HOMEPAGE="https://prefix.gentoo.org/" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~ppc-macos ~x64-macos ~x86-macos" + +DEPEND="!!sys-libs/libuuid + !!sys-apps/util-linux" +RDEPEND="${DEPEND}" + +src_unpack() { + mkdir -p "${S}" || die +} + +src_install() { + mkdir -p "${ED}"/usr/lib/pkgconfig || die + cat > "${ED}"/usr/lib/pkgconfig/uuid.pc <<- EOPC + prefix=${EPREFIX}/usr + exec_prefix=\${prefix} + libdir=${EPREFIX}/usr/lib + includedir=\${prefix}/include + + Name: uuid + Description: Universally unique id library + Version: ${PV} + Requires: + Cflags: + Libs: + EOPC +}