blob: 1d380376e8be439265dec7865fa9ba82fe387939 (
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
34
35
36
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libvpd/libvpd-2.2.4.ebuild,v 1.1 2015/05/31 09:05:05 jer Exp $
EAPI=5
inherit eutils udev
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="static-libs"
DEPEND="
>=dev-db/sqlite-3.7.8
sys-libs/zlib
"
RDEPEND="${DEPEND}"
src_configure() {
# sysconfdir is used only to establish where the udev rules file should go
# unfortunately it also adds the subdirs on its own so we strip it down to
# dirname
econf \
$(use_enable static-libs static) \
--sysconfdir="$( dirname $(get_udevdir) )"
}
src_install(){
emake DESTDIR="${D}" install
prune_libtool_files
}
|