diff options
author | Richard Purdie <richard@openedhand.com> | 2007-05-09 14:00:47 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-05-09 14:00:47 +0000 |
commit | 615dd4a36123b58bc252f1a3415fe82a13944b67 (patch) | |
tree | f4b478d0f87b71653c987725f3a790a140ae5d07 /meta/packages/xournal | |
parent | 2ee4cf3f5e2df4de0ad91a2045f5d0ae0af9822d (diff) | |
download | poky-615dd4a36123b58bc252f1a3415fe82a13944b67.tar.gz |
xournal: Fix linking flags and add zlib as a dependency
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1626 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/xournal')
-rw-r--r-- | meta/packages/xournal/files/ldflags.patch | 15 | ||||
-rw-r--r-- | meta/packages/xournal/xournal_0.2.bb | 7 |
2 files changed, 19 insertions, 3 deletions
diff --git a/meta/packages/xournal/files/ldflags.patch b/meta/packages/xournal/files/ldflags.patch new file mode 100644 index 0000000000..7f6585befb --- /dev/null +++ b/meta/packages/xournal/files/ldflags.patch | |||
@@ -0,0 +1,15 @@ | |||
1 | --- | ||
2 | src/Makefile.am | 2 +- | ||
3 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
4 | |||
5 | Index: xournal-0.2/src/Makefile.am | ||
6 | =================================================================== | ||
7 | --- xournal-0.2.orig/src/Makefile.am 2007-05-09 15:06:26.000000000 +0100 | ||
8 | +++ xournal-0.2/src/Makefile.am 2007-05-09 15:06:35.000000000 +0100 | ||
9 | @@ -21,5 +21,5 @@ xournal_SOURCES = \ | ||
10 | xo-interface.c xo-interface.h \ | ||
11 | xo-callbacks.c xo-callbacks.h | ||
12 | |||
13 | -xournal_LDADD = @PACKAGE_LIBS@ | ||
14 | +xournal_LDADD = @PACKAGE_LIBS@ -lz | ||
15 | |||
diff --git a/meta/packages/xournal/xournal_0.2.bb b/meta/packages/xournal/xournal_0.2.bb index 8663774a83..1ca6e1ed7c 100644 --- a/meta/packages/xournal/xournal_0.2.bb +++ b/meta/packages/xournal/xournal_0.2.bb | |||
@@ -1,11 +1,12 @@ | |||
1 | HOMEPAGE = "http://www-math.mit.edu/~auroux/software/xournal/" | 1 | HOMEPAGE = "http://www-math.mit.edu/~auroux/software/xournal/" |
2 | DESCRIPTION = "Xournal is an application for notetaking, sketching, keeping a journal using a stylus." | 2 | DESCRIPTION = "Xournal is an application for notetaking, sketching, keeping a journal using a stylus." |
3 | DEPENDS = "gtk+ libgnomecanvas" | 3 | DEPENDS = "gtk+ libgnomecanvas zlib" |
4 | SECTION = "x11" | 4 | SECTION = "x11" |
5 | LICENSE = "GPL" | 5 | LICENSE = "GPL" |
6 | PR = "r1" | 6 | PR = "r2" |
7 | 7 | ||
8 | SRC_URI = "http://math.mit.edu/~auroux/software/xournal/xournal-0.2.tar.gz \ | 8 | SRC_URI = "http://math.mit.edu/~auroux/software/xournal/xournal-0.2.tar.gz \ |
9 | file://no-printing.diff;patch=1" | 9 | file://ldflags.patch;patch=1 \ |
10 | file://no-printing.diff;patch=1" | ||
10 | 11 | ||
11 | inherit autotools pkgconfig | 12 | inherit autotools pkgconfig |