summaryrefslogtreecommitdiff
blob: 29ddce10f4927b5321517b7c50b75c26dcb02df2 (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libPropList/libPropList-0.10.1-r4.ebuild,v 1.1 2010/09/18 04:01:27 jer Exp $

EAPI="2"

inherit autotools eutils

DESCRIPTION="libPropList"
HOMEPAGE="http://www.windowmaker.org/"
SRC_URI="ftp://ftp.windowmaker.org/pub/libs/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="static-libs"

src_prepare() {
	epatch "${FILESDIR}"/${P}-include.patch
	eautoreconf
}

src_configure() {
	econf $(use_enable static-libs static)
}

src_install() {
	emake prefix="${D}/usr" install || die
	dodoc AUTHORS ChangeLog README TODO
}