summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2014-02-05 20:38:56 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2014-02-05 20:38:56 +0000
commitc2f9ab23459258034917461cff7ab72ecfd8b6be (patch)
tree8f5c974a9a763b16748ea56591b58139356274f3 /net-mail
parentFix manifest, bug #499556 (diff)
downloadgentoo-2-c2f9ab23459258034917461cff7ab72ecfd8b6be.tar.gz
gentoo-2-c2f9ab23459258034917461cff7ab72ecfd8b6be.tar.bz2
gentoo-2-c2f9ab23459258034917461cff7ab72ecfd8b6be.zip
Bump, fixes a minor mail loss bug.
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/mlmmj/ChangeLog9
-rw-r--r--net-mail/mlmmj/mlmmj-1.2.18.1.ebuild41
2 files changed, 48 insertions, 2 deletions
diff --git a/net-mail/mlmmj/ChangeLog b/net-mail/mlmmj/ChangeLog
index ba12f33dafb9..d3d8bb3c4334 100644
--- a/net-mail/mlmmj/ChangeLog
+++ b/net-mail/mlmmj/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/mlmmj
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/ChangeLog,v 1.44 2013/07/27 22:08:34 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/ChangeLog,v 1.45 2014/02/05 20:38:56 robbat2 Exp $
+
+*mlmmj-1.2.18.1 (05 Feb 2014)
+
+ 05 Feb 2014; Robin H. Johnson <robbat2@gentoo.org> +mlmmj-1.2.18.1.ebuild:
+ Bump, fixes a minor mail loss bug.
27 Jul 2013; Agostino Sarubbo <ago@gentoo.org> mlmmj-1.2.18.0.ebuild:
Stable for x86, wrt bug #477578
diff --git a/net-mail/mlmmj/mlmmj-1.2.18.1.ebuild b/net-mail/mlmmj/mlmmj-1.2.18.1.ebuild
new file mode 100644
index 000000000000..2b8a5813d5fe
--- /dev/null
+++ b/net-mail/mlmmj/mlmmj-1.2.18.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/mlmmj-1.2.18.1.ebuild,v 1.1 2014/02/05 20:38:56 robbat2 Exp $
+
+EAPI=4
+
+MY_PV="${PV/_rc/-RC}"
+MY_P="${PN}-${MY_PV}"
+DESCRIPTION="Mailing list managing made joyful"
+HOMEPAGE="http://mlmmj.org/"
+SRC_URI="http://mlmmj.org/releases/${MY_P}.tar.bz2"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE=""
+DEPEND="virtual/mta"
+S="${WORKDIR}/${MY_P}"
+
+DOCS="AUTHORS ChangeLog FAQ README* TODO TUNABLES UPGRADE"
+
+src_configure() {
+ econf --enable-receive-strip
+}
+
+src_install() {
+ default
+
+ insinto /usr/share/mlmmj/texts
+ doins listtexts/*
+
+ insinto /usr/share/mlmmj
+ doins -r contrib/web/*
+}
+
+pkg_postinst() {
+ elog "mlmmj comes with serveral webinterfaces:"
+ elog "- One for user subscribing/unsubscribing"
+ elog "- One for admin tasks"
+ elog "both available in a php and perl module."
+ elog "For more info have a look in /usr/share/mlmmj"
+}