diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-10-09 18:53:29 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-10-09 18:53:29 +0100 |
commit | 4f2d7949f03e1c198bc888f2d05f421d35c57e21 (patch) | |
tree | ba5f07bf3f9d22d82e54a462313f5d244036c768 /net-libs/rpcsvc-proto |
reinit the tree, so we can have metadata
Diffstat (limited to 'net-libs/rpcsvc-proto')
-rw-r--r-- | net-libs/rpcsvc-proto/Manifest | 3 | ||||
-rw-r--r-- | net-libs/rpcsvc-proto/metadata.xml | 12 | ||||
-rw-r--r-- | net-libs/rpcsvc-proto/rpcsvc-proto-1.2-r1.ebuild | 31 |
3 files changed, 46 insertions, 0 deletions
diff --git a/net-libs/rpcsvc-proto/Manifest b/net-libs/rpcsvc-proto/Manifest new file mode 100644 index 000000000000..8fb6858a4140 --- /dev/null +++ b/net-libs/rpcsvc-proto/Manifest @@ -0,0 +1,3 @@ +DIST rpcsvc-proto-1.2.tar.gz 59883 SHA256 9b6a0d3813f29a1f92f92e6445e3286195567813bf34423ddbf0044ab0e2457b SHA512 59e6ac2c3e551daef584878e8ae8fc2da7cb80a04c20f96de561abc972fcfac1fbb57a5ee0dbe7bf5288a1527c9b87fc3f73a259b30393982a9a642cf4b4deb4 WHIRLPOOL 802983f71d2bafb600367f395c8fdcb9bfdf5f5af4a52444420d4b5472f2ae0a506d1b40c7a501e83e97c75cbb2298be34382a6c759b895abf105ec49dd66f0b +EBUILD rpcsvc-proto-1.2-r1.ebuild 649 SHA256 ffbebb9d04f4ccca3d6c1c7290e2254f7529a582ef895d45f4a49e96f39f8fd4 SHA512 9901e68bd3672ce6689f055d4d79cc73cbf4352c7bb4e1d901450a6ba47f63c0dfe16681a003069a631d31f56b91ed7cc156d3f54a0b1e39b6bb592d180da96d WHIRLPOOL a836d62b2e58dd53368628b81860da302116be1e0a7228f4d0bf0b76753026aea9dea415501299e43d3838b9ba3dbb3bc17ff9c414700f32006283ea0ab0bac3 +MISC metadata.xml 379 SHA256 ebf32af5bc074fc17a37c93745bc34847424be60d6d5d23a69d88baabc554bcf SHA512 00a77262e76176fbc54ff2d1d8ba070868f185f5f940abd25ad1af80fd52f1560c9e0290c42283a98519a653a334ed6dfd4e0f8540d10946253b3afc205bb753 WHIRLPOOL eab5963365c94d28e5e60cc0b4eaee3d576bf8cc3372eb739f0fcbdbf4f3c37fc1af7c90b39866e476fdcd2d529b7e78f2bbcc1d3b938c047702d09db3141fa6 diff --git a/net-libs/rpcsvc-proto/metadata.xml b/net-libs/rpcsvc-proto/metadata.xml new file mode 100644 index 000000000000..bcf493eae9ae --- /dev/null +++ b/net-libs/rpcsvc-proto/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="project"> + <email>toolchain@gentoo.org</email> + <name>Gentoo Toolchain Project</name> +</maintainer> +<maintainer type="project"> + <email>base-system@gentoo.org</email> + <name>Gentoo Base System Project</name> +</maintainer> +</pkgmetadata> diff --git a/net-libs/rpcsvc-proto/rpcsvc-proto-1.2-r1.ebuild b/net-libs/rpcsvc-proto/rpcsvc-proto-1.2-r1.ebuild new file mode 100644 index 000000000000..fa06a5e856c3 --- /dev/null +++ b/net-libs/rpcsvc-proto/rpcsvc-proto-1.2-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +DESCRIPTION="rpcsvc protocol definitions from glibc" +HOMEPAGE="https://github.com/thkukuk/rpcsvc-proto" +SRC_URI="https://github.com/thkukuk/${PN}/archive/${P}.tar.gz" + +SLOT="0" +LICENSE="LGPL-2.1+ BSD" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +RDEPEND="!<sys-libs/glibc-2.26" + +S=${WORKDIR}/${PN}-${P} + +src_prepare(){ + default + eautoreconf +} + +src_install(){ + default + + # provided by sys-fs/quota[rpc] + rm "${ED}"/usr/include/rpcsvc/rquota.{x,h} || die +} |