blob: 2070c80a2ecc90541eab3e9eebab4cce0fd6aa1a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/cryptix-jce-bin/cryptix-jce-bin-20040825.ebuild,v 1.3 2005/01/01 18:21:49 eradicator Exp $
inherit java-pkg
DESCRIPTION="Cryptix JCE is a complete clean-room implementation of the official JCE 1.2 API as published by Sun."
SRC_URI="http://cryptix.org/dist/${P/-bin}-snap.zip"
HOMEPAGE="http://cryptix.org/"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
DEPEND="app-arch/unzip"
RDEPEND=">=virtual/jdk-1.2"
S=${WORKDIR}
src_compile() { :; }
src_install() {
dodoc README.TXT ChangeLog.txt LICENCE.TXT
java-pkg_dojar bin/*.jar
}
|