From 0bff53119f08d677db6c1a991bd30741682a8a08 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 2 Jun 2018 17:13:10 +0100 Subject: Revert "gentoo resync : 02.06.2018" This reverts commit 6c14fa2586d9e9c4427b5f727dc6c8ab77587cec. --- app-text/tokyodystopia/Manifest | 2 +- app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild | 27 ++++++++++++---------- 2 files changed, 16 insertions(+), 13 deletions(-) (limited to 'app-text/tokyodystopia') diff --git a/app-text/tokyodystopia/Manifest b/app-text/tokyodystopia/Manifest index feda57cc18f4..17b9c2019807 100644 --- a/app-text/tokyodystopia/Manifest +++ b/app-text/tokyodystopia/Manifest @@ -2,5 +2,5 @@ AUX fix_ldconfig.patch 439 BLAKE2B fa9c4b1cf06b2ea8e0a2ff6546e09040e92718558e824 AUX fix_rpath.patch 2631 BLAKE2B abc4903f98c2399f9514322cc93e9ead3452f09fd5fc88f8ac096613ed676eec517f9eb3fd3412f438a047e9c0305535589bb8ef263f55721dc02c503cfeb87f SHA512 cc4a357c5dbdc95e0b557e2a9578b5e4c6595b19c9b8c061b9882f77f25a5f2b710c1fc83aed1bb1ec8df6ca22ab20b822f1d134743c7ccdd94f68a30bc199b1 AUX remove_docinst.patch 456 BLAKE2B 768890c4f85a391eac2e436db6b457042a8bf6b28c1c370d19be67a85c194b5a4be06b1f5f1541ad0552228145c7e44587c9c39fa553a5866d8886220e8d2847 SHA512 cb052f09c37e0b84e9e236cf7722974b29e0a2d537bd1268cbb8de0db9ba35292836c82b1d21b35f04b753d58c908f32bb42ceeaba03ae086888aeb278dd6a29 DIST tokyodystopia-0.9.15.tar.gz 158522 BLAKE2B 624efe5ab587b8fcb63c6365862851ec8f3e596a9d75b48a273e008fadc0919004c6163ca54600b741289ed9f16f9e6d003766a4562f3df6214d48e3ff647ada SHA512 14e956ea6d84c3e00f1af5b8fd7e7ded8e886d585d80f492119521594826e21dd556b875b9552203c9d2f9e2830b15078d635a62975162436a7c2a13387086dd -EBUILD tokyodystopia-0.9.15.ebuild 719 BLAKE2B a2aa45d98aff6d418ec949d1aa1b3802537a01db7bd29a0f6ca253420c5d7bc9ce62383294629d7376c843fc41a521b7f7cbe0f36447e58a28979d48fb7bf518 SHA512 ac94b786b140e5c682aec0ca1ef7dbd465372cc449242138a8573638ee7431d3d60f0a1e081bfb8f6296206723db9d4e43b85eaf50e172696e1e0fc4abf0b270 +EBUILD tokyodystopia-0.9.15.ebuild 851 BLAKE2B 037e2e22b7982a3516ce4abc7e4797e81deb6363faeb0d38a6a74d7667849bfd22782bfb8c6395260ed7eca91a9b40fa70238b1c7198575f17911cdc30a8e791 SHA512 23d0384098c12352f79db79c0835be29d91fa988a370c357f2d7920a3acefc06967f0dee5f094fa8449626b069fee976b23206a48a7f96971e7728ff49a18aec MISC metadata.xml 247 BLAKE2B 5a20af3c9732ef7dba68131a08988652f5c93a6d186a82c4deb1bb9c06dc3ae73152a0d241cc346637f7b11caf4676da43301ba596c67b66669535e71db0b03e SHA512 29cf52c16b0cce69899d9c2da8acd9144b7d760442aa323b854dceadb42459e009545193b1df7911ac2241b59f4819b4a6bb1d206d6f57953f770031433bb6b7 diff --git a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild index 853fc3b700e1..9a0508821fb2 100644 --- a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild +++ b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI="2" + +inherit eutils DESCRIPTION="A fulltext search engine for Tokyo Cabinet" HOMEPAGE="http://fallabs.com/tokyodystopia/" @@ -15,27 +17,28 @@ IUSE="examples" DEPEND="dev-db/tokyocabinet" RDEPEND="${DEPEND}" -PATCHES=( - "${FILESDIR}/fix_rpath.patch" - "${FILESDIR}/fix_ldconfig.patch" - "${FILESDIR}/remove_docinst.patch" -) +src_prepare() { + epatch "${FILESDIR}/fix_rpath.patch" + epatch "${FILESDIR}/fix_ldconfig.patch" + epatch "${FILESDIR}/remove_docinst.patch" +} src_configure() { - econf --libexecdir="${EPREFIX}"/usr/libexec/${PN} + econf --libexecdir=/usr/libexec/${PN} || die } src_install() { - HTML_DOCS=( doc/. ) + emake DESTDIR="${D}" install || die "Install failed" - default + dohtml doc/* || die if use examples; then insinto /usr/share/${PF}/example - doins example/. + doins example/* || die "Install failed" fi + } src_test() { - emake -j1 check + emake -j1 check || die "Tests failed" } -- cgit v1.2.3