diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /net-misc/shigofumi | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'net-misc/shigofumi')
| -rw-r--r-- | net-misc/shigofumi/Manifest | 1 | ||||
| -rw-r--r-- | net-misc/shigofumi/files/shigofumi-0.3-gcc-10.patch | 11 | ||||
| -rw-r--r-- | net-misc/shigofumi/metadata.xml | 10 | ||||
| -rw-r--r-- | net-misc/shigofumi/shigofumi-0.3-r1.ebuild | 55 | ||||
| -rw-r--r-- | net-misc/shigofumi/shigofumi-9999.ebuild | 51 |
5 files changed, 128 insertions, 0 deletions
diff --git a/net-misc/shigofumi/Manifest b/net-misc/shigofumi/Manifest new file mode 100644 index 000000000000..2b5e0301aaa5 --- /dev/null +++ b/net-misc/shigofumi/Manifest @@ -0,0 +1 @@ +DIST shigofumi-0.3.tar.bz2 312184 BLAKE2B ebf8c0c4a7a347bd1b2c11fae9e8f0da46cad21e2b25e875e94a60a7be00a79c1737ac39754a8a230705a44a812e5f00268b528480f5e33e734e4ce5dfdbea34 SHA512 ef7b2894cfa217b713865c4fe24cc985b4ff963df4a5005bda06f03b3c7f358b318e68a136328787fe2dfbb8b1623fe2b2ceb9fbbd20be7f243fa79ace1b0210 diff --git a/net-misc/shigofumi/files/shigofumi-0.3-gcc-10.patch b/net-misc/shigofumi/files/shigofumi-0.3-gcc-10.patch new file mode 100644 index 000000000000..52688ff1d194 --- /dev/null +++ b/net-misc/shigofumi/files/shigofumi-0.3-gcc-10.patch @@ -0,0 +1,11 @@ +--- a/src/shigofumi.h ++++ b/src/shigofumi.h +@@ -16,7 +16,7 @@ + extern shi_state state;*/ + + /* UI */ +-FILE *output; ++extern FILE *output; + + /* Data */ + extern struct isds_list *boxes; diff --git a/net-misc/shigofumi/metadata.xml b/net-misc/shigofumi/metadata.xml new file mode 100644 index 000000000000..9189a3f49695 --- /dev/null +++ b/net-misc/shigofumi/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<!-- maintainer-needed --> +<longdescription> + This is command line oriented client for ISDS (Informační systém datových + schránek / Data Box Information System) based on libisds library. +</longdescription> + <origin>gentoo-staging</origin> +</pkgmetadata> diff --git a/net-misc/shigofumi/shigofumi-0.3-r1.ebuild b/net-misc/shigofumi/shigofumi-0.3-r1.ebuild new file mode 100644 index 000000000000..a5dcea0425c7 --- /dev/null +++ b/net-misc/shigofumi/shigofumi-0.3-r1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +WANT_AUTOMAKE="1.11" +inherit autotools + +DESCRIPTION="Command line client for ISDS" +HOMEPAGE="http://xpisar.wz.cz/shigofumi/" +if [[ ${PV} = 9999* ]]; then + EGIT_REPO_URI='https://repo.or.cz/shigofumi.git' + inherit git-r3 +else + SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.bz2" + KEYWORDS="~amd64 ~mips ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="debug doc nls xattr" + +RDEPEND=" + dev-libs/confuse:0= + dev-libs/libxml2:2 + sys-libs/readline:0= + >=net-libs/libisds-0.7 + xattr? ( sys-apps/attr ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( + app-text/docbook-xsl-stylesheets + dev-libs/libxslt + ) + nls? ( sys-devel/gettext ) +" + +PATCHES=( + "${FILESDIR}"/${P}-gcc-10.patch +) + +src_prepare() { + default + [[ ${PV} = 9999* ]] && eautoreconf +} + +src_configure() { + econf \ + --disable-fatalwarnings \ + $(use_enable debug) \ + $(use_enable doc) \ + $(use_enable nls) \ + $(use_enable xattr) +} diff --git a/net-misc/shigofumi/shigofumi-9999.ebuild b/net-misc/shigofumi/shigofumi-9999.ebuild new file mode 100644 index 000000000000..8667bb035c0c --- /dev/null +++ b/net-misc/shigofumi/shigofumi-9999.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +WANT_AUTOMAKE="1.11" +inherit autotools + +DESCRIPTION="Command line client for ISDS" +HOMEPAGE="http://xpisar.wz.cz/shigofumi/" +if [[ ${PV} = 9999* ]]; then + EGIT_REPO_URI='https://repo.or.cz/shigofumi.git' + inherit git-r3 +else + SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.bz2" + KEYWORDS="~amd64 ~mips ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="debug doc nls xattr" + +RDEPEND=" + dev-libs/confuse:0= + dev-libs/libxml2:2 + sys-libs/readline:0= + >=net-libs/libisds-0.7 + xattr? ( sys-apps/attr ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( + app-text/docbook-xsl-stylesheets + dev-libs/libxslt + ) + nls? ( sys-devel/gettext ) +" + +src_prepare() { + default + [[ ${PV} = 9999* ]] && eautoreconf +} + +src_configure() { + econf \ + --disable-fatalwarnings \ + $(use_enable debug) \ + $(use_enable doc) \ + $(use_enable nls) \ + $(use_enable xattr) +} |
