blob: 4d090d398759feb138d53eb82adc939133fa00c8 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-lzo/python-lzo-1.08.ebuild,v 1.1 2007/04/14 01:27:56 dragonheart Exp $
inherit eutils distutils
DESCRIPTION="Python interface to lzo"
SRC_URI="http://www.oberhumer.com/opensource/lzo/download/LZO-v1/${P}.tar.gz"
HOMEPAGE="http://www.oberhumer.com/opensource/lzo/"
RDEPEND="virtual/python
dev-libs/lzo"
DEPEND="${RDEPEND}"
IUSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2"
src_unpack() {
unpack ${A}
if has_version ">=dev-libs/lzo-2"; then
epatch "${FILESDIR}"/lzo2compat.patch
fi
}
src_install() {
mydoc="NEWS PKG-INFO README"
distutils_src_install
}
|