diff options
Diffstat (limited to 'net-mail/queue-fix/queue-fix-1.4-r2.ebuild')
-rw-r--r-- | net-mail/queue-fix/queue-fix-1.4-r2.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-mail/queue-fix/queue-fix-1.4-r2.ebuild b/net-mail/queue-fix/queue-fix-1.4-r2.ebuild new file mode 100644 index 000000000000..c531036306ac --- /dev/null +++ b/net-mail/queue-fix/queue-fix-1.4-r2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/queue-fix/queue-fix-1.4-r2.ebuild,v 1.1 2003/08/12 04:56:39 robbat2 Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Qmail Queue Repair Application with support for big-todo" +SRC_URI="http://www.netmeridian.com/e-huss/${P}.tar.gz + mirror://qmail/queue-fix-todo.patch" +HOMEPAGE="http://www.netmeridian.com/e-huss/" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="x86" +IUSE="" +DEPEND="sys-devel/gcc-config" +PDEPEND="net-mail/qmail" + +src_unpack() { + unpack ${P}.tar.gz + epatch ${DISTDIR}/queue-fix-todo.patch + sed -i 's/^extern int errno;/#include <errno.h>/' ${S}/error.h +} + +src_compile() { + echo "${CC} ${CFLAGS}" > conf-cc + echo "${CC} ${LDFLAGS}" > conf-ld + emake || die +} + +src_install () { + into /var/qmail + dobin queue-fix + into /usr + dodoc README CHANGES +} + |