summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce A. Locke <blocke@gentoo.org>2002-03-27 05:45:40 +0000
committerBruce A. Locke <blocke@gentoo.org>2002-03-27 05:45:40 +0000
commitdf12c593391a6cb951bd08af301e7dc9cce9aff7 (patch)
treedf5900a70e5b957b33e0fe303842b000571b6818 /dev-util/gob
parenttypo fix (diff)
downloadhistorical-df12c593391a6cb951bd08af301e7dc9cce9aff7.tar.gz
historical-df12c593391a6cb951bd08af301e7dc9cce9aff7.tar.bz2
historical-df12c593391a6cb951bd08af301e7dc9cce9aff7.zip
update to 1.0.12
Diffstat (limited to 'dev-util/gob')
-rw-r--r--dev-util/gob/ChangeLog16
-rw-r--r--dev-util/gob/files/digest-gob-1.0.121
-rw-r--r--dev-util/gob/gob-1.0.12.ebuild28
3 files changed, 36 insertions, 9 deletions
diff --git a/dev-util/gob/ChangeLog b/dev-util/gob/ChangeLog
index 0c07da14edc9..a78f3ce7407e 100644
--- a/dev-util/gob/ChangeLog
+++ b/dev-util/gob/ChangeLog
@@ -1,13 +1,11 @@
# 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.1 2002/02/01 21:53:28 gbevin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gob/ChangeLog,v 1.2 2002/03/27 05:45:40 blocke Exp $
+
+*gob-1.0.12 (20 Mar 2002)
+
+ 20 Mar 2002; Bruce A. Locke <blocke@shivan.org> gob-1.0.12.ebuild :
+
+ Update to 1.0.12
-*gob-1.0.9 (1 Feb 2002)
- 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
-
- Added initial ChangeLog which should be updated whenever the package is
- updated in any way. This changelog is targetted to users. This means that the
- comments should well explained and written in clean English. The details about
- writing correct changelogs are explained in the skel.ChangeLog file which you
- can find in the root directory of the portage repository.
diff --git a/dev-util/gob/files/digest-gob-1.0.12 b/dev-util/gob/files/digest-gob-1.0.12
new file mode 100644
index 000000000000..86d56b725c60
--- /dev/null
+++ b/dev-util/gob/files/digest-gob-1.0.12
@@ -0,0 +1 @@
+MD5 573706a03ff6696ee5b6ab3fbbd17d67 gob-1.0.12.tar.gz 171225
diff --git a/dev-util/gob/gob-1.0.12.ebuild b/dev-util/gob/gob-1.0.12.ebuild
new file mode 100644
index 000000000000..fd43e0a3ba15
--- /dev/null
+++ b/dev-util/gob/gob-1.0.12.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gob/gob-1.0.12.ebuild,v 1.1 2002/03/27 05:45:40 blocke Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="GOB is a preprocessor for making GTK+ objects with inline C code"
+SRC_URI="http://ftp.5z.com/pub/gob/${P}.tar.gz"
+HOMEPAGE="http://www.5z.com/jirka/gob.html"
+
+RDEPEND=">=dev-libs/glib-1.2.10"
+
+DEPEND="${RDEPEND}
+ sys-devel/flex"
+
+src_compile() {
+ ./configure --host=${CHOST} \
+ --prefix=/usr \
+ --mandir=/usr/share/man
+ assert
+
+ make || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+
+ dodoc AUTHORS COPYING ChangeLog NEWS README TODO
+}