blob: de802c6101c2e488ec4f8978e99c8c7b61c3b01f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pythondialog/pythondialog-2.7.ebuild,v 1.1 2004/11/06 10:50:57 kloeri Exp $
inherit eutils distutils
DESCRIPTION="A Python module for making simple text/console-mode user interfaces."
HOMEPAGE="http://pythondialog.sourceforge.net/"
SRC_URI="mirror://sourceforge/pythondialog/${PF}.tar.bz2"
SLOT="0"
KEYWORDS="~x86"
LICENSE="LGPL-2"
IUSE=""
DEPEND="virtual/python
dev-util/dialog"
src_unpack() {
unpack ${A}
cd ${S}
sed -ie "s:/usr/local:/usr:g" setup.cfg
}
|