diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-07-25 23:14:50 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-07-25 23:14:50 +0000 |
commit | 4ab08e928a64e2424af21fdcc8d8e0fb636f018e (patch) | |
tree | 0989e1c6827fe5d2c13e4cb460506fa29a073513 /dev-util/gob | |
parent | gob move (diff) | |
download | gentoo-2-4ab08e928a64e2424af21fdcc8d8e0fb636f018e.tar.gz gentoo-2-4ab08e928a64e2424af21fdcc8d8e0fb636f018e.tar.bz2 gentoo-2-4ab08e928a64e2424af21fdcc8d8e0fb636f018e.zip |
new stable version
Diffstat (limited to 'dev-util/gob')
-rw-r--r-- | dev-util/gob/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/gob/files/digest-gob-2.0.1 | 1 | ||||
-rw-r--r-- | dev-util/gob/gob-2.0.1.ebuild | 30 |
3 files changed, 37 insertions, 1 deletions
diff --git a/dev-util/gob/ChangeLog b/dev-util/gob/ChangeLog index edb80f3070f8..bc0aa9e8c31e 100644 --- a/dev-util/gob/ChangeLog +++ b/dev-util/gob/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for dev-util/gob # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-util/gob/ChangeLog,v 1.5 2002/06/19 23:48:46 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gob/ChangeLog,v 1.6 2002/07/25 23:14:50 spider Exp $ + +*gob-2.0.1 (25 Jul 2002) + 25 Jul 2002; Spider <spider@gentoo.org> gob-2.0.1.ebuild : + stable line seems here. time to do dep check and unmask + 18 Jun 2002; Martin Schlemmer <azarah@gentoo.org> : Slotified the lot. diff --git a/dev-util/gob/files/digest-gob-2.0.1 b/dev-util/gob/files/digest-gob-2.0.1 new file mode 100644 index 000000000000..c4438d2c666b --- /dev/null +++ b/dev-util/gob/files/digest-gob-2.0.1 @@ -0,0 +1 @@ +MD5 914497ababb81e081ec11712b0b6bdce gob2-2.0.1.tar.gz 202042 diff --git a/dev-util/gob/gob-2.0.1.ebuild b/dev-util/gob/gob-2.0.1.ebuild new file mode 100644 index 000000000000..4187ba2b303d --- /dev/null +++ b/dev-util/gob/gob-2.0.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gob/gob-2.0.1.ebuild,v 1.1 2002/07/25 23:14:50 spider Exp $ + + +MY_P=${PN}2-${PV} +S=${WORKDIR}/${MY_P} +DESCRIPTION="GOB is a preprocessor for making GTK+ objects with inline C code" +SRC_URI="http://ftp.5z.com/pub/gob/${MY_P}.tar.gz" +HOMEPAGE="http://www.5z.com/jirka/gob.html" + +SLOT="2" +LICENSE="GPL-2" +KEYWORDS="x86" + +RDEPEND="=dev-libs/glib-2.0* + dev-libs/popt" + +DEPEND="${RDEPEND} + sys-devel/flex" + +src_compile() { + econf || die "configure fail" + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING COPYING.generated-code ChangeLog NEWS README TODO +} |