summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-06-18 00:08:33 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2015-06-18 00:08:33 +0000
commit8ceb1999da1c0e75e822ad731b69a16250d930d4 (patch)
treea125ec8fac4472f01ed515eb6dfea90dc3c4f92f /net-mail
parentRemove require_php_cgi. Fix bug #549974. (diff)
downloadgentoo-2-8ceb1999da1c0e75e822ad731b69a16250d930d4.tar.gz
gentoo-2-8ceb1999da1c0e75e822ad731b69a16250d930d4.tar.bz2
gentoo-2-8ceb1999da1c0e75e822ad731b69a16250d930d4.zip
Bump.
(Portage version: 2.2.16/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/mlmmj/ChangeLog9
-rw-r--r--net-mail/mlmmj/mlmmj-1.2.19.0.ebuild41
2 files changed, 48 insertions, 2 deletions
diff --git a/net-mail/mlmmj/ChangeLog b/net-mail/mlmmj/ChangeLog
index d3d8bb3c4334..624011c533ec 100644
--- a/net-mail/mlmmj/ChangeLog
+++ b/net-mail/mlmmj/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/mlmmj
-# 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 $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/ChangeLog,v 1.46 2015/06/18 00:08:33 robbat2 Exp $
+
+*mlmmj-1.2.19.0 (18 Jun 2015)
+
+ 18 Jun 2015; Robin H. Johnson <robbat2@gentoo.org> +mlmmj-1.2.19.0.ebuild:
+ Bump.
*mlmmj-1.2.18.1 (05 Feb 2014)
diff --git a/net-mail/mlmmj/mlmmj-1.2.19.0.ebuild b/net-mail/mlmmj/mlmmj-1.2.19.0.ebuild
new file mode 100644
index 000000000000..8967732e6dae
--- /dev/null
+++ b/net-mail/mlmmj/mlmmj-1.2.19.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/mlmmj-1.2.19.0.ebuild,v 1.1 2015/06/18 00:08:33 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"
+}