summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2006-03-12 09:23:20 +0000
committerAlin Năstac <mrness@gentoo.org>2006-03-12 09:23:20 +0000
commitac98712ba273f2f21707cb3a43f59f6821851432 (patch)
treea9417cb603fc2147a15c183418c74a73d267ce31 /net-dialup/capifwd
parentStable on ppc64; bug #125810 (diff)
downloadgentoo-2-ac98712ba273f2f21707cb3a43f59f6821851432.tar.gz
gentoo-2-ac98712ba273f2f21707cb3a43f59f6821851432.tar.bz2
gentoo-2-ac98712ba273f2f21707cb3a43f59f6821851432.zip
Beautify the ebuild's code.
(Portage version: 2.0.54)
Diffstat (limited to 'net-dialup/capifwd')
-rw-r--r--net-dialup/capifwd/ChangeLog7
-rw-r--r--net-dialup/capifwd/Manifest4
-rw-r--r--net-dialup/capifwd/capifwd-0.6.3.ebuild16
3 files changed, 15 insertions, 12 deletions
diff --git a/net-dialup/capifwd/ChangeLog b/net-dialup/capifwd/ChangeLog
index 845fc0cc55b8..efabfdbc8a16 100644
--- a/net-dialup/capifwd/ChangeLog
+++ b/net-dialup/capifwd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-dialup/capifwd
-# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/capifwd/ChangeLog,v 1.3 2005/06/26 08:44:09 blubb Exp $
+# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/capifwd/ChangeLog,v 1.4 2006/03/12 09:23:20 mrness Exp $
+
+ 12 Mar 2006; Alin Nastac <mrness@gentoo.org> capifwd-0.6.3.ebuild:
+ Beautify the ebuild's code.
26 Jun 2005; Simon Stelling <blubb@gentoo.org> capifwd-0.6.3.ebuild:
added ~amd64 keyword
diff --git a/net-dialup/capifwd/Manifest b/net-dialup/capifwd/Manifest
index dc22eac23208..f5a2d9425f65 100644
--- a/net-dialup/capifwd/Manifest
+++ b/net-dialup/capifwd/Manifest
@@ -1,7 +1,7 @@
MD5 8ab960a234e39751b6e04c7922908314 ChangeLog 662
-MD5 d2acf377c86761937a704f2455f1e353 metadata.xml 255
-MD5 7cef2cfa047b0d4447903a7924fef8bf capifwd-0.6.3.ebuild 1050
+MD5 8f13906aeeaf36d85b494fbd77811793 capifwd-0.6.3.ebuild 1013
MD5 3e3512b77612880bfe174bee8870e609 files/capifwd-0.6.3.patch 1057
MD5 449537e26587ce2daaf23629bcad366a files/capifwd.conf 255
MD5 d9ba73a7ed9b8ec964aa75ce3890da52 files/capifwd.init 552
MD5 c285576667acfe2e958402cd0d600ad7 files/digest-capifwd-0.6.3 65
+MD5 d2acf377c86761937a704f2455f1e353 metadata.xml 255
diff --git a/net-dialup/capifwd/capifwd-0.6.3.ebuild b/net-dialup/capifwd/capifwd-0.6.3.ebuild
index 83ff4a251879..40268b61d8b0 100644
--- a/net-dialup/capifwd/capifwd-0.6.3.ebuild
+++ b/net-dialup/capifwd/capifwd-0.6.3.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/capifwd/capifwd-0.6.3.ebuild,v 1.3 2005/06/26 08:44:09 blubb Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/capifwd/capifwd-0.6.3.ebuild,v 1.4 2006/03/12 09:23:20 mrness Exp $
inherit eutils
@@ -12,13 +12,15 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE=""
+
DEPEND="net-dialup/capi4k-utils"
S="${WORKDIR}/linux-server"
src_unpack() {
- unpack ${A} || die
- cd ${S}
+ unpack ${A}
+
+ cd "${S}"
epatch "${FILESDIR}/${P}.patch"
#Replace obsolete sys_errlist with strerror
@@ -32,8 +34,6 @@ src_install() {
dodoc AUTHORS ChangeLog README
# install init-script
- exeinto /etc/init.d
- newexe ${FILESDIR}/capifwd.init capifwd
- insinto /etc/conf.d
- newins ${FILESDIR}/capifwd.conf capifwd
+ newinitd "${FILESDIR}/capifwd.init" capifwd
+ newconfd "${FILESDIR}/capifwd.conf" capifwd
}