blob: fd80d0cdc7570a7c4d3ce25c2c90310e5a247f08 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/freecdb/freecdb-0.62.ebuild,v 1.5 2003/11/14 15:20:04 matsuu Exp $
DESCRIPTION="A fast, reliable, simple package for creating and reading constant databases"
SRC_URI="http://ftp.debian.org/debian/pool/main/f/freecdb//${P/-/_}.tar.gz"
HOMEPAGE="http://packages.qa.debian.org/f/freecdb.html"
SLOT="0"
PROVIDE="virtual/cdb"
LICENSE="public-domain"
KEYWORDS="x86 ~ppc sparc alpha amd64"
DEPEND="sys-devel/make
dev-lang/perl"
RDEPEND=""
src_compile() {
emake DESTDIR=${D} || die "make failed"
}
src_install() {
dodir /usr/{lib,bin,include}
dodir /usr/share/man/man{1,3}
emake DESTDIR=${D} install
dodoc README
}
|