blob: 31d00fef29fdcdc3bc63a76c0e050e64b0be486d (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigsegv/libsigsegv-2.2.ebuild,v 1.3 2005/03/18 08:16:35 mkennedy Exp $
inherit eutils
DESCRIPTION="GNU libsigsegv is a library for handling page faults in user mode."
HOMEPAGE="ftp://ftp.gnu.org/pub/gnu/libsigsegv/"
SRC_URI="ftp://ftp.gnu.org/pub/gnu/libsigsegv/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
#KEYWORDS="~x86 ~ppc ~ppc-macos"
KEYWORDS="~x86 ~ppc-macos ~amd64"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
if use ppc-macos ; then
./configure --enable-shared || die
else
econf --enable-shared || die
fi
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog* INSTALL NEWS PORTING README*
}
|