diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-01-04 07:26:55 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-01-04 07:26:55 +0000 |
commit | 41cecdd4f90433d013a9745da531d127ba0379b5 (patch) | |
tree | 2313ba76c438719b2e2cc64ec77b3f749f3413e7 /net-mail/mlmmj/mlmmj-1.2.15.ebuild | |
parent | Fix all warnings. (diff) | |
download | gentoo-2-41cecdd4f90433d013a9745da531d127ba0379b5.tar.gz gentoo-2-41cecdd4f90433d013a9745da531d127ba0379b5.tar.bz2 gentoo-2-41cecdd4f90433d013a9745da531d127ba0379b5.zip |
Version bump.
(Portage version: 2.1.4_rc11)
Diffstat (limited to 'net-mail/mlmmj/mlmmj-1.2.15.ebuild')
-rw-r--r-- | net-mail/mlmmj/mlmmj-1.2.15.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/net-mail/mlmmj/mlmmj-1.2.15.ebuild b/net-mail/mlmmj/mlmmj-1.2.15.ebuild new file mode 100644 index 000000000000..3bebe0c1650a --- /dev/null +++ b/net-mail/mlmmj/mlmmj-1.2.15.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mlmmj/mlmmj-1.2.15.ebuild,v 1.1 2008/01/04 07:26:54 robbat2 Exp $ + +inherit eutils + +MY_PV="${PV/_rc/-RC}" +MY_P="${PN}-${MY_PV}" +DESCRIPTION="Mailing list managing made joyful" +HOMEPAGE="http://mlmmj.mmj.dk/" +SRC_URI="http://mlmmj.mmj.dk/files/${MY_P}.tar.bz2" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86 ~ppc ~ppc-macos ~amd64" +IUSE="" +DEPEND="virtual/mta" +#RDEPEND="" +S="${WORKDIR}/${MY_P}" +SHAREDIR="/usr/share/mlmmj" + +src_unpack() { + unpack ${A} + cd "${S}" + for i in "${S}" "${S}"/contrib/recievestrip ; do + pushd "${i}" + # Ignore errors + emake -j1 distclean + 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" +} |