blob: 7e924d06091ac4fb5fc1ce396af5187d5954ef92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: mike polniak <mikpolniak@adelphia.net>
# $Header: /var/cvsroot/gentoo-x86/app-misc/glimpse/glimpse-4.15.ebuild,v 1.1 2002/02/10 08:26:54 blocke Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A index/query system to search a large set of files quickly"
SRC_URI="http://webglimpse.net/trial/${P}.tar.gz"
HOMEPAGE="http://webglimpse.net"
DEPEND="virtual/glibc"
src_compile() {
make clean
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man/man1 || die "./configure failed"
make || die
}
src_install () {
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man/man1 \
infodir=${D}/usr/share/info \
install || die
doman *.1
}
|