diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2019-08-19 21:01:27 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2019-08-19 21:01:27 -0400 |
commit | 6b66f6da4ce2e120187926339c69a45e60d478fd (patch) | |
tree | 3a35ea0cf35494aad573ebc0dcf1c09335c10b6e /app-text/xapian-omega/xapian-omega-1.4.12.ebuild | |
parent | dev-libs/xapian-bindings: version bump to 1.4.12 (diff) | |
download | gentoo-6b66f6da4ce2e120187926339c69a45e60d478fd.tar.gz gentoo-6b66f6da4ce2e120187926339c69a45e60d478fd.tar.bz2 gentoo-6b66f6da4ce2e120187926339c69a45e60d478fd.zip |
app-text/xapian-omega: version bump to 1.4.12
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'app-text/xapian-omega/xapian-omega-1.4.12.ebuild')
-rw-r--r-- | app-text/xapian-omega/xapian-omega-1.4.12.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app-text/xapian-omega/xapian-omega-1.4.12.ebuild b/app-text/xapian-omega/xapian-omega-1.4.12.ebuild new file mode 100644 index 000000000000..4a7e3ffd806d --- /dev/null +++ b/app-text/xapian-omega/xapian-omega-1.4.12.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +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 +} |