blob: 579b14521135689f5b947e5260350b07c90e9dd9 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigsegv/libsigsegv-2.4.ebuild,v 1.13 2008/07/07 13:14:19 armin76 Exp $
inherit eutils autotools
DESCRIPTION="GNU libsigsegv is a library for handling page faults in user mode."
HOMEPAGE="ftp://ftp.gnu.org/pub/gnu/libsigsegv/"
SRC_URI="mirror://gnu/libsigsegv/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
IUSE=""
DEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
AT_M4DIR=m4 eautoreconf
}
src_compile() {
econf --enable-shared
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed."
dodoc AUTHORS ChangeLog* NEWS PORTING README* || die
}
|