diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2010-08-24 17:14:55 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2010-08-24 17:14:55 +0000 |
commit | 2f55840d09a5d27114e96975f6c24de20b822348 (patch) | |
tree | a2dba0ac132b12f24bb20bb55c4a9aa35042759f /net-mail/mlmmj | |
parent | Include Hg revision info in the einfo output for Hg live builds, to allow rep... (diff) | |
download | gentoo-2-2f55840d09a5d27114e96975f6c24de20b822348.tar.gz gentoo-2-2f55840d09a5d27114e96975f6c24de20b822348.tar.bz2 gentoo-2-2f55840d09a5d27114e96975f6c24de20b822348.zip |
Version bump, security fixes from upstream. Also new homepage and SRC_URI.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/mlmmj')
-rw-r--r-- | net-mail/mlmmj/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/mlmmj/mlmmj-1.2.17.1.ebuild | 64 |
2 files changed, 70 insertions, 1 deletions
diff --git a/net-mail/mlmmj/ChangeLog b/net-mail/mlmmj/ChangeLog index 688df86cec42..d84492189dc5 100644 --- a/net-mail/mlmmj/ChangeLog +++ b/net-mail/mlmmj/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/mlmmj # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/ChangeLog,v 1.34 2010/05/28 14:07:55 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/ChangeLog,v 1.35 2010/08/24 17:14:55 robbat2 Exp $ + +*mlmmj-1.2.17.1 (24 Aug 2010) + + 24 Aug 2010; Robin H. Johnson <robbat2@gentoo.org> +mlmmj-1.2.17.1.ebuild: + Version bump, security fixes from upstream. Also new homepage and SRC_URI. 28 May 2010; Torsten Veller <tove@gentoo.org> metadata.xml: Remove klieber from metadata.xml (#317393) diff --git a/net-mail/mlmmj/mlmmj-1.2.17.1.ebuild b/net-mail/mlmmj/mlmmj-1.2.17.1.ebuild new file mode 100644 index 000000000000..432a3a9ba713 --- /dev/null +++ b/net-mail/mlmmj/mlmmj-1.2.17.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/mlmmj-1.2.17.1.ebuild,v 1.1 2010/08/24 17:14:55 robbat2 Exp $ + +inherit eutils + +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" +#RDEPEND="" +S="${WORKDIR}/${MY_P}" +SHAREDIR="/usr/share/mlmmj" + +src_unpack() { + unpack ${A} + #epatch "${FILESDIR}"/${PN}-1.2.16-requeue-unlink-fix.patch + #epatch "${FILESDIR}"/${PN}-1.2.16-unsub-digest-text.patch + cd "${S}" + for i in "${S}" "${S}"/contrib/recievestrip ; do + pushd "${i}" + # Ignore errors + emake -j1 distclean 2>/dev/null 1>/dev/null + popd + done +} + +src_compile() { + econf + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + + dodir ${SHAREDIR} + dodir ${SHAREDIR}/texts + insinto ${SHAREDIR}/texts + doins listtexts/* + + dodoc AUTHORS ChangeLog FAQ README + dodoc TODO TUNABLES UPGRADE VERSION README.access + dodoc README.sendmail README.exim4 README.security + + insinto /usr/share/mlmmj + cd "${S}"/contrib/web + doins -r * + + dobin "${S}"/contrib/recievestrip +} + +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" +} |