# ChangeLog for dev-java/libglade-java
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/libglade-java/ChangeLog,v 1.26 2007/02/17 11:33:21 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/libglade-java/ChangeLog,v 1.27 2007/03/31 10:01:21 betelgeuse Exp $
+
+ 31 Mar 2007; Petteri Räty <betelgeuse@gentoo.org>
+ -libglade-java-2.12.2-r1.ebuild:
+ Remove old version.
17 Feb 2007; Petteri Räty <betelgeuse@gentoo.org>
libglade-java-2.12.6-r1.ebuild:
ebuilds and patched contributed by Andrew Cowie
<andrew@operationaldynamics.com>.
-* libglade-java-2.8.2.2 (27 Dec 2004)
+*libglade-java-2.8.2.2 (27 Dec 2004)
27 Dec 2004; Andrew Cowie <andrew@operationaldynamics.com> +libglade-java-2.8.2.2.ebuild:
New upstream with the fix below. Note that 2.8.2.1 had an internal version
number glitch
-* libglade-java-2.8.2-r1 (24 Dec 2004)
+*libglade-java-2.8.2-r1 (24 Dec 2004)
24 Dec 2004; Andrew Cowie <andrew@operationaldynamics.com> +libglade-java-2.8.2-r1.ebuild, -libglade-java-2.8.2.ebuild:
Nasty little bug with respect to signal connection. Luckily, simple fix.
18 Nov 2004; Andrew Cowie <andrew@operationaldynamics.com> libglade-java-2.8.2.ebuild:
Marked stable on x86
-* libglade-java-2.8.2 (08 Nov 2004)
+*libglade-java-2.8.2 (08 Nov 2004)
- 08 Nov 2004; Andrew Cowie <andrew@operationaldynamics.com>:
+ 08 Nov 2004; Andrew Cowie <andrew@operationaldynamics.com> +libglade-java-2.8.2.ebuild:
New ebuild. What used to be java-gnome is now multiplexed into various modular
subcomponents. Upstream CVS was all re-arranged, and now there is a release
tarball for each piece. This is the Java binding for LibGlade.
-* libglade-java-2.8.2 (04 Dec 2004)
-
- 04 Dec 2004; Karl Trygve Kalleberg <karltk@gentoo.org> :
- Initial import. Fixes #70561.
-
- 08 Nov 2004; Andrew Cowie <andrew@operationaldynamics.com>
- libglade-java-2.8.8.ebuild:
- New ebuild. What used to be java-gnome is now multiplexed into various modular
- subcomponents. Upstream CVS was all re-arranged, and now there is a release
- tarball for each piece. This is the Java binding for LibGlade.
+++ /dev/null
-MD5 a0b11f2b7ed7c9f998e860212ed3a400 libglade-java-2.12.2.tar.gz 357231
-RMD160 2483e8dec463cfdd20aaaf7bb5f846f76892f88b libglade-java-2.12.2.tar.gz 357231
-SHA256 9e88ab20cf88b5bae80b14aee3c353317efec03163207776e26bec6b7164fcac libglade-java-2.12.2.tar.gz 357231
+++ /dev/null
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/libglade-java/libglade-java-2.12.2-r1.ebuild,v 1.5 2006/09/14 20:15:46 nichoj Exp $
-
-# Must be before the gnome.org inherit
-GNOME_TARBALL_SUFFIX="gz"
-inherit java-pkg eutils gnome.org
-
-DESCRIPTION="Java bindings for Glade"
-HOMEPAGE="http://java-gnome.sourceforge.net/"
-
-# Not on gnome.org mirrors yet :-(
-SRC_URI="http://research.operationaldynamics.com/linux/java-gnome/dist/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="2.12"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc gcj gnome source"
-
-DEPS=">=gnome-base/libglade-2.5.1
- >=dev-java/glib-java-0.2.3
- >=dev-java/libgnome-java-2.8.0
- gnome? ( >=gnome-base/libgnomeui-2.12.0 >=gnome-base/libgnomecanvas-2.12.0 )"
-
-DEPEND=">=virtual/jdk-1.4
- ${DEPS}"
-RDEPEND=">=virtual/jre-1.4
- ${DEPS}"
-JARNAME="glade${SLOT}.jar"
-
-pkg_setup() {
- java-pkg_pkg_setup
- if use gcj ; then
- if ! built_with_use sys-devel/gcc gcj ; then
- ewarn
- ewarn "You must build gcc with the gcj support to build with gcj"
- ewarn
- ebeep 5
- die "No GCJ support found!"
- fi
- fi
-}
-
-src_compile() {
- # this gcj deal is a workaround for http://bugzilla.gnome.org/show_bug.cgi?id=336149
- local myflags
- use gcj || myflags="${myflags} --without-gcj-compile"
- econf ${myflags} \
- $(use_with doc javadocs) \
- $(use_with gnome) \
- --with-jardir=/usr/share/${PN}-${SLOT}/lib \
- || die "configure failed"
-
- emake || die "compile failed"
-
- # Fix the broken pkgconfig file
- sed -i \
- -e "s:classpath.*$:classpath=\${prefix}/share/${PN}-${SLOT}/lib/${JARNAME}:" \
- ${S}/glade-java.pc
-}
-
-src_install() {
- emake DESTDIR=${D} install || die "install failed"
-
- # Examples as documentation
- use doc || rm -rf ${D}/usr/share/doc/${PF}/examples
-
- # Use the jars installed by make
- # and build our own package.env file.
- # NOTE: dojar puts the jar in the wrong place! (/usr/share/${PN}/lib)
- cat <<-END > ${D}/usr/share/${PN}-${SLOT}/package.env
-DESCRIPTION=${DESCRIPTION}
-CLASSPATH=/usr/share/${PN}-${SLOT}/lib/${JARNAME}
-END
-
- use source && java-pkg_dosrc ${S}/src/java/*
-}