summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2005-07-13 11:04:13 +0000
committerSven Wegener <swegener@gentoo.org>2005-07-13 11:04:13 +0000
commit2489d4012fe1c924e8f68376a3eb7f44ab894267 (patch)
tree27ff691ded3143ca36b872f7885f015c47f72623 /net-misc/astmanproxy
parentAdded a patch to log invalid envelope senders. (diff)
downloadgentoo-2-2489d4012fe1c924e8f68376a3eb7f44ab894267.tar.gz
gentoo-2-2489d4012fe1c924e8f68376a3eb7f44ab894267.tar.bz2
gentoo-2-2489d4012fe1c924e8f68376a3eb7f44ab894267.zip
QA: Don't assign default to S; Default src_compile is fine because we have no configure script
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-misc/astmanproxy')
-rw-r--r--net-misc/astmanproxy/ChangeLog6
-rw-r--r--net-misc/astmanproxy/astmanproxy-1.1.ebuild18
2 files changed, 11 insertions, 13 deletions
diff --git a/net-misc/astmanproxy/ChangeLog b/net-misc/astmanproxy/ChangeLog
index 8abb12850f24..a81ace002354 100644
--- a/net-misc/astmanproxy/ChangeLog
+++ b/net-misc/astmanproxy/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/astmanproxy
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/astmanproxy/ChangeLog,v 1.2 2005/07/13 09:17:10 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/astmanproxy/ChangeLog,v 1.3 2005/07/13 11:04:13 swegener Exp $
+
+ 13 Jul 2005; Sven Wegener <swegener@gentoo.org> astmanproxy-1.1.ebuild:
+ QA: Don't assign default to S; Default src_compile is fine because we have
+ no configure script
13 Jul 2005; David Holm <dholm@gentoo.org> astmanproxy-1.1.ebuild:
Added to ~ppc.
diff --git a/net-misc/astmanproxy/astmanproxy-1.1.ebuild b/net-misc/astmanproxy/astmanproxy-1.1.ebuild
index ea991c286c63..815ad177f4f3 100644
--- a/net-misc/astmanproxy/astmanproxy-1.1.ebuild
+++ b/net-misc/astmanproxy/astmanproxy-1.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/astmanproxy/astmanproxy-1.1.ebuild,v 1.2 2005/07/13 09:17:10 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/astmanproxy/astmanproxy-1.1.ebuild,v 1.3 2005/07/13 11:04:13 swegener Exp $
inherit eutils
@@ -16,22 +16,16 @@ KEYWORDS="~ppc ~x86"
DEPEND="virtual/libc"
-S=${WORKDIR}/${P}
-
src_unpack() {
unpack ${A}
+ cd "${S}"
- cd ${S}
# small patch for cflags and path changes
- epatch ${FILESDIR}/${P}-gentoo.diff
-}
-
-src_compile() {
- emake || die "emake failed"
+ epatch "${FILESDIR}"/${P}-gentoo.diff
}
src_install() {
- make DESTDIR=${D} install || die
+ make DESTDIR="${D}" install || die
dodoc README README.* VERSIONS astmanproxy.conf
@@ -39,7 +33,7 @@ src_install() {
dodoc samples/*
# fix permissions on config file
- chmod 0640 ${D}/etc/astmanproxy.conf
+ fperms 0640 /etc/astmanproxy.conf
- newinitd ${FILESDIR}/astmanproxy.rc6 astmanproxy
+ newinitd "${FILESDIR}"/astmanproxy.rc6 astmanproxy
}