blob: 23e80e51b1b8c1f34d67af1f1f1db9b5e32f2aed (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gperf/gperf-3.0.1.ebuild,v 1.16 2006/09/10 16:58:35 the_paya Exp $
inherit eutils
DESCRIPTION="A perfect hash function generator"
HOMEPAGE="http://www.gnu.org/software/gperf/gperf.html"
SRC_URI="ftp://ftp.gnu.org/pub/gnu/gperf/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE=""
DEPEND="virtual/libc"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-gcc4.patch
}
src_install() {
make DESTDIR=${D} install || die
}
|