diff options
Diffstat (limited to 'app-doc/x86-manpages')
-rw-r--r-- | app-doc/x86-manpages/Manifest | 1 | ||||
-rw-r--r-- | app-doc/x86-manpages/metadata.xml | 11 | ||||
l--------- | app-doc/x86-manpages/x86-manpages-0.9.1.ebuild | 1 | ||||
-rw-r--r-- | app-doc/x86-manpages/x86-manpages-9999.ebuild | 36 |
4 files changed, 49 insertions, 0 deletions
diff --git a/app-doc/x86-manpages/Manifest b/app-doc/x86-manpages/Manifest new file mode 100644 index 0000000..9191746 --- /dev/null +++ b/app-doc/x86-manpages/Manifest @@ -0,0 +1 @@ +DIST x86-manpages-0.9.1.tar.gz 1303720 BLAKE2B 3ccefbd2a1fb77a66206d161035152a8acd1d72730f25f077a2b083e2d8365dd15c6d9429862db8ee9051a5a3ced3178f2637e18a653d285637786ab70bf261b SHA512 50eeae9871d91c15bf35715ec658edcf5109f7ea60add0dd34de67e7bfc484242161ba6d8c7c67a53bb4bcdb59b217709d7175e5806d2aff16b953e9a2a347e4 diff --git a/app-doc/x86-manpages/metadata.xml b/app-doc/x86-manpages/metadata.xml new file mode 100644 index 0000000..2c23dbd --- /dev/null +++ b/app-doc/x86-manpages/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>azat@bahawi.net</email> + <name>Azat Bahawi</name> + </maintainer> + <upstream> + <remote-id type="github">ttmo-O/x86-manpages</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-doc/x86-manpages/x86-manpages-0.9.1.ebuild b/app-doc/x86-manpages/x86-manpages-0.9.1.ebuild new file mode 120000 index 0000000..444295e --- /dev/null +++ b/app-doc/x86-manpages/x86-manpages-0.9.1.ebuild @@ -0,0 +1 @@ +x86-manpages-9999.ebuild \ No newline at end of file diff --git a/app-doc/x86-manpages/x86-manpages-9999.ebuild b/app-doc/x86-manpages/x86-manpages-9999.ebuild new file mode 100644 index 0000000..b7098a8 --- /dev/null +++ b/app-doc/x86-manpages/x86-manpages-9999.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/ttmo-O/x86-manpages" +fi + +DESCRIPTION="x86 and amd64 instruction reference manual pages" +HOMEPAGE="https://github.com/ttmo-O/x86-manpages" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/ttmo-O/x86-manpages/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_compile() { + :; +} + +src_install() { + doman man7/* +} |