diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-03-13 20:04:50 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-03-13 20:04:50 +0000 |
commit | 87b854ff81a57955daaa362d024d2c4b271aa923 (patch) | |
tree | 4557f34ef8afb499beec9e7cfcebe3d76b2c124f /dev-util/gob | |
parent | corrected LICENSE (diff) | |
download | historical-87b854ff81a57955daaa362d024d2c4b271aa923.tar.gz historical-87b854ff81a57955daaa362d024d2c4b271aa923.tar.bz2 historical-87b854ff81a57955daaa362d024d2c4b271aa923.zip |
version bump
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.5 | 1 | ||||
-rw-r--r-- | dev-util/gob/gob-2.0.5.ebuild | 29 |
3 files changed, 36 insertions, 1 deletions
diff --git a/dev-util/gob/ChangeLog b/dev-util/gob/ChangeLog index eb3340a05c4a..a8cec8ff56be 100644 --- a/dev-util/gob/ChangeLog +++ b/dev-util/gob/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/gob # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gob/ChangeLog,v 1.12 2003/02/12 06:43:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gob/ChangeLog,v 1.13 2003/03/13 20:04:50 liquidx Exp $ + +*gob-2.0.5 (13 Mar 2003) + + 13 Mar 2003; Alastair Tse <liquidx@gentoo.org> gob-2.0.5.ebuild: + version bump. 23 Dec 2002; Martin Schlemmer <azarah@gentoo.org> gob-2.0.2.ebuild : Really fix glib dependancy (bug #11633) diff --git a/dev-util/gob/files/digest-gob-2.0.5 b/dev-util/gob/files/digest-gob-2.0.5 new file mode 100644 index 000000000000..33e20164d5b9 --- /dev/null +++ b/dev-util/gob/files/digest-gob-2.0.5 @@ -0,0 +1 @@ +MD5 edf515709d9bf15c6924aa12edfac577 gob2-2.0.5.tar.gz 222482 diff --git a/dev-util/gob/gob-2.0.5.ebuild b/dev-util/gob/gob-2.0.5.ebuild new file mode 100644 index 000000000000..963c1446547c --- /dev/null +++ b/dev-util/gob/gob-2.0.5.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2003 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.5.ebuild,v 1.1 2003/03/13 20:04:50 liquidx 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 ~sparc" + +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 +} |