summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Wijsman <tomwij@gentoo.org>2013-07-08 14:21:28 +0000
committerTom Wijsman <tomwij@gentoo.org>2013-07-08 14:21:28 +0000
commit59d73f14b6a9c011e9892352430808a20eb2a229 (patch)
tree032eeb46885c979f4e8bc4d7ac7c676f9dee72b8 /app-misc/slashtime
parentVersion bump to 1.4. (diff)
downloadgentoo-2-59d73f14b6a9c011e9892352430808a20eb2a229.tar.gz
gentoo-2-59d73f14b6a9c011e9892352430808a20eb2a229.tar.bz2
gentoo-2-59d73f14b6a9c011e9892352430808a20eb2a229.zip
Version bump to 0.5.13. Removed 0.5.12 which failed to build in favor of 0.5.13. Fixes bug #424301 and bug #451886.
(Portage version: 2.1.12.11/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'app-misc/slashtime')
-rw-r--r--app-misc/slashtime/ChangeLog9
-rw-r--r--app-misc/slashtime/slashtime-0.5.13.ebuild (renamed from app-misc/slashtime/slashtime-0.5.12.ebuild)24
2 files changed, 20 insertions, 13 deletions
diff --git a/app-misc/slashtime/ChangeLog b/app-misc/slashtime/ChangeLog
index 612ee24d6159..d9f337fa6b26 100644
--- a/app-misc/slashtime/ChangeLog
+++ b/app-misc/slashtime/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-misc/slashtime
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/slashtime/ChangeLog,v 1.19 2013/04/27 15:21:43 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/slashtime/ChangeLog,v 1.20 2013/07/08 14:21:28 tomwij Exp $
+
+*slashtime-0.5.13 (08 Jul 2013)
+
+ 08 Jul 2013; Tom Wijsman <TomWij@gentoo.org> +slashtime-0.5.13.ebuild,
+ -slashtime-0.5.12.ebuild:
+ Version bump to 0.5.13. Removed 0.5.12 which failed to build in favor of
+ 0.5.13. Fixes bug #424301 and bug #451886.
27 Apr 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml:
Cleanup due bug #215231
diff --git a/app-misc/slashtime/slashtime-0.5.12.ebuild b/app-misc/slashtime/slashtime-0.5.13.ebuild
index a1f059e6f247..6b50784745b1 100644
--- a/app-misc/slashtime/slashtime-0.5.12.ebuild
+++ b/app-misc/slashtime/slashtime-0.5.13.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/slashtime/slashtime-0.5.12.ebuild,v 1.3 2011/04/11 06:08:03 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/slashtime/slashtime-0.5.13.ebuild,v 1.1 2013/07/08 14:21:28 tomwij Exp $
+
+EAPI="5"
-EAPI=2
JAVA_PKG_IUSE="source"
inherit java-pkg-2
@@ -13,13 +14,13 @@ SRC_URI="http://research.operationaldynamics.com/projects/${PN}/dist/${P}.tar.bz
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
+KEYWORDS="~amd64 ~x86"
COMMON_DEP=">=dev-java/java-gnome-4.0.16:4.0"
DEPEND=">=virtual/jdk-1.5
${COMMON_DEP}"
+
RDEPEND=">=virtual/jre-1.5
${COMMON_DEP}"
@@ -29,22 +30,21 @@ src_configure() {
}
src_compile() {
- emake || die "emake failed."
+ emake
}
src_install() {
- #this is needed to generate the slashtime jar
- emake -j1 DESTDIR="${D}" install || die "emake install failed."
+ # This is needed to generate the slashtime jar.
+ emake -j1 DESTDIR="${D}" install
java-pkg_register-dependency java-gnome-4.0 gtk.jar
java-pkg_regjar /usr/share/${PN}/lib/${PN}.jar
- #Replace slashtime launcher with our own.
+ # Replace slashtime launcher with our own.
rm "${D}"/usr/bin/slashtime || die
- java-pkg_dolauncher ${PN} --main slashtime.client.Master \
- --pwd /usr
+ java-pkg_dolauncher ${PN} --main slashtime.client.Master --pwd /usr
- dodoc AUTHORS HACKING PLACES README TODO || die "dodoc failed."
+ dodoc AUTHORS HACKING PLACES README TODO
use source && java-pkg_dosrc src/java/slashtime
}