diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-09-19 10:44:54 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-09-19 10:50:47 +0200 |
commit | 417b0b83d98a585174f0452c0c332be2a244a4b5 (patch) | |
tree | df5af8ca50ee17397dec0dc865b1df9d7f97cbf0 /dev-util | |
parent | dev-libs/xapian-bindings: Remove old (diff) | |
download | gentoo-417b0b83d98a585174f0452c0c332be2a244a4b5.tar.gz gentoo-417b0b83d98a585174f0452c0c332be2a244a4b5.tar.bz2 gentoo-417b0b83d98a585174f0452c0c332be2a244a4b5.zip |
dev-util/comparator: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/comparator/Manifest | 1 | ||||
-rw-r--r-- | dev-util/comparator/comparator-2.10.ebuild | 39 |
2 files changed, 0 insertions, 40 deletions
diff --git a/dev-util/comparator/Manifest b/dev-util/comparator/Manifest index ad7963296409..8656f50e1845 100644 --- a/dev-util/comparator/Manifest +++ b/dev-util/comparator/Manifest @@ -1,2 +1 @@ -DIST comparator-2.10.tar.gz 1463175 BLAKE2B 58d6bddc5f785de3768ed2c4845b75af03c1fd7f646fc15efaeec09878a72355c46c64f67866217994797193aaba6d4214685c7be89be9872620dce5930238e8 SHA512 b880f7a4a0fbfad44c53606c6d97509305d8485f0ab76b62bb0d1d1d6d4be9fb81e7a08326e78cabd1a9314e6efbf3a966eb6393e424f59dc657975a63ce2988 DIST comparator-2.12.tar.gz 1463333 BLAKE2B 081251a0a3cb2f99d5b74092a46a868741049d27c367fc9bc3445d35fe01eaaaee75f7afd3674ecdc2569c2ac1ef2d5acd838a546aa307b33c977c4c8a91db12 SHA512 dc5acf3d5900e293e3f0188c0809bc99f2f18edb55df882b2e12e66bc655e7faf030b8daffdd2d175234b398e6a8c125ca6af615933c998651d7f1579734b080 diff --git a/dev-util/comparator/comparator-2.10.ebuild b/dev-util/comparator/comparator-2.10.ebuild deleted file mode 100644 index d331167b3ead..000000000000 --- a/dev-util/comparator/comparator-2.10.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 toolchain-funcs - -DESCRIPTION="ESR's utility for making fast comparisons among large source trees" -HOMEPAGE="http://www.catb.org/~esr/comparator/" -SRC_URI="http://www.catb.org/~esr/comparator/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm ~mips ppc ppc64 sparc x86" -IUSE="" - -RDEPEND="" -DEPEND="=app-text/docbook-xml-dtd-4.1.2* - app-text/xmlto" - -src_prepare() { - sed \ - -e '/python setup.py install/d' \ - -i Makefile || die "sed failed" -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" - emake comparator.html scf-standard.html - distutils-r1_src_compile -} - -src_install() { - emake ROOT="${D}" install - distutils-r1_src_install - docinto html - dodoc *.html -} |