Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
hollow 07/09/16 09:06:24
Modified: ChangeLog
Added: ezmlm-idx-6.0.0.ebuild
Log:
version bump; fixes #47668, #83606 and #152503
(Portage version: 2.1.3.9)
Revision Changes Path
1.17 net-mail/ezmlm-idx/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/ezmlm-idx/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/ezmlm-idx/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/ezmlm-idx/ChangeLog?r1=1.16&r2=1.17
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/ezmlm-idx/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog 23 Nov 2006 16:04:43 -0000 1.16
+++ ChangeLog 16 Sep 2007 09:06:24 -0000 1.17
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/ezmlm-idx
-# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/ezmlm-idx/ChangeLog,v 1.16 2006/11/23 16:04:43 vivo Exp $
+# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/ezmlm-idx/ChangeLog,v 1.17 2007/09/16 09:06:24 hollow Exp $
+
+*ezmlm-idx-6.0.0 (16 Sep 2007)
+
+ 16 Sep 2007; Benedikt Böhm <hollow@g.o> +ezmlm-idx-6.0.0.ebuild:
+ version bump; fixes #47668, #83606 and #152503
23 Nov 2006; Francesco Riosa <vivo@g.o> ezmlm-idx-0.40-r2.ebuild:
dev-db/mysql => virtual/mysql
1.1 net-mail/ezmlm-idx/ezmlm-idx-6.0.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/ezmlm-idx/ezmlm-idx-6.0.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/ezmlm-idx/ezmlm-idx-6.0.0.ebuild?rev=1.1&content-type=text/plain
Index: ezmlm-idx-6.0.0.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/ezmlm-idx/ezmlm-idx-6.0.0.ebuild,v 1.1 2007/09/16 09:06:24 hollow Exp $
EZMLM_P=ezmlm-0.53
inherit eutils fixheadtails
DESCRIPTION="Simple yet powerful mailing list manager for qmail"
HOMEPAGE="http://www.ezmlm.org"
SRC_URI="http://cr.yp.to/software/${EZMLM_P}.tar.gz
http://www.ezmlm.org/archive/${PV}/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
IUSE="mysql postgres"
DEPEND="
mysql? ( virtual/mysql )
postgres? ( dev-db/libpq )
"
RDEPEND="${DEPEND}
virtual/qmail"
S="${WORKDIR}"/${EZMLM_P}
pkg_setup() {
if use mysql && use postgres; then
die "cannot build mysql and pgsql support at the same time"
fi
}
src_unpack() {
unpack ${A}
mv "${WORKDIR}"/${P}/* "${S}" || die
cd "${S}"
epatch "${S}"/idx.patch
ht_fix_file Makefile
echo /usr/bin > conf-bin
echo /usr/lib/ezmlm > conf-lib
echo /etc/ezmlm > conf-etc
echo /usr/share/man > conf-man
echo /var/qmail > conf-qmail
echo $(tc-getCC) ${CFLAGS} -I/usr/include/{my,postgre}sql > conf-cc
echo $(tc-getCC) ${CFLAGS} > conf-ld
# fix DESTDIR and skip cat man-pages
sed -e "s:\(/install\) \(\"\`head\):\1 ${D}\2:" \
-e "s:\(./install.*\) < MAN$:grep -v \:/cat MAN | \1:" \
-e "s:\(\"\`head -n 1 conf-etc\`\"/default\):${D}\1:" \
-i Makefile
# ezmlm-mktab-{my|pg}sql may or may not be made
sed -i -e "s/\(^.*mktab\)/?\1/" BIN
}
src_compile() {
emake it man || die "make failed"
if use mysql; then
emake mysql || die "make mysql failed"
elif use postgres; then
emake pgsql || die "make pgsql failed"
fi
}
src_install () {
dodir /usr/bin /usr/lib/ezmlm /etc/ezmlm /usr/share/man
dobin ezmlm-cgi
make DESTDIR="${D}" setup || die "make setup failed"
}
--
gentoo-commits@g.o mailing list
|
|