blob: cea1e1e6d5a09e628b56e48256b459193d23b2a0 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-mhash/python-mhash-1.2.ebuild,v 1.4 2007/07/05 10:58:27 hawking Exp $
inherit distutils
DESCRIPTION="Python interface to libmhash"
SRC_URI="mirror://sourceforge/mhash/${P}.tar.gz"
HOMEPAGE="http://mhash.sourceforge.net/"
DEPEND="virtual/python
app-crypt/mhash"
IUSE=""
SLOT="0"
KEYWORDS="x86"
LICENSE="GPL-2"
src_unpack() {
unpack ${A}
# fix a glitch for gcc3.3 compiling
sed '231s/$/\\/' -i ${S}/mhash.c
}
src_install() {
DOCS="AUTHORS"
distutils_src_install
}
|