diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-09-06 03:32:52 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-09-06 03:32:52 +0000 |
commit | c13e0cb4e1915943b7c52ef8a481173383d9123c (patch) | |
tree | 544662a3ef47abc1aeeb56373492685d0dacedd3 /gnome-base/libglade/libglade-2.0.1.ebuild | |
parent | new verison (diff) | |
download | gentoo-2-c13e0cb4e1915943b7c52ef8a481173383d9123c.tar.gz gentoo-2-c13e0cb4e1915943b7c52ef8a481173383d9123c.tar.bz2 gentoo-2-c13e0cb4e1915943b7c52ef8a481173383d9123c.zip |
new verision
Diffstat (limited to 'gnome-base/libglade/libglade-2.0.1.ebuild')
-rw-r--r-- | gnome-base/libglade/libglade-2.0.1.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/gnome-base/libglade/libglade-2.0.1.ebuild b/gnome-base/libglade/libglade-2.0.1.ebuild new file mode 100644 index 000000000000..a1aa7b6cd87b --- /dev/null +++ b/gnome-base/libglade/libglade-2.0.1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/libglade-2.0.1.ebuild,v 1.1 2002/09/06 03:32:52 spider Exp $ + + +inherit gnome2 + +LICENSE="LGPL-2.1" + +S=${WORKDIR}/${P} +DESCRIPTION="GLADE is a interface builder" +SRC_URI="mirror://gnome/2.0.1/sources/${PN}/${P}.tar.bz2" +HOMEPAGE="http://www.gnome.org/" +KEYWORDS="x86" +SLOT="2.0" + +RDEPEND=">=dev-libs/glib-2.0.6 + >=x11-libs/gtk+-2.0.6 + >=dev-libs/atk-1.0.3 + >=dev-libs/expat-1.95 + dev-python/PyXML + >=dev-lang/python-2.0-r7 + >=sys-devel/gettext-0.10.40 + >=dev-libs/libxml2-2.4.24" + +DEPEND=">=dev-util/pkgconfig-0.12.0 + ${RDEPEND} + doc? ( dev-util/gtk-doc ) + app-text/docbook-xml-dtd" + +src_compile() { + ## patch for xml stuff + patch -p0 < ${FILESDIR}/Makefile.in-0.patch + gnome2_src_configure + emake || die "die a horrible death" +} +DOCS="ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README" + + +src_install() { + dodir /etc/xml + gnome2_src_install +} + + +pkg_postinst() { + echo ">>> Updating XML catalog" + /usr/bin/xmlcatalog --noout --add "system" \ + "http://glade.gnome.org/glade-2.0.dtd" \ + /usr/share/xml/libglade/glade-2.0.dtd /etc/xml/catalog + gnome2_pkg_postinst +} + +pkg_postrm() { + echo ">>> removing entries from the XML catalog" + /usr/bin/xmlcatalog --noout --del \ + /usr/share/xml/libglade/glade-2.0.dtd /etc/xml/catalog +} |