diff options
Diffstat (limited to 'app-text/xapian-omega/xapian-omega-1.2.21.ebuild')
-rw-r--r-- | app-text/xapian-omega/xapian-omega-1.2.21.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-text/xapian-omega/xapian-omega-1.2.21.ebuild b/app-text/xapian-omega/xapian-omega-1.2.21.ebuild new file mode 100644 index 000000000000..83c32bf2ce37 --- /dev/null +++ b/app-text/xapian-omega/xapian-omega-1.2.21.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +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="http://www.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-${PV} + dev-lang/perl + dev-libs/libpcre + sys-libs/zlib" +RDEPEND="${DEPEND}" + +src_install () { + emake DESTDIR="${D}" install + + #move docs to /usr/share/doc/${PF}. + mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}" + + dodoc AUTHORS ChangeLog INSTALL NEWS README TODO +} |