From 7dcec34e18da3d41ba29a0997f0a2395655674c3 Mon Sep 17 00:00:00 2001 From: Graeme Gregory Date: Tue, 9 May 2006 10:06:07 +0000 Subject: packages/libetpan/libetpan_0.45.bb : new version of libetpan required for sylpheed-claws. This version I have fixed building with threads so it is slightly more than just a version bump so other users of libetpan please check for regressions. packages/sylpheed/sylpheed-claws_2.2.0.bb : add sylpheed-claws, the brother of sylpheed with more dev/unstable work. --- packages/sylpheed/sylpheed-claws_2.2.0.bb | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 packages/sylpheed/sylpheed-claws_2.2.0.bb (limited to 'packages/sylpheed') diff --git a/packages/sylpheed/sylpheed-claws_2.2.0.bb b/packages/sylpheed/sylpheed-claws_2.2.0.bb new file mode 100644 index 0000000000..405762eb1c --- /dev/null +++ b/packages/sylpheed/sylpheed-claws_2.2.0.bb @@ -0,0 +1,29 @@ +SECTION = "x11/network" +DESCRIPTION = "Mail user agent" +DEPENDS = "gtk+ gpgme gnutls libetpan" +MAINTAINER = "Graeme Gregory " +LICENSE = "GPL" +PR = "r0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/sylpheed-claws/sylpheed-claws-2.2.0.tar.bz2" + + +FILES_${PN} = "${bindir} ${datadir}/pixmaps ${datadir}/applications" + +EXTRA_OECONF = "--disable-aspell" + +CFLAGS += "-D_GNU_SOURCE" + +do_configure_prepend() { + mkdir -p m4 +} + +inherit autotools + +do_install_append() { + install -d ${D}${datadir}/applications + install -m 0644 sylpheed-claws.desktop ${D}${datadir}/applications/ + install -d ${D}${datadir}/pixmaps + install -m 0644 sylpheed-claws.png ${D}${datadir}/pixmaps/ +} + -- cgit v1.2.3 From ba713f6d2774c1fece3fefdec4ccae1f271b586b Mon Sep 17 00:00:00 2001 From: Graeme Gregory Date: Tue, 9 May 2006 11:05:20 +0000 Subject: packages/sylpheed/sylpheed-claws_2.2.0.bb : some small fixes to depends and args passed to configure. --- packages/sylpheed/sylpheed-claws_2.2.0.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'packages/sylpheed') diff --git a/packages/sylpheed/sylpheed-claws_2.2.0.bb b/packages/sylpheed/sylpheed-claws_2.2.0.bb index 405762eb1c..9cdcbcd80b 100644 --- a/packages/sylpheed/sylpheed-claws_2.2.0.bb +++ b/packages/sylpheed/sylpheed-claws_2.2.0.bb @@ -1,6 +1,6 @@ SECTION = "x11/network" DESCRIPTION = "Mail user agent" -DEPENDS = "gtk+ gpgme gnutls libetpan" +DEPENDS = "gtk+ gpgme libetpan libgnomeprint aspell" MAINTAINER = "Graeme Gregory " LICENSE = "GPL" PR = "r0" @@ -10,7 +10,9 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/sylpheed-claws/sylpheed-claws-2.2.0.tar.bz2" FILES_${PN} = "${bindir} ${datadir}/pixmaps ${datadir}/applications" -EXTRA_OECONF = "--disable-aspell" +EXTRA_OECONF = "--disable-aspell --disable-openssl --disable-aspell-test \ + --disable-dillo-viewer-plugin --with-aspell-prefix=${STAGING_DIR}/${HOST_SYS} \ + --enable-aspell" CFLAGS += "-D_GNU_SOURCE" -- cgit v1.2.3 From 218ddf031b7d5ea3ffb795adb1a0ddfc2cd32aa3 Mon Sep 17 00:00:00 2001 From: Graeme Gregory Date: Tue, 9 May 2006 12:26:14 +0000 Subject: packages/sylpheed/sylpheed-claws_2.2.0.bb : stage stuff for plugins packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb : add rss plugin for sylpheed-claws. Also includes generic framework for enabling the others --- packages/sylpheed/sylpheed-claws-extra-plugins.inc | 12 ++++++++++++ packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb | 8 ++++++++ packages/sylpheed/sylpheed-claws_2.2.0.bb | 8 ++++++-- 3 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 packages/sylpheed/sylpheed-claws-extra-plugins.inc create mode 100644 packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb (limited to 'packages/sylpheed') diff --git a/packages/sylpheed/sylpheed-claws-extra-plugins.inc b/packages/sylpheed/sylpheed-claws-extra-plugins.inc new file mode 100644 index 0000000000..624abc105a --- /dev/null +++ b/packages/sylpheed/sylpheed-claws-extra-plugins.inc @@ -0,0 +1,12 @@ +SECTION = "x11/network" +DESCRIPTION = "Mail user agent plugins" +DEPENDS = "sylpheed-claws" +MAINTAINER = "Graeme Gregory " +LICENSE = "GPL" +PR = "r0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/sylpheed-claws/sylpheed-claws-extra-plugins-${PV}.tar.bz2" + + +inherit autotools pkgconfig + diff --git a/packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb b/packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb new file mode 100644 index 0000000000..6299da3d5d --- /dev/null +++ b/packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb @@ -0,0 +1,8 @@ +include sylpheed-claws-extra-plugins.inc + +DEPENDS_append = " libxml2 curl glib-2.0 gtk+" + +S = ${WORKDIR}/sylpheed-claws-extra-plugins-${PV}/rssyl-0.4cvs8 + +FILES_${PN} = "${libdir}/sylpheed-claws/plugins/rssyl.so" + diff --git a/packages/sylpheed/sylpheed-claws_2.2.0.bb b/packages/sylpheed/sylpheed-claws_2.2.0.bb index 9cdcbcd80b..0308e60964 100644 --- a/packages/sylpheed/sylpheed-claws_2.2.0.bb +++ b/packages/sylpheed/sylpheed-claws_2.2.0.bb @@ -5,7 +5,7 @@ MAINTAINER = "Graeme Gregory " LICENSE = "GPL" PR = "r0" -SRC_URI = "${SOURCEFORGE_MIRROR}/sylpheed-claws/sylpheed-claws-2.2.0.tar.bz2" +SRC_URI = "${SOURCEFORGE_MIRROR}/sylpheed-claws/sylpheed-claws-${PV}.tar.bz2" FILES_${PN} = "${bindir} ${datadir}/pixmaps ${datadir}/applications" @@ -20,7 +20,7 @@ do_configure_prepend() { mkdir -p m4 } -inherit autotools +inherit autotools pkgconfig do_install_append() { install -d ${D}${datadir}/applications @@ -29,3 +29,7 @@ do_install_append() { install -m 0644 sylpheed-claws.png ${D}${datadir}/pixmaps/ } +do_stage () { + autotools_stage_all +} + -- cgit v1.2.3 From 86ab37755bbe44b0c96043bc9e94f7d1a8fce770 Mon Sep 17 00:00:00 2001 From: Graeme Gregory Date: Tue, 9 May 2006 15:00:53 +0000 Subject: packages/sylpheed/sylpheed-claws-plugin-rssyl-0.4cvs8_2.2.0.bb : put version in so we can do new versions. packages/sylpheed/sylpheed-claws-plugin-gtkhtml2-viewer-0.10_2.2.0.bb : a HTML email renderer based on gtkhtml2 packages/sylpheed/sylpheed-claws-extra-plugins.inc : add more generic packaging. --- packages/sylpheed/sylpheed-claws-extra-plugins.inc | 2 ++ .../sylpheed/sylpheed-claws-plugin-gtkhtml2-viewer-0.10_2.2.0.bb | 6 ++++++ packages/sylpheed/sylpheed-claws-plugin-rssyl-0.4cvs8_2.2.0.bb | 6 ++++++ packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb | 8 -------- 4 files changed, 14 insertions(+), 8 deletions(-) create mode 100644 packages/sylpheed/sylpheed-claws-plugin-gtkhtml2-viewer-0.10_2.2.0.bb create mode 100644 packages/sylpheed/sylpheed-claws-plugin-rssyl-0.4cvs8_2.2.0.bb delete mode 100644 packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb (limited to 'packages/sylpheed') diff --git a/packages/sylpheed/sylpheed-claws-extra-plugins.inc b/packages/sylpheed/sylpheed-claws-extra-plugins.inc index 624abc105a..e3b7a9e388 100644 --- a/packages/sylpheed/sylpheed-claws-extra-plugins.inc +++ b/packages/sylpheed/sylpheed-claws-extra-plugins.inc @@ -10,3 +10,5 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/sylpheed-claws/sylpheed-claws-extra-plugins-${P inherit autotools pkgconfig +FILES_${PN} = "${libdir}/sylpheed-claws/plugins/*.so" + diff --git a/packages/sylpheed/sylpheed-claws-plugin-gtkhtml2-viewer-0.10_2.2.0.bb b/packages/sylpheed/sylpheed-claws-plugin-gtkhtml2-viewer-0.10_2.2.0.bb new file mode 100644 index 0000000000..bc21b36a01 --- /dev/null +++ b/packages/sylpheed/sylpheed-claws-plugin-gtkhtml2-viewer-0.10_2.2.0.bb @@ -0,0 +1,6 @@ +include sylpheed-claws-extra-plugins.inc + +DEPENDS_append = " gtkhtml2" + +S = ${WORKDIR}/sylpheed-claws-extra-plugins-${PV}/gtkhtml2_viewer-0.10 + diff --git a/packages/sylpheed/sylpheed-claws-plugin-rssyl-0.4cvs8_2.2.0.bb b/packages/sylpheed/sylpheed-claws-plugin-rssyl-0.4cvs8_2.2.0.bb new file mode 100644 index 0000000000..3c95ee1b17 --- /dev/null +++ b/packages/sylpheed/sylpheed-claws-plugin-rssyl-0.4cvs8_2.2.0.bb @@ -0,0 +1,6 @@ +include sylpheed-claws-extra-plugins.inc + +DEPENDS_append = " libxml2 curl glib-2.0 gtk+" + +S = ${WORKDIR}/sylpheed-claws-extra-plugins-${PV}/rssyl-0.4cvs8 + diff --git a/packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb b/packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb deleted file mode 100644 index 6299da3d5d..0000000000 --- a/packages/sylpheed/sylpheed-claws-plugin-rssyl_2.2.0.bb +++ /dev/null @@ -1,8 +0,0 @@ -include sylpheed-claws-extra-plugins.inc - -DEPENDS_append = " libxml2 curl glib-2.0 gtk+" - -S = ${WORKDIR}/sylpheed-claws-extra-plugins-${PV}/rssyl-0.4cvs8 - -FILES_${PN} = "${libdir}/sylpheed-claws/plugins/rssyl.so" - -- cgit v1.2.3 From e4eb133719193ff035fcf6cdfdf0e31a2df9a1bc Mon Sep 17 00:00:00 2001 From: Graeme Gregory Date: Wed, 10 May 2006 09:56:32 +0000 Subject: packages/sylpheed/sylpheed-claws-plugin-maildir-0.22_2.2.0.bb : new plugin --- packages/sylpheed/sylpheed-claws-plugin-maildir-0.22_2.2.0.bb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 packages/sylpheed/sylpheed-claws-plugin-maildir-0.22_2.2.0.bb (limited to 'packages/sylpheed') diff --git a/packages/sylpheed/sylpheed-claws-plugin-maildir-0.22_2.2.0.bb b/packages/sylpheed/sylpheed-claws-plugin-maildir-0.22_2.2.0.bb new file mode 100644 index 0000000000..56f86e6923 --- /dev/null +++ b/packages/sylpheed/sylpheed-claws-plugin-maildir-0.22_2.2.0.bb @@ -0,0 +1,6 @@ +include sylpheed-claws-extra-plugins.inc + +DEPENDS_append = " db" + +S = ${WORKDIR}/sylpheed-claws-extra-plugins-${PV}/maildir-0.22 + -- cgit v1.2.3