summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Scherbaum <dertobi123@gentoo.org>2008-06-15 08:13:30 +0000
committerTobias Scherbaum <dertobi123@gentoo.org>2008-06-15 08:13:30 +0000
commitfa6853b471907b7e0999fd745b9cf0233f72eb65 (patch)
treeb8f62b06f21b51200756d49d92676ebcdfcf3cd8 /mail-filter
parentfix #226577 (diff)
downloadgentoo-2-fa6853b471907b7e0999fd745b9cf0233f72eb65.tar.gz
gentoo-2-fa6853b471907b7e0999fd745b9cf0233f72eb65.tar.bz2
gentoo-2-fa6853b471907b7e0999fd745b9cf0233f72eb65.zip
Fix quoting, stop using ./configure (#120887)
(Portage version: 2.1.5.5)
Diffstat (limited to 'mail-filter')
-rw-r--r--mail-filter/rblcheck/ChangeLog7
-rw-r--r--mail-filter/rblcheck/rblcheck-1.5.ebuild16
2 files changed, 9 insertions, 14 deletions
diff --git a/mail-filter/rblcheck/ChangeLog b/mail-filter/rblcheck/ChangeLog
index ae063fdc4135..86e17a7a6a5b 100644
--- a/mail-filter/rblcheck/ChangeLog
+++ b/mail-filter/rblcheck/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for mail-filter/rblcheck
-# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/rblcheck/ChangeLog,v 1.6 2006/10/08 16:43:19 blubb Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/rblcheck/ChangeLog,v 1.7 2008/06/15 08:13:30 dertobi123 Exp $
+
+ 15 Jun 2008; Tobias Scherbaum <dertobi123@gentoo.org> rblcheck-1.5.ebuild:
+ Fix quoting, stop using ./configure (#120887)
08 Oct 2006; Simon Stelling <blubb@gentoo.org>
+files/rblcheck-1.5-configure.patch, rblcheck-1.5.ebuild:
diff --git a/mail-filter/rblcheck/rblcheck-1.5.ebuild b/mail-filter/rblcheck/rblcheck-1.5.ebuild
index 66f3ecf8d8c1..d2d85c232076 100644
--- a/mail-filter/rblcheck/rblcheck-1.5.ebuild
+++ b/mail-filter/rblcheck/rblcheck-1.5.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/rblcheck/rblcheck-1.5.ebuild,v 1.7 2006/10/08 16:43:19 blubb Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/rblcheck/rblcheck-1.5.ebuild,v 1.8 2008/06/15 08:13:30 dertobi123 Exp $
inherit eutils
@@ -14,19 +14,12 @@ KEYWORDS="alpha ~amd64 hppa mips ppc sparc x86"
IUSE=""
DEPEND=""
-RDEPEND=""
src_unpack() {
unpack ${A}
- cd ${S}
+ cd "${S}"
- epatch ${FILESDIR}/${P}-configure.patch
-}
-
-src_compile() {
- cd ${S}
- ./configure --prefix=/usr
- emake || die
+ epatch "${FILESDIR}/${P}-configure.patch"
}
src_install () {
@@ -34,5 +27,4 @@ src_install () {
doexe rbl rblcheck
dodoc README docs/rblcheck.ps docs/rblcheck.rtf
-
}