]> Pileus Git - ~andy/sunrise/commitdiff
media-video/palantir-webclient: Fix inheriting wrong java eclass (now inherits java...
authorNathan Phillip Brink (binki) <ohnobinki@ohnopublishing.net>
Tue, 5 Jul 2011 04:48:50 +0000 (04:48 +0000)
committerNathan Phillip Brink (binki) <ohnobinki@ohnopublishing.net>
Tue, 5 Jul 2011 04:48:50 +0000 (04:48 +0000)
(Portage version: 2.2.0_alpha41-r1/svn/Linux x86_64)

svn path=/sunrise/; revision=12206

media-video/palantir-webclient/ChangeLog
media-video/palantir-webclient/palantir-webclient-2.7.ebuild

index aa676d32ccf6ced59dd0e9f8dd4e9280f825fcfa..8d6b74ff6f2bd07d1f888e3490ace2f1761c0a7a 100644 (file)
@@ -1,7 +1,13 @@
 # ChangeLog for media-video/palantir-webclient
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  05 Jul 2011; Nathan Phillip Brink <binki@gentoo.org>
+  palantir-webclient-2.7.ebuild:
+  Fix inheriting wrong java eclass (now inherits java-pkg-2) and reference to
+  nonexisting files/postinstall-en-2.7.txt file caused by tommy[d]'s last
+  version bump (r6438).
+
   06 Jul 2008; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
   -palantir-webclient-2.6.ebuild, +palantir-webclient-2.7.ebuild:
   Version bump
index 3900a7099ea0c815177c748accbb97209a287fca..1cbb5c8ab3c5907f6bbae6ea89353dc1cfd8fdeb 100644 (file)
@@ -1,13 +1,13 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-inherit webapp java-utils-2
+inherit webapp java-pkg-2
 
 MY_PN=${PN/-webclient/}
 MY_P=${MY_PN}-${PV}
 
-DESCRIPTION="Transmit live video, audio and data over a TCP/IP network, as well as to control remote devices."
+DESCRIPTION="Transmit live video, audio and data over a TCP/IP network, as well as to control remote devices"
 HOMEPAGE="http://www.fastpath.it/products/palantir/index.php"
 SRC_URI="http://www.fastpath.it/products/${MY_PN}/pub/${MY_P}.tgz"
 
@@ -20,6 +20,11 @@ RDEPEND=">=virtual/jre-1.4"
 
 S=${WORKDIR}/${MY_P}/clients/java
 
+pkg_setup() {
+       webapp_pkg_setup
+       java-pkg-2_pkg_setup
+}
+
 src_compile() {
        ejavac *.java || die "ejavac failed!"
        jar cfm pclient.jar MANIFEST.MF *.class || die "jar failed!"
@@ -29,6 +34,6 @@ src_install() {
        webapp_src_preinst
        cp *.jar *.html "${D}/${MY_HTDOCSDIR}"
        dodoc README TODO
-       webapp_postinst_txt en "${FILESDIR}/postinstall-en-${PV}.txt"
+       webapp_postinst_txt en "${FILESDIR}/postinstall-en-2.6.txt"
        webapp_src_install
 }