| 1 |
# Copyright 1999-2010 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libPropList/libPropList-0.10.1-r3.ebuild,v 1.13 2009/05/05 08:02:11 ssuominen Exp $
|
| 4 |
|
| 5 |
EAPI="2"
|
| 6 |
|
| 7 |
inherit autotools eutils
|
| 8 |
|
| 9 |
DESCRIPTION="libPropList"
|
| 10 |
HOMEPAGE="http://www.windowmaker.org/"
|
| 11 |
SRC_URI="ftp://ftp.windowmaker.org/pub/libs/${P}.tar.gz"
|
| 12 |
LICENSE="LGPL-2"
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
|
| 15 |
IUSE="static-libs"
|
| 16 |
|
| 17 |
src_prepare() {
|
| 18 |
epatch "${FILESDIR}"/${P}-include.patch
|
| 19 |
eautoreconf
|
| 20 |
}
|
| 21 |
|
| 22 |
src_configure() {
|
| 23 |
econf $(use_enable static-libs static)
|
| 24 |
}
|
| 25 |
|
| 26 |
src_install() {
|
| 27 |
emake prefix="${D}/usr" install || die
|
| 28 |
dodoc AUTHORS ChangeLog README TODO
|
| 29 |
}
|