blob: 3b9b62146dfaa7b2edc0e3d54f4ac5d34a870716 (
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.3 2003/02/13 11:35:05 vapier 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"
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/*
}
|