33 lines
734 B
Bash
33 lines
734 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libvpd/libvpd-2.2.0.ebuild,v 1.1 2013/02/28 20:31:30 ranger Exp $
|
|
|
|
EAPI=4
|
|
|
|
DESCRIPTION="Library implementation for listing vpds"
|
|
HOMEPAGE="http://sourceforge.net/projects/linux-diag/"
|
|
SRC_URI="http://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"
|
|
|
|
}
|