summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2020-09-18 09:38:53 +0200
committerJoonas Niilola <juippis@gentoo.org>2020-10-02 16:57:10 +0300
commit8768d8be0554eb5330d51b39f31c8ab212322c57 (patch)
tree8648cdce7335b0a14c59f8b1b9c6311fcdb00bdd
parentnet-analyzer/zmap: sync live ebuild (diff)
downloadgentoo-8768d8be.tar.gz
gentoo-8768d8be.tar.bz2
gentoo-8768d8be.zip
media-gfx/chafa: drop old
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Closes: https://github.com/gentoo/gentoo/pull/17582 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
-rw-r--r--media-gfx/chafa/Manifest1
-rw-r--r--media-gfx/chafa/chafa-1.4.0.ebuild41
2 files changed, 0 insertions, 42 deletions
diff --git a/media-gfx/chafa/Manifest b/media-gfx/chafa/Manifest
index 1e527519b08b..c8d6ff58a27a 100644
--- a/media-gfx/chafa/Manifest
+++ b/media-gfx/chafa/Manifest
@@ -1,2 +1 @@
-DIST chafa-1.4.0.tar.xz 388932 BLAKE2B 0ccaae1495bd410b05d291ebcf2b6266374f013536ec1b953d6127e63c20b11ff78e96772309caeb5c4bbfc40729f60291b0ab3d2395824801aec7763c1ac2b3 SHA512 e464750296db0eca5d718ff70dbb51529abcd4ff3d5bdd15f20f10ff0207f282e8b59799476fc05718efb48b81b331ae1518d450efd6b62b98a41049e1c6e9d5
DIST chafa-1.4.1.tar.xz 389428 BLAKE2B 8ed6c6d57953d784763f10c274bd8b7acf7857b095bae58c476d2e17418a7112f1ec000d667eebfc2eda712c9588e686ad4021da017f4d187a5461c0435c5476 SHA512 f0bd1911fd544f93afadbb2105f151dc77e31a2f3af4c7f8441a06f547a7ebe0674664721b18c3a35a7c4e745dda666713adc1dfbe5e97dfdc54856a13bd5063
diff --git a/media-gfx/chafa/chafa-1.4.0.ebuild b/media-gfx/chafa/chafa-1.4.0.ebuild
deleted file mode 100644
index 1a2aba138914..000000000000
--- a/media-gfx/chafa/chafa-1.4.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="versatile and fast Unicode/ASCII/ANSI graphics renderer"
-HOMEPAGE="https://hpjansson.org/chafa/ https://github.com/hpjansson/chafa"
-SRC_URI="https://hpjansson.org/chafa/releases/${P}.tar.xz"
-
-LICENSE="LGPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs +tools"
-
-RDEPEND="
- dev-libs/glib:2
- media-gfx/imagemagick:0=
- tools? ( >=media-libs/freetype-2.0.0 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_configure() {
- local econfargs=(
- $(use_enable static-libs static)
- # install manpage manually
- --disable-man
- $(use_with tools)
- )
-
- econf "${econfargs[@]}"
-}
-
-src_install() {
- local DOCS=( AUTHORS NEWS README TODO )
- default
-
- use tools && doman docs/chafa.1
-
- find "${ED}"/usr/lib* -name '*.la' -delete || die
-}