summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2003-03-13 09:58:06 +0000
committerGeorge Shapovalov <george@gentoo.org>2003-03-13 09:58:06 +0000
commit687109434fb91d3b82275333f27717eb61bccc1f (patch)
tree91bd7381def5966cdd871145e8bcb9d61025bf0d /dev-libs/xapian
parentFixed IUSE - RDEPEND - LICENSE (diff)
downloadhistorical-687109434fb91d3b82275333f27717eb61bccc1f.tar.gz
historical-687109434fb91d3b82275333f27717eb61bccc1f.tar.bz2
historical-687109434fb91d3b82275333f27717eb61bccc1f.zip
new package - probabilistic information retrieval library
Diffstat (limited to 'dev-libs/xapian')
-rw-r--r--dev-libs/xapian/ChangeLog10
-rw-r--r--dev-libs/xapian/files/digest-xapian-0.5.51
-rw-r--r--dev-libs/xapian/xapian-0.5.5.ebuild32
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-libs/xapian/ChangeLog b/dev-libs/xapian/ChangeLog
new file mode 100644
index 000000000000..03c3e9d3772d
--- /dev/null
+++ b/dev-libs/xapian/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-libs/xapian
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.1 2003/03/13 09:58:06 george Exp $
+
+*xapian-0.5.5.ebuild (13 Mar 2003)
+
+ 13 Mar 2003; George Shapovalov <george@gentoo.org> ChangeLog, xapian-0.5.5.ebuild, files/{digest-xapian-0.5.5} :
+ initial release (#14849)
+ Xapian Probabilistic Information Retrieval library
+ ebuild submitted by Leon Brocard <acme@astray.com>
diff --git a/dev-libs/xapian/files/digest-xapian-0.5.5 b/dev-libs/xapian/files/digest-xapian-0.5.5
new file mode 100644
index 000000000000..9f93287ca9d5
--- /dev/null
+++ b/dev-libs/xapian/files/digest-xapian-0.5.5
@@ -0,0 +1 @@
+MD5 9b5bdfd512d8eb49f86453ac68ae9036 xapian-core-0.5.5.tar.gz 1502017
diff --git a/dev-libs/xapian/xapian-0.5.5.ebuild b/dev-libs/xapian/xapian-0.5.5.ebuild
new file mode 100644
index 000000000000..06efa0dee2ad
--- /dev/null
+++ b/dev-libs/xapian/xapian-0.5.5.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-0.5.5.ebuild,v 1.1 2003/03/13 09:58:06 george Exp $
+
+IUSE=""
+
+S=${WORKDIR}/xapian-core-${PV}
+DESCRIPTION="Xapian Probabilistic Information Retrieval library"
+SRC_URI="http://www.tartarus.org/~olly/xapian-0.5.5/xapian-core-${PV}.tar.gz"
+HOMEPAGE="http://www.xapian.org/"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+
+DEPEND="virtual/glibc"
+
+src_compile() {
+ econf || die "./configure failed"
+ emake || die
+}
+
+src_install () {
+ einstall || die
+ dodoc AUTHORS COPYING HACKING INSTALL PLATFORMS README TODO
+ #docs tly et installed under /usr/share/xapian, lets move them under /usr/share/doc..
+ cd ${D}/usr/share/${PN}
+ dodir /usr/share/doc/${PF}/html
+ mv *.html apidoc/ ${D}/usr/share/doc/${PF}/html
+ mv * ${D}/usr/share/doc/${PF}
+ rmdir ${D}/usr/share/${PN}
+}