From ea089bd588671e6a5c1d05049c63012f46cf6f58 Mon Sep 17 00:00:00 2001 From: Fabian Groffen Date: Sat, 2 Jun 2018 19:19:01 +0200 Subject: sys-libs/native-uuid: new pseudo package for *-macos in Prefix Package-Manager: Portage-2.3.24, Repoman-2.3.6 --- sys-libs/native-uuid/metadata.xml | 15 ++++++++++++ sys-libs/native-uuid/native-uuid-1.0.ebuild | 36 +++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 sys-libs/native-uuid/metadata.xml create mode 100644 sys-libs/native-uuid/native-uuid-1.0.ebuild (limited to 'sys-libs/native-uuid') 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 +} -- cgit v1.2.3-65-gdbad