app-i18n/libtabe: Remove old

Bug: https://bugs.gentoo.org/697382
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
David Seifert
2019-10-19 12:48:01 +02:00
parent a2db06b45f
commit d8c1b6629c
2 changed files with 0 additions and 54 deletions

View File

@@ -1,3 +1,2 @@
DIST libtabe_0.2.6-1.1.diff.gz 74149 BLAKE2B cbd5ba77d41ef147a339c6456bf42fb16b31a6928ab858338b52960ec3c8a4aa24af194d9c2eb92f64738af4f3289b889efb76ce792225823dc3d8e8f4ce8837 SHA512 001a08d69d93f0092c8a54c11a88afab850de1383febeda68c1a6b2a2b1447d01c929de47c7d947e390706d0bec6b8825b8fe11fc6c8a40d6d047b644009b6e2
DIST libtabe_0.2.6-1.2.diff.gz 74362 BLAKE2B d09e91bad9e9e3240cdc261140012977f318436af420564692152a8b7a99cd7c427433a6180c1f9490995b43cd95200318ffb5dab68fc18561d7ced58fd00bd6 SHA512 011a76f3c8a1c13a6cfd0e96eb41557a8bfbf1aca8cb79daee0f0941b920d25614df5e0479368bf7075cb511851cab4c9113b30656d55b4d29128eb7312d0ef1
DIST libtabe_0.2.6.orig.tar.gz 1792199 BLAKE2B fec2259678a57b144eccf49ba459d2930f89f871873b3547040fd570a0f8510bc84e27609b1ca2d82596d5a025f0bd7251870655f4a83758be806f75db5abb48 SHA512 88f1cb279ccf487de5d0f8a1e9eede8d5ca16e4507b59db0b66241d0cdae609ed0b04093a82eabe0569f885aa397c1d5fa3f0ae3c3270a348ce045d73e01fbc7

View File

@@ -1,53 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
inherit eutils libtool autotools multilib
DESCRIPTION="Libtabe provides bimsphone support for xcin-2.5+"
HOMEPAGE="https://packages.qa.debian.org/libt/libtabe.html"
SRC_URI="mirror://debian/pool/main/libt/libtabe/${P/-/_}.orig.tar.gz
mirror://debian/pool/main/libt/libtabe/${P/-/_}-1.1.diff.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE="debug"
DEPEND=">=sys-libs/db-4.5
x11-libs/libX11"
S=${WORKDIR}/${P}.orig
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}"/${P/-/_}-1.1.diff
epatch "${FILESDIR}"/${P}-fabs.patch
rm -f configure
elibtoolize
cd script
eautoreconf
cp script/* ./
cp configure ../
cd ..
}
src_compile() {
myconf="--with-db-inc=/usr/include
--with-db-lib=/usr/$(get_libdir)
--with-db-bin=/usr/bin
--with-db-name=db
--enable-shared
--disable-static
$(use_enable debug)"
econf ${myconf}
emake -j1 || die "make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc doc/*
}