Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [pull request] Pull request for branch for-2012.05/mail-packages
@ 2012-04-17 15:46 Thomas Petazzoni
  2012-04-17 15:46 ` [Buildroot] [PATCH 1/2] heirloom-mailx: new package Thomas Petazzoni
  2012-04-17 15:46 ` [Buildroot] [PATCH 2/2] msmtp: " Thomas Petazzoni
  0 siblings, 2 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2012-04-17 15:46 UTC (permalink / raw)
  To: buildroot

The following changes since commit 2f41adabc5a12fcca1de5b6c296c2206b518abff:

  New package: libdmtx (2012-04-17 00:21:39 +0200)

are available in the git repository at:
  git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git for-2012.05/mail-packages

Thomas Petazzoni (2):
      heirloom-mailx: new package
      msmtp: new package

 package/Config.in                        |    2 ++
 package/heirloom-mailx/Config.in         |   13 +++++++++++++
 package/heirloom-mailx/heirloom-mailx.mk |   28 ++++++++++++++++++++++++++++
 package/msmtp/Config.in                  |   10 ++++++++++
 package/msmtp/msmtp.mk                   |   28 ++++++++++++++++++++++++++++
 5 files changed, 81 insertions(+), 0 deletions(-)
 create mode 100644 package/heirloom-mailx/Config.in
 create mode 100644 package/heirloom-mailx/heirloom-mailx.mk
 create mode 100644 package/msmtp/Config.in
 create mode 100644 package/msmtp/msmtp.mk

Thanks,
-- 
Thomas Petazzoni

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/2] heirloom-mailx: new package
  2012-04-17 15:46 [Buildroot] [pull request] Pull request for branch for-2012.05/mail-packages Thomas Petazzoni
@ 2012-04-17 15:46 ` Thomas Petazzoni
  2012-04-29 18:30   ` Peter Korsgaard
  2012-04-30  8:46   ` Peter Korsgaard
  2012-04-17 15:46 ` [Buildroot] [PATCH 2/2] msmtp: " Thomas Petazzoni
  1 sibling, 2 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2012-04-17 15:46 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/Config.in                        |    1 +
 package/heirloom-mailx/Config.in         |   13 +++++++++++++
 package/heirloom-mailx/heirloom-mailx.mk |   28 ++++++++++++++++++++++++++++
 3 files changed, 42 insertions(+), 0 deletions(-)
 create mode 100644 package/heirloom-mailx/Config.in
 create mode 100644 package/heirloom-mailx/heirloom-mailx.mk

diff --git a/package/Config.in b/package/Config.in
index 567fbed..1fb6c4a 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -456,6 +456,7 @@ source "package/dnsmasq/Config.in"
 source "package/dropbear/Config.in"
 source "package/ebtables/Config.in"
 source "package/ethtool/Config.in"
+source "package/heirloom-mailx/Config.in"
 if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 source "package/hiawatha/Config.in"
 endif
diff --git a/package/heirloom-mailx/Config.in b/package/heirloom-mailx/Config.in
new file mode 100644
index 0000000..9a871d4
--- /dev/null
+++ b/package/heirloom-mailx/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_HEIRLOOM_MAILX
+	bool "heirloom-mailx"
+	help
+	  Heirloom mailx (previously known as nail) is a mail user
+	  agent for Unix systems.
+
+	  It can be used as a command-line mail reader, but also more
+	  importantly on embedded systems, as a mail composition
+	  program and SMTP client, in order to send e-mail from shell
+	  scripts. It supports SMTP authentication (login, plain,
+	  cram-md5), SMTPS, MIME encoding of attachements, and more.
+
+	  http://heirloom.sourceforge.net/mailx.html
diff --git a/package/heirloom-mailx/heirloom-mailx.mk b/package/heirloom-mailx/heirloom-mailx.mk
new file mode 100644
index 0000000..2b28a3f
--- /dev/null
+++ b/package/heirloom-mailx/heirloom-mailx.mk
@@ -0,0 +1,28 @@
+#############################################################
+#
+# heirloom-mailx
+#
+#############################################################
+
+HEIRLOOM_MAILX_VERSION = 12.5
+HEIRLOOM_MAILX_SOURCE  = heirloom-mailx_$(HEIRLOOM_MAILX_VERSION).orig.tar.gz
+HEIRLOOM_MAILX_SITE    = http://snapshot.debian.org/archive/debian/20110427T035506Z/pool/main/h/heirloom-mailx/
+
+ifeq ($(BR2_PACKAGE_OPENSSL),y)
+HEIRLOOM_MAILX_DEPENDENCIES += openssl
+endif
+
+define HEIRLOOM_MAILX_BUILD_CMDS
+	$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
+endef
+
+define HEIRLOOM_MAILX_INSTALL_TARGET_CMDS
+	$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
+		PREFIX=/usr \
+		UCBINSTALL=$(INSTALL) \
+		STRIP=/bin/true \
+		DESTDIR=$(TARGET_DIR) \
+		install
+endef
+
+$(eval $(call GENTARGETS))
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/2] msmtp: new package
  2012-04-17 15:46 [Buildroot] [pull request] Pull request for branch for-2012.05/mail-packages Thomas Petazzoni
  2012-04-17 15:46 ` [Buildroot] [PATCH 1/2] heirloom-mailx: new package Thomas Petazzoni
@ 2012-04-17 15:46 ` Thomas Petazzoni
  2012-04-29 18:31   ` Peter Korsgaard
  1 sibling, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2012-04-17 15:46 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/Config.in       |    1 +
 package/msmtp/Config.in |   10 ++++++++++
 package/msmtp/msmtp.mk  |   28 ++++++++++++++++++++++++++++
 3 files changed, 39 insertions(+), 0 deletions(-)
 create mode 100644 package/msmtp/Config.in
 create mode 100644 package/msmtp/msmtp.mk

diff --git a/package/Config.in b/package/Config.in
index 1fb6c4a..f3d26d1 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -479,6 +479,7 @@ source "package/links/Config.in"
 source "package/lrzsz/Config.in"
 source "package/mii-diag/Config.in"
 source "package/mrouted/Config.in"
+source "package/msmtp/Config.in"
 source "package/mutt/Config.in"
 source "package/nbd/Config.in"
 source "package/ncftp/Config.in"
diff --git a/package/msmtp/Config.in b/package/msmtp/Config.in
new file mode 100644
index 0000000..385ad90
--- /dev/null
+++ b/package/msmtp/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_MSMTP
+	bool "msmtp"
+	help
+	  msmtp is an SMTP client. In the default mode, it transmits a
+	  mail to an SMTP server (for example at a free mail provider)
+	  which takes care of further delivery.
+
+	  Note that msmtp is licensed under GPLv3.
+
+	  http://msmtp.sourceforge.net/
diff --git a/package/msmtp/msmtp.mk b/package/msmtp/msmtp.mk
new file mode 100644
index 0000000..2c71229
--- /dev/null
+++ b/package/msmtp/msmtp.mk
@@ -0,0 +1,28 @@
+#############################################################
+#
+# msmtp
+#
+#############################################################
+
+MSMTP_VERSION = 1.4.27
+MSMTP_SITE = http://downloads.sourceforge.net/project/msmtp/msmtp/$(MSMTP_VERSION)
+MSMTP_SOURCE = msmtp-$(MSMTP_VERSION).tar.bz2
+
+MSMTP_DEPENDENCIES += host-pkg-config
+
+ifeq ($(BR2_PACKAGE_OPENSSL),y)
+MSMTP_CONF_OPT += --with-ssl=openssl
+MSMTP_DEPENDENCIES += openssl
+else ifeq ($(BR2_PACKAGE_GNUTLS),y)
+MSMTP_CONF_OPT += --with-ssl=gnutls
+MSMTP_DEPENDENCIES += gnutls
+else
+MSMTP_CONF_OPT += --with-ssl=no
+endif
+
+MSMTP_CONF_OPT += \
+	--without-libidn \
+	--without-libgsasl \
+	--without-gnome-keyring
+
+$(eval $(call AUTOTARGETS))
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/2] heirloom-mailx: new package
  2012-04-17 15:46 ` [Buildroot] [PATCH 1/2] heirloom-mailx: new package Thomas Petazzoni
@ 2012-04-29 18:30   ` Peter Korsgaard
  2012-04-30  8:46   ` Peter Korsgaard
  1 sibling, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2012-04-29 18:30 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/2] msmtp: new package
  2012-04-17 15:46 ` [Buildroot] [PATCH 2/2] msmtp: " Thomas Petazzoni
@ 2012-04-29 18:31   ` Peter Korsgaard
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2012-04-29 18:31 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Committed, thanks.

 Thomas> +MSMTP_CONF_OPT += \
 Thomas> +	--without-libidn \
 Thomas> +	--without-libgsasl \
 Thomas> +	--without-gnome-keyring

Do notice we have libidn in buildroot, so it would be nice to see
optional support for it - But that can be done as a followup patch.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/2] heirloom-mailx: new package
  2012-04-17 15:46 ` [Buildroot] [PATCH 1/2] heirloom-mailx: new package Thomas Petazzoni
  2012-04-29 18:30   ` Peter Korsgaard
@ 2012-04-30  8:46   ` Peter Korsgaard
  2012-04-30 11:33     ` Thomas Petazzoni
  1 sibling, 1 reply; 7+ messages in thread
From: Peter Korsgaard @ 2012-04-30  8:46 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 Thomas> ---
 Thomas>  package/Config.in                        |    1 +
 Thomas>  package/heirloom-mailx/Config.in         |   13 +++++++++++++
 Thomas>  package/heirloom-mailx/heirloom-mailx.mk |   28 ++++++++++++++++++++++++++++
 Thomas>  3 files changed, 42 insertions(+), 0 deletions(-)
 Thomas>  create mode 100644 package/heirloom-mailx/Config.in
 Thomas>  create mode 100644 package/heirloom-mailx/heirloom-mailx.mk

There seems to be some libiconv related build problems. Care to take a
look?

http://autobuild.buildroot.org/results/08c1f9d776ca26823d0f256cb85a769794060936/build-end.log

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/2] heirloom-mailx: new package
  2012-04-30  8:46   ` Peter Korsgaard
@ 2012-04-30 11:33     ` Thomas Petazzoni
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2012-04-30 11:33 UTC (permalink / raw)
  To: buildroot

Le Mon, 30 Apr 2012 10:46:24 +0200,
Peter Korsgaard <jacmet@uclibc.org> a ?crit :

> There seems to be some libiconv related build problems. Care to take a
> look?
> 
> http://autobuild.buildroot.org/results/08c1f9d776ca26823d0f256cb85a769794060936/build-end.log

Ok, will have a look, thanks!

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-04-30 11:33 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-17 15:46 [Buildroot] [pull request] Pull request for branch for-2012.05/mail-packages Thomas Petazzoni
2012-04-17 15:46 ` [Buildroot] [PATCH 1/2] heirloom-mailx: new package Thomas Petazzoni
2012-04-29 18:30   ` Peter Korsgaard
2012-04-30  8:46   ` Peter Korsgaard
2012-04-30 11:33     ` Thomas Petazzoni
2012-04-17 15:46 ` [Buildroot] [PATCH 2/2] msmtp: " Thomas Petazzoni
2012-04-29 18:31   ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox