summaryrefslogtreecommitdiff
path: root/packages/gob2
diff options
context:
space:
mode:
authorJustin Patrin <papercrane@gmail.com>2007-01-23 20:36:07 +0000
committerJustin Patrin <papercrane@gmail.com>2007-01-23 20:36:07 +0000
commit964d882b770690b5de1607876c103a28cece3443 (patch)
tree5095bddd4ba9d6ab32b72dd88341c67b7be4bc33 /packages/gob2
parent725b31633b9944eec4c081f1edad620607ce5c5d (diff)
gob2: add gob2, a GObject support package
Diffstat (limited to 'packages/gob2')
-rw-r--r--packages/gob2/.mtn2git_empty0
-rw-r--r--packages/gob2/gob2_2.0.14.bb17
2 files changed, 17 insertions, 0 deletions
diff --git a/packages/gob2/.mtn2git_empty b/packages/gob2/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/gob2/.mtn2git_empty
diff --git a/packages/gob2/gob2_2.0.14.bb b/packages/gob2/gob2_2.0.14.bb
new file mode 100644
index 0000000000..89f64d00e0
--- /dev/null
+++ b/packages/gob2/gob2_2.0.14.bb
@@ -0,0 +1,17 @@
+LICENSE = "LGPL"
+DESCRIPTION = "A library to make creating GObjects easier"
+HOMEPAGE = "http://www.5z.com/jirka/gob.html"
+SECTION = "libs"
+DEPENDS = "gtk+ bison flex"
+SRC_URI = "http://ftp.5z.com/pub/gob/gob2-${PV}.tar.gz"
+
+inherit autotools pkgconfig
+
+do_compile_prepend() {
+ find ${S} -name Makefile | xargs sed -i 's~-I/usr/include~-I${STAGING_INCDIR}~g'
+ find ${S} -name Makefile | xargs sed -i 's~-I$(includedir)~-I${STAGING_INCDIR}~g'
+}
+
+do_stage_append() {
+ install -m 0644 ${S}/gob2.m4 ${STAGING_DATADIR}/aclocal
+}