blob: b56ee034fae8c28ad5c5a2888c7354a4dd49138d (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/m2crypto/m2crypto-0.07_alpha3.ebuild,v 1.4 2003/06/21 22:30:24 drobbins Exp $
DESCRIPTION="A python wrapper for the OpenSSL crypto library"
HOMEPAGE="http://www.post1.com/home/ngps/m2/"
MY_P=${P/_alpha/-snap}
SRC_URI="http://www.post1.com/home/ngps/m2/${MY_P}.zip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 amd64"
DEPEND="dev-libs/openssl"
S=${WORKDIR}/${MY_P}
IUSE=""
inherit distutils
src_install () {
mydoc=""
distutils_src_install
# can't dodoc, doesn't handle subdirs
dodir /usr/share/doc/${PF}/example
cp -a demo/* ${D}/usr/share/doc/${PF}/example
dodoc BUGS CHANGES STORIES
dohtml -r doc/*
}
|