diff options
author | Tim Harder <radhermit@gentoo.org> | 2018-07-02 14:05:41 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2018-09-18 17:21:43 -0400 |
commit | 278d0a6c9c505f738ea43893241f7f3ed376a95d (patch) | |
tree | 2d9ae8ab0bb551c2017dd7c2eee7f4308a66a4c4 /net-mail | |
parent | profiles: powerpc: Does not actually have media-libs/mlt stable (diff) | |
download | gentoo-278d0a6c9c505f738ea43893241f7f3ed376a95d.tar.gz gentoo-278d0a6c9c505f738ea43893241f7f3ed376a95d.tar.bz2 gentoo-278d0a6c9c505f738ea43893241f7f3ed376a95d.zip |
net-mail/mlmmj: version bump to 1.3.0
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/mlmmj/Manifest | 1 | ||||
-rw-r--r-- | net-mail/mlmmj/mlmmj-1.3.0.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/net-mail/mlmmj/Manifest b/net-mail/mlmmj/Manifest index 9736d5ec575e..4c4cd44cef28 100644 --- a/net-mail/mlmmj/Manifest +++ b/net-mail/mlmmj/Manifest @@ -1,3 +1,4 @@ DIST mlmmj-1.2.18.0.tar.bz2 240571 BLAKE2B ad71178da031fcdbfe5002d542c3bc6e4f49c706c80b8439f15c363eb8f72264d4dafa15aaef32bc99e85d0397b52d43e30dddf42b00674642545af8a959fdfc SHA512 f40fbb8a8ee5312ac6d6baa32065205b768b1ad2a16b8622e6316723d64ceb118cd6d3c0f64929d610596433e1ccb1082c23ea8ad69ca004a6b563da72bd8cc6 DIST mlmmj-1.2.18.1.tar.bz2 240942 BLAKE2B cfd5432b895f7c096a78ef9b522576de68f4fb4f2b016839b31e10bffeb45725aed701c557d64dd1cb271f5d977746983cb624b0c00f9f6fb26f2b7d6df575c4 SHA512 755af623054daac31dfb3de20c017422c40f7fed42c141c5d398c2bd4d5deb8975db556af53f3e5e0711a83a260d7bf3017e27c4fd399a792190de683c470b72 DIST mlmmj-1.2.19.0.tar.bz2 284701 BLAKE2B a145b742a6024447d107b40bdd4072c1933069493360600161a3f585575a8cf2252393d53e8a66c0702301f148d73df7173b50234818bac4ae5b2269ff42f72b SHA512 c0f23b434941bfb5bfcb9a0f292edcfa62c9bb357014d41f82b03bd8ed1a951e3c8f09293dd333030b024d3da82c514de789b8916cc3c0f493ad8fefbe3a3afb +DIST mlmmj-1.3.0.tar.bz2 292519 BLAKE2B abaf5c7ad53034d2201a2d3ba6d7f99ca83f47ec83df59e12a90a7118fbbde941d5ed2d14864a4af1568f67e74ea082fbc70fc9e44390673b76377bb3679c817 SHA512 c704d89f8a96c0ffc751a744ffdefb5e4304ab74be89292f06ce0c337b8ff1cc5a91737c8b1bd96fe3e993338986fa42bf360cfefc508e1eac74ab88ffda2494 diff --git a/net-mail/mlmmj/mlmmj-1.3.0.ebuild b/net-mail/mlmmj/mlmmj-1.3.0.ebuild new file mode 100644 index 000000000000..66a6bc8a1e10 --- /dev/null +++ b/net-mail/mlmmj/mlmmj-1.3.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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" +PATCHES=( + "${FILESDIR}"/mlmmj-1.2.19.0-listcontrol-customheaders.patch +) + +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" +} |