Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/mlmmj: ChangeLog mlmmj-1.2.17.ebuild
Date: Mon, 01 Feb 2010 04:26:05
Message-Id: E1NbnrO-0006Oi-Im@stork.gentoo.org
1 robbat2 10/02/01 04:26:02
2
3 Modified: ChangeLog
4 Added: mlmmj-1.2.17.ebuild
5 Log:
6 Actually bump, as have been using it in infra for a while.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.33 net-mail/mlmmj/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mlmmj/ChangeLog?rev=1.33&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mlmmj/ChangeLog?rev=1.33&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mlmmj/ChangeLog?r1=1.32&r2=1.33
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-mail/mlmmj/ChangeLog,v
19 retrieving revision 1.32
20 retrieving revision 1.33
21 diff -p -w -b -B -u -u -r1.32 -r1.33
22 --- ChangeLog 6 Jan 2010 19:22:37 -0000 1.32
23 +++ ChangeLog 1 Feb 2010 04:26:01 -0000 1.33
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-mail/mlmmj
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/ChangeLog,v 1.32 2010/01/06 19:22:37 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/ChangeLog,v 1.33 2010/02/01 04:26:01 robbat2 Exp $
29 +
30 +*mlmmj-1.2.17 (01 Feb 2010)
31 +
32 + 01 Feb 2010; Robin H. Johnson <robbat2@g.o> +mlmmj-1.2.17.ebuild:
33 + Actually bump, as have been using it in infra for a while.
34
35 06 Jan 2010; Christian Faulhammer <fauli@g.o>
36 mlmmj-1.2.16-r1.ebuild:
37
38
39
40 1.1 net-mail/mlmmj/mlmmj-1.2.17.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mlmmj/mlmmj-1.2.17.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mlmmj/mlmmj-1.2.17.ebuild?rev=1.1&content-type=text/plain
44
45 Index: mlmmj-1.2.17.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/mlmmj-1.2.17.ebuild,v 1.1 2010/02/01 04:26:01 robbat2 Exp $
50
51 inherit eutils
52
53 MY_PV="${PV/_rc/-RC}"
54 MY_P="${PN}-${MY_PV}"
55 DESCRIPTION="Mailing list managing made joyful"
56 HOMEPAGE="http://mlmmj.mmj.dk/"
57 SRC_URI="http://mlmmj.mmj.dk/files/${MY_P}.tar.bz2"
58 LICENSE="MIT"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
61 IUSE=""
62 DEPEND="virtual/mta"
63 #RDEPEND=""
64 S="${WORKDIR}/${MY_P}"
65 SHAREDIR="/usr/share/mlmmj"
66
67 src_unpack() {
68 unpack ${A}
69 #epatch "${FILESDIR}"/${PN}-1.2.16-requeue-unlink-fix.patch
70 #epatch "${FILESDIR}"/${PN}-1.2.16-unsub-digest-text.patch
71 cd "${S}"
72 for i in "${S}" "${S}"/contrib/recievestrip ; do
73 pushd "${i}"
74 # Ignore errors
75 emake -j1 distclean 2>/dev/null 1>/dev/null
76 popd
77 done
78 }
79
80 src_compile() {
81 econf
82 emake || die
83 }
84
85 src_install() {
86 make DESTDIR="${D}" install || die
87
88 dodir ${SHAREDIR}
89 dodir ${SHAREDIR}/texts
90 insinto ${SHAREDIR}/texts
91 doins listtexts/*
92
93 dodoc AUTHORS ChangeLog FAQ README
94 dodoc TODO TUNABLES UPGRADE VERSION README.access
95 dodoc README.sendmail README.exim4 README.security
96
97 insinto /usr/share/mlmmj
98 cd "${S}"/contrib/web
99 doins -r *
100
101 dobin "${S}"/contrib/recievestrip
102 }
103
104 pkg_postinst() {
105 elog "mlmmj comes with serveral webinterfaces:"
106 elog "- One for user subscribing/unsubscribing"
107 elog "- One for admin tasks"
108 elog "both available in a php and perl module."
109 elog "For more info have a look in /usr/share/mlmmj"
110 }