diff options
Diffstat (limited to 'meta-networking/recipes-support/fetchmail/fetchmail_6.5.2.bb')
-rw-r--r-- | meta-networking/recipes-support/fetchmail/fetchmail_6.5.2.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/fetchmail/fetchmail_6.5.2.bb b/meta-networking/recipes-support/fetchmail/fetchmail_6.5.2.bb new file mode 100644 index 0000000000..c1def016e9 --- /dev/null +++ b/meta-networking/recipes-support/fetchmail/fetchmail_6.5.2.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | SUMMARY = "Fetchmail retrieves mail from remote mail servers and forwards it via SMTP" | ||
2 | HOMEPAGE = "http://www.fetchmail.info/" | ||
3 | DESCRIPTION = "Fetchmail is a full-featured, robust, well-documented remote-mail retrieval \ | ||
4 | and forwarding utility intended to be used over on-demand TCP/IP links (such as SLIP or PPP \ | ||
5 | connections). It supports every remote-mail protocol now in use on the Internet: POP2, POP3, \ | ||
6 | RPOP, APOP, KPOP, all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and IPSEC." | ||
7 | SECTION = "mail" | ||
8 | LICENSE = "GPL-2.0-only & MIT" | ||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=46d2874dd6a0c8961d80c805f106a35f" | ||
10 | |||
11 | DEPENDS = "openssl" | ||
12 | |||
13 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.xz \ | ||
14 | " | ||
15 | SRC_URI[sha256sum] = "8fd0477408620ae382c1d0ef83d8946a95e5be0c2e582dd4ebe55cba513a45fe" | ||
16 | |||
17 | inherit autotools gettext pkgconfig python3-dir python3native | ||
18 | |||
19 | EXTRA_OECONF = "--with-ssl=${STAGING_DIR_HOST}${prefix} --disable-rpath " | ||
20 | |||
21 | do_install:append() { | ||
22 | sed -i 's,${RECIPE_SYSROOT_NATIVE},,g' ${D}${bindir}/fetchmailconf | ||
23 | } | ||
24 | |||
25 | PACKAGES =+ "fetchmail-python" | ||
26 | FILES:fetchmail-python = "${libdir}/${PYTHON_DIR}/*" | ||