mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 08:58:27 -07:00
33 lines
569 B
Bash
33 lines
569 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="SAC is a standard interface for CSS parser"
|
|
HOMEPAGE="http://www.w3.org/Style/CSS/SAC/"
|
|
SRC_URI="http://www.w3.org/2002/06/sacjava-${PV}.zip -> ${P}.zip"
|
|
|
|
LICENSE="W3C"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=virtual/jre-1.6"
|
|
|
|
DEPEND="
|
|
>=virtual/jdk-1.6
|
|
source? ( app-arch/zip )"
|
|
|
|
S="${WORKDIR}/${P}"
|
|
|
|
JAVA_SRC_DIR="org"
|
|
|
|
java_prepare() {
|
|
java-pkg_clean
|
|
}
|