Gentoo Archives: gentoo-commits

From: "Kenneth Prugh (ken69267)" <ken69267@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/slashtime: ChangeLog slashtime-0.5.8.ebuild slashtime-0.5.5.ebuild slashtime-0.5.6.ebuild slashtime-0.5.4.ebuild
Date: Tue, 14 Oct 2008 02:58:42
Message-Id: E1Kpa7H-0006aV-67@stork.gentoo.org
1 ken69267 08/10/14 02:58:35
2
3 Modified: ChangeLog
4 Added: slashtime-0.5.8.ebuild
5 Removed: slashtime-0.5.5.ebuild slashtime-0.5.6.ebuild
6 slashtime-0.5.4.ebuild
7 Log:
8 Version bump. Removed old versions.
9 (Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo-r1 x86_64)
10
11 Revision Changes Path
12 1.5 app-misc/slashtime/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/slashtime/ChangeLog?rev=1.5&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/slashtime/ChangeLog?rev=1.5&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/slashtime/ChangeLog?r1=1.4&r2=1.5
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-misc/slashtime/ChangeLog,v
21 retrieving revision 1.4
22 retrieving revision 1.5
23 diff -u -r1.4 -r1.5
24 --- ChangeLog 18 Aug 2008 02:16:05 -0000 1.4
25 +++ ChangeLog 14 Oct 2008 02:58:35 -0000 1.5
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-misc/slashtime
28 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-misc/slashtime/ChangeLog,v 1.4 2008/08/18 02:16:05 ken69267 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-misc/slashtime/ChangeLog,v 1.5 2008/10/14 02:58:35 ken69267 Exp $
31 +
32 +*slashtime-0.5.8 (14 Oct 2008)
33 +
34 + 14 Oct 2008; Kenneth Prugh <ken69267@g.o> -slashtime-0.5.4.ebuild,
35 + -slashtime-0.5.5.ebuild, -slashtime-0.5.6.ebuild, +slashtime-0.5.8.ebuild:
36 + Version bump. Removed old versions.
37
38 *slashtime-0.5.6 (18 Aug 2008)
39
40
41
42
43 1.1 app-misc/slashtime/slashtime-0.5.8.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/slashtime/slashtime-0.5.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/slashtime/slashtime-0.5.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: slashtime-0.5.8.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-misc/slashtime/slashtime-0.5.8.ebuild,v 1.1 2008/10/14 02:58:35 ken69267 Exp $
53
54 EAPI=1
55 JAVA_PKG_IUSE="source"
56
57 inherit java-pkg-2
58
59 DESCRIPTION="View the time at locations around the world"
60 HOMEPAGE="http://research.operationaldynamics.com/projects/slashtime/"
61 SRC_URI="http://research.operationaldynamics.com/projects/${PN}/dist/${P}.tar.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 COMMON_DEP=">=dev-java/java-gnome-4.0.9:4.0"
69
70 DEPEND=">=virtual/jdk-1.5
71 ${COMMON_DEP}"
72 RDEPEND=">=virtual/jre-1.5
73 ${COMMON_DEP}"
74
75 src_compile() {
76 # Handwritten in perl so not using econf
77 ./configure --prefix=/usr || die
78
79 emake || die "emake failed."
80 }
81
82 src_install() {
83 #this is needed to generate the slashtime jar
84 emake DESTDIR="${D}" install || die "emake install failed."
85
86 #remove incorrect install path
87 rm -r "${D}"/usr/share/java/
88 rm "${D}"/usr/bin/slashtime
89
90 java-pkg_register-dependency java-gnome-4.0 gtk.jar
91 java-pkg_dojar tmp/${PN}.jar
92 java-pkg_dolauncher ${PN} --main slashtime.client.Master \
93 --pwd /usr
94
95 dodoc AUTHORS HACKING PLACES README TODO || die "dodoc failed."
96
97 use source && java-pkg_dosrc src/java/slashtime
98 }