summaryrefslogtreecommitdiff
blob: 34a3599313fec7a55728345b985c7ea4169f7e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/libhx-2.3.ebuild,v 1.1 2009/01/13 12:12:16 hanno Exp $

DESCRIPTION="Platform independent library providing basic system functions."
HOMEPAGE="http://jengelh.medozas.de/files/libHX/"
SRC_URI="http://jengelh.medozas.de/files/libHX/libHX-${PV}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="virtual/libc"
S="${WORKDIR}/libHX-${PV}"

src_compile() {
	econf || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc doc/* || die
}