blob: 3c9cf436ccc4cc8843239079210d896b3537e5c1 (
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
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/largorecipes/largorecipes-0.9.0.3.ebuild,v 1.7 2004/06/24 22:21:09 agriffis Exp $
# Based on an original ebuild by Per Wigren <wigren@home.se>
inherit java-pkg
DESCRIPTION="LargoRecipes is an application for managing recipes."
SRC_URI="mirror://sourceforge/largorecipes/${PN}-0.9.0.1.jar
mirror://sourceforge/largorecipes/${PN}patch-${PV}.jar"
HOMEPAGE="http://largorecipes.sourceforge.net/"
IUSE=""
DEPEND=">=virtual/jre-1.4"
SLOT="0"
KEYWORDS="x86 ~sparc ~ppc"
LICENSE="GPL-2"
src_unpack() {
mkdir -p ${S}
cp ${DISTDIR}/${PN}-0.9.0.1.jar ${S}
cp ${DISTDIR}/${PN}patch-0.9.0.3.jar ${S}
}
src_compile() {
einfo "No compilation needed (for now)"
}
src_install() {
dobin ${FILESDIR}/largorecipes
java-pkg_dojar ${PN}-0.9.0.1.jar
java-pkg_dojar ${PN}patch-0.9.0.3.jar
}
|