diff options
author | 2001-10-03 22:27:38 +0000 | |
---|---|---|
committer | 2001-10-03 22:27:38 +0000 | |
commit | cd5b6e0a52b6f56e1da7e6056e0cdf7bd1b0f9fd (patch) | |
tree | a3fdfdc64d08c454da759383a15353d3bd469623 /dev-util/glademm | |
parent | ok. these are inheritng ebuilds for all kde apps in portage. i pulled in the ... (diff) | |
download | historical-cd5b6e0a52b6f56e1da7e6056e0cdf7bd1b0f9fd.tar.gz historical-cd5b6e0a52b6f56e1da7e6056e0cdf7bd1b0f9fd.tar.bz2 historical-cd5b6e0a52b6f56e1da7e6056e0cdf7bd1b0f9fd.zip |
Added Anjuta and tools needed.
Diffstat (limited to 'dev-util/glademm')
-rw-r--r-- | dev-util/glademm/files/digest-glademm-0.5.11f | 1 | ||||
-rw-r--r-- | dev-util/glademm/glademm-0.5.11f.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/dev-util/glademm/files/digest-glademm-0.5.11f b/dev-util/glademm/files/digest-glademm-0.5.11f new file mode 100644 index 000000000000..b78c0ee50a51 --- /dev/null +++ b/dev-util/glademm/files/digest-glademm-0.5.11f @@ -0,0 +1 @@ +MD5 e3d4e6261150852f586abea131fbc191 glademm-0.5_11f.tar.gz diff --git a/dev-util/glademm/glademm-0.5.11f.ebuild b/dev-util/glademm/glademm-0.5.11f.ebuild new file mode 100644 index 000000000000..c3af0a4b7542 --- /dev/null +++ b/dev-util/glademm/glademm-0.5.11f.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Martin Schlemmer <azarah@gentoo.org> + +MY_P="glademm-0.5_11f" +S=${WORKDIR}/${MY_P} +DESCRIPTION="A C++ backend for glade, the GUI designer for Gtk." +SRC_URI="http://home.wtal.de/petig/Gtk/${MY_P}.tar.gz" +HOMEPAGE="http://home.wtal.de/petig/Gtk/" + +DEPEND="gnome-apps/glade" + +RDEPEND="x11-libs/gtk+ + x11-libs/gtkmm + gnome-libs/gnomemm + gnome-apps/glade" + + +src_compile() { + + ./configure --host=${CHOST} --prefix=/opt/gnome --mandir=/usr/share/man + emake || die + +} + +src_install () { + + make DESTDIR=${D} install || die + + dodoc AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README TODO + docinto docs + dodoc docs/*.txt docs/*.html docs/glade.wishlist + +} + |