summaryrefslogtreecommitdiff
blob: f549f293e348b2f17c4e692668c3db6c5059c1a0 (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
32
33
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=4

DESCRIPTION="Library implementation for listing vpds"
HOMEPAGE="https://sourceforge.net/projects/linux-diag/"
SRC_URI="https://sourceforge.net/projects/linux-diag/files/libvpd/${PV}/libvpd-${PV}.tar.gz"

LICENSE="IBM"
SLOT="0"
KEYWORDS="ppc ppc64"
IUSE=""

DEPEND=">=dev-db/sqlite-3.7.8
		sys-libs/zlib"

RDEPEND="${DEPEND}"

src_unpack() {
	unpack ${A}
}

src_configure() {
	./bootstrap.sh
	econf || die "Unable to configure"
}

src_install(){
	emake DESTDIR="${D}" install || die "Something went wrong"

}