diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-27 22:56:31 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-27 23:34:16 +0200 |
commit | 5d23d0361ddc62099a465dfad442299bb52c918b (patch) | |
tree | 3c8762d3d1cf62371be6fbd0a5efa8e8f322777f /app-text/libnumbertext | |
parent | x11-misc/sddm: Upstream adj. to sddm.service to fix logind race cond. (diff) | |
download | gentoo-5d23d0361ddc62099a465dfad442299bb52c918b.tar.gz gentoo-5d23d0361ddc62099a465dfad442299bb52c918b.tar.bz2 gentoo-5d23d0361ddc62099a465dfad442299bb52c918b.zip |
app-text/libnumbertext: New package
Closes: https://bugs.gentoo.org/656124
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'app-text/libnumbertext')
-rw-r--r-- | app-text/libnumbertext/Manifest | 1 | ||||
-rw-r--r-- | app-text/libnumbertext/libnumbertext-1.0_beta2.ebuild | 35 | ||||
-rw-r--r-- | app-text/libnumbertext/metadata.xml | 8 |
3 files changed, 44 insertions, 0 deletions
diff --git a/app-text/libnumbertext/Manifest b/app-text/libnumbertext/Manifest new file mode 100644 index 000000000000..64923abc1063 --- /dev/null +++ b/app-text/libnumbertext/Manifest @@ -0,0 +1 @@ +DIST libnumbertext-1.0_beta2.tar.gz 407135 BLAKE2B 6fecc6c885fbd9a2a701e5d3c10d38205e2d66a9e1e26609da8dd3ae92d2a954528ba011e7442fee0f4ffb3035ebe9381076a3eaac368e15a98a02508828997c SHA512 0db0e800495507b6173a134b1d2e681c326df56fc6fdaf5ae9e69e9f10ccfde1ad13b2150fb6120d15bd401c348a58570cbcad1b0be01fd80e24b67a67fd236a diff --git a/app-text/libnumbertext/libnumbertext-1.0_beta2.ebuild b/app-text/libnumbertext/libnumbertext-1.0_beta2.ebuild new file mode 100644 index 000000000000..9145fa33adb8 --- /dev/null +++ b/app-text/libnumbertext/libnumbertext-1.0_beta2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Number to number name and money text conversion libraries" +HOMEPAGE="https://github.com/Numbertext/libnumbertext" +SRC_URI="https://github.com/Numbertext/${PN}/archive/${PV/_/.}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc test" + +RDEPEND="" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${P/_/.}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --disable-werror +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/app-text/libnumbertext/metadata.xml b/app-text/libnumbertext/metadata.xml new file mode 100644 index 000000000000..13ce236ee519 --- /dev/null +++ b/app-text/libnumbertext/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>office@gentoo.org</email> + <name>Gentoo Office project</name> + </maintainer> +</pkgmetadata> |