mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCHv2] maildrop: this patch adds maildrop to ptxdist
@ 2018-06-22 12:17 Oliver Graute
  2018-06-22 13:51 ` Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Oliver Graute @ 2018-06-22 12:17 UTC (permalink / raw)
  To: ptxdist

Signed-off-by: Oliver Graute <oliver.graute@neuhaus.de>
---
 rules/maildrop.in   |  8 ++++++
 rules/maildrop.make | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+)
 create mode 100644 rules/maildrop.in
 create mode 100644 rules/maildrop.make

diff --git a/rules/maildrop.in b/rules/maildrop.in
new file mode 100644
index 0000000..059806c
--- /dev/null
+++ b/rules/maildrop.in
@@ -0,0 +1,8 @@
+## SECTION=communication
+
+menuconfig MAILDROP
+	select COURIER_UNICODE
+	tristate
+	prompt "maildrop"
+	help
+	  maildrop - mail delivery agent with filtering abilities
diff --git a/rules/maildrop.make b/rules/maildrop.make
new file mode 100644
index 0000000..c75c90a
--- /dev/null
+++ b/rules/maildrop.make
@@ -0,0 +1,73 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2015 Dr. Neuhaus Telekommunikation GmbH, Hamburg Germany, Oliver Graute <oliver.graute@neuhaus.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_MAILDROP) += maildrop
+
+#
+# Paths and names
+#
+MAILDROP_VERSION	:= 2.8.3
+MAILDROP_MD5		:= 4e3b2b19b58a76581a486381e4444b5e
+MAILDROP		:= maildrop-$(MAILDROP_VERSION)
+MAILDROP_SUFFIX		:= tar.bz2
+MAILDROP_URL		:= http://downloads.sourceforge.net/project/courier/maildrop/$(MAILDROP_VERSION)/$(MAILDROP).$(MAILDROP_SUFFIX)
+MAILDROP_SOURCE		:= $(SRCDIR)/$(MAILDROP).$(MAILDROP_SUFFIX)
+MAILDROP_DIR		:= $(BUILDDIR)/$(MAILDROP)
+MAILDROP_LICENSE	:= GPLv3
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+MAILDROP_CONF_ENV	:= \
+	$(CROSS_ENV) \
+	ac_cv_func_getpgrp_void=yes \
+	ac_cv_func_setpgrp_void=yes \
+	ac_cv_func_memcmp_working=yes \
+	rb_cv_binary_elf=no \
+	rb_cv_negative_time_t=no
+
+#
+# autoconf
+#
+MAILDROP_CONF_TOOL	:= autoconf
+MAILDROP_CONF_OPT	:= \
+	$(CROSS_AUTOCONF_USR)\
+	--with-locking-method=fcntl \
+	--without-db \
+	--disable-tempdir \
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/maildrop.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, maildrop)
+	@$(call install_fixup, maildrop,PRIORITY,optional)
+	@$(call install_fixup, maildrop,SECTION,base)
+	@$(call install_fixup, maildrop,AUTHOR,"<oliver.graute@neuhaus.de>")
+	@$(call install_fixup, maildrop,DESCRIPTION,missing)
+
+	@$(call install_copy, maildrop, 0, 0, 0755, -, /usr/bin/maildrop)
+	@$(call install_copy, maildrop, 0, 0, 0755, -, /usr/bin/mailbot)
+	@$(call install_copy, maildrop, 0, 0, 0755, -, /usr/bin/reformail)
+	@$(call install_copy, maildrop, 0, 0, 0755, -, /usr/bin/makemime)
+	@$(call install_copy, maildrop, 0, 0, 0755, -, /usr/bin/reformime)
+
+	@$(call install_finish, maildrop)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
1.9.1


-- 
i. A.  Oliver GRAUTE
Software Entwicklung Dipl.-Inform. (Uni) 

Sagemcom Dr. Neuhaus GmbH
Papenreye 65, 22453 Hamburg GERMANY
Phone: +49 (0) 40 55304-3045 
Fax: +49 (0) 40 55304-180
oliver.graute@sagemcom.com

www.neuhaus.de / www.sagemcom.com
Geschäftsführer: André Karnatz, Patrick Sevian
Sitz der Gesellschaft: Hamburg
Amtsgericht Hamburg / HRB 133678 

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] [PATCHv2] maildrop: this patch adds maildrop to ptxdist
  2018-06-22 12:17 [ptxdist] [PATCHv2] maildrop: this patch adds maildrop to ptxdist Oliver Graute
@ 2018-06-22 13:51 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2018-06-22 13:51 UTC (permalink / raw)
  To: ptxdist

On Fri, Jun 22, 2018 at 02:17:22PM +0200, Oliver Graute wrote:
> Signed-off-by: Oliver Graute <oliver.graute@neuhaus.de>
> ---
>  rules/maildrop.in   |  8 ++++++
>  rules/maildrop.make | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 81 insertions(+)
>  create mode 100644 rules/maildrop.in
>  create mode 100644 rules/maildrop.make
> 
> diff --git a/rules/maildrop.in b/rules/maildrop.in
> new file mode 100644
> index 0000000..059806c
> --- /dev/null
> +++ b/rules/maildrop.in
> @@ -0,0 +1,8 @@
> +## SECTION=communication
> +
> +menuconfig MAILDROP
> +	select COURIER_UNICODE
> +	tristate
> +	prompt "maildrop"
> +	help
> +	  maildrop - mail delivery agent with filtering abilities
> diff --git a/rules/maildrop.make b/rules/maildrop.make
> new file mode 100644
> index 0000000..c75c90a
> --- /dev/null
> +++ b/rules/maildrop.make
> @@ -0,0 +1,73 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2015 Dr. Neuhaus Telekommunikation GmbH, Hamburg Germany, Oliver Graute <oliver.graute@neuhaus.de>
> +#
> +# See CREDITS for details about who has contributed to this project.
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_MAILDROP) += maildrop
> +
> +#
> +# Paths and names
> +#
> +MAILDROP_VERSION	:= 2.8.3
> +MAILDROP_MD5		:= 4e3b2b19b58a76581a486381e4444b5e
> +MAILDROP		:= maildrop-$(MAILDROP_VERSION)
> +MAILDROP_SUFFIX		:= tar.bz2
> +MAILDROP_URL		:= http://downloads.sourceforge.net/project/courier/maildrop/$(MAILDROP_VERSION)/$(MAILDROP).$(MAILDROP_SUFFIX)

Use the ptx/mirror macro.

> +MAILDROP_SOURCE		:= $(SRCDIR)/$(MAILDROP).$(MAILDROP_SUFFIX)
> +MAILDROP_DIR		:= $(BUILDDIR)/$(MAILDROP)
> +MAILDROP_LICENSE	:= GPLv3

GPL-3.0-only

> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +MAILDROP_CONF_ENV	:= \
> +	$(CROSS_ENV) \
> +	ac_cv_func_getpgrp_void=yes \
> +	ac_cv_func_setpgrp_void=yes \
> +	ac_cv_func_memcmp_working=yes \
> +	rb_cv_binary_elf=no \
> +	rb_cv_negative_time_t=no
> +
> +#
> +# autoconf
> +#
> +MAILDROP_CONF_TOOL	:= autoconf
> +MAILDROP_CONF_OPT	:= \
> +	$(CROSS_AUTOCONF_USR)\
> +	--with-locking-method=fcntl \
> +	--without-db \
> +	--disable-tempdir \
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/maildrop.targetinstall:
> +	@$(call targetinfo)
> +
> +	@$(call install_init, maildrop)
> +	@$(call install_fixup, maildrop,PRIORITY,optional)
> +	@$(call install_fixup, maildrop,SECTION,base)
> +	@$(call install_fixup, maildrop,AUTHOR,"<oliver.graute@neuhaus.de>")
> +	@$(call install_fixup, maildrop,DESCRIPTION,missing)
> +
> +	@$(call install_copy, maildrop, 0, 0, 0755, -, /usr/bin/maildrop)
> +	@$(call install_copy, maildrop, 0, 0, 0755, -, /usr/bin/mailbot)
> +	@$(call install_copy, maildrop, 0, 0, 0755, -, /usr/bin/reformail)
> +	@$(call install_copy, maildrop, 0, 0, 0755, -, /usr/bin/makemime)
> +	@$(call install_copy, maildrop, 0, 0, 0755, -, /usr/bin/reformime)
> +
> +	@$(call install_finish, maildrop)
> +
> +	@$(call touch)
> +
> +# vim: syntax=make
> -- 
> 1.9.1
> 
> 
> -- 
> i. A.  Oliver GRAUTE
> Software Entwicklung Dipl.-Inform. (Uni) 
> 
> Sagemcom Dr. Neuhaus GmbH
> Papenreye 65, 22453 Hamburg GERMANY
> Phone: +49 (0) 40 55304-3045 
> Fax: +49 (0) 40 55304-180
> oliver.graute@sagemcom.com
> 
> www.neuhaus.de / www.sagemcom.com
> Geschäftsführer: André Karnatz, Patrick Sevian
> Sitz der Gesellschaft: Hamburg
> Amtsgericht Hamburg / HRB 133678 
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

end of thread, other threads:[~2018-06-22 13:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-22 12:17 [ptxdist] [PATCHv2] maildrop: this patch adds maildrop to ptxdist Oliver Graute
2018-06-22 13:51 ` Michael Olbrich

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