blob: bea80dc85d81a751b483dc48bfa62313efca93f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Crypt-Rijndael/Crypt-Rijndael-0.05.ebuild,v 1.7 2006/06/24 17:37:55 mcummings Exp $
inherit perl-module eutils
DESCRIPTION="Crypt::CBC compliant Rijndael encryption module"
HOMEPAGE="http://search.cpan.org/~dido/${P}/"
SRC_URI="mirror://cpan/authors/id/D/DI/DIDO/${P}.tar.gz"
LICENSE="|| ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 hppa ~ia64 sparc x86"
IUSE=""
SRC_TEST="do"
src_unpack() {
unpack ${A}
use amd64 && cd ${S} && epatch ${FILESDIR}/crypt-rijndael-amd64.patch
}
|