summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2020-04-23 14:12:56 -0400
committerAnthony G. Basile <blueness@gentoo.org>2020-04-23 14:22:40 -0400
commit0f692afd4b28099fff29a928fbaf27954d27ef69 (patch)
tree2f68b652a8c63dcdb29a4d0805842f6472a533ba /app-text/xapian-omega/xapian-omega-1.4.7.ebuild
parentdev-libs/xapian-bindings: remove older version (diff)
downloadgentoo-0f692afd4b28099fff29a928fbaf27954d27ef69.tar.gz
gentoo-0f692afd4b28099fff29a928fbaf27954d27ef69.tar.bz2
gentoo-0f692afd4b28099fff29a928fbaf27954d27ef69.zip
app-text/xapian-omega: remove older version
Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'app-text/xapian-omega/xapian-omega-1.4.7.ebuild')
-rw-r--r--app-text/xapian-omega/xapian-omega-1.4.7.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/app-text/xapian-omega/xapian-omega-1.4.7.ebuild b/app-text/xapian-omega/xapian-omega-1.4.7.ebuild
deleted file mode 100644
index 1829fc6f9d38..000000000000
--- a/app-text/xapian-omega/xapian-omega-1.4.7.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-DESCRIPTION="An application built on Xapian, consisting of indexers and a CGI search frontend"
-SRC_URI="http://www.oligarchy.co.uk/xapian/${PV}/xapian-omega-${PV}.tar.xz"
-HOMEPAGE="https://xapian.org/"
-S="${WORKDIR}/xapian-omega-${PV}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND="dev-libs/xapian:0/30
- dev-lang/perl
- dev-libs/libpcre
- sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-src_install() {
- emake DESTDIR="${D}" install
-
- # Protect /etc/omega.conf
- echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
- doenvd "${T}"/20xapian-omega
- dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
-
- # Directory containing Xapian databases:
- keepdir /var/lib/omega/data
-
- # Directory containing OmegaScript templates:
- keepdir /var/lib/omega/templates
- mv "${S}"/templates/* "${D}"/var/lib/omega/templates || die
-
- # Directory to write Omega logs to:
- keepdir /var/log/omega
-
- # Directory containing any cdb files for the $lookup OmegaScript command:
- keepdir /var/lib/omega/cdb
-}