summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2006-03-12 18:37:26 +0000
committerAlin Năstac <mrness@gentoo.org>2006-03-12 18:37:26 +0000
commit5dead2187ab923fb693fab586e991276f0cb1e8b (patch)
tree2863d44a21b6e2a890addbe2e5239b40859803d7 /net-dialup/multiimonc
parentNew upstream version; No longer depend on Debian system. (diff)
downloadgentoo-2-5dead2187ab923fb693fab586e991276f0cb1e8b.tar.gz
gentoo-2-5dead2187ab923fb693fab586e991276f0cb1e8b.tar.bz2
gentoo-2-5dead2187ab923fb693fab586e991276f0cb1e8b.zip
Remove virtual/libc dependency. Quote $S, $FILESDIR and $D.
(Portage version: 2.0.54)
Diffstat (limited to 'net-dialup/multiimonc')
-rw-r--r--net-dialup/multiimonc/ChangeLog5
-rw-r--r--net-dialup/multiimonc/multiimonc-0.3.6.ebuild14
2 files changed, 10 insertions, 9 deletions
diff --git a/net-dialup/multiimonc/ChangeLog b/net-dialup/multiimonc/ChangeLog
index 3fb93a41eaa1..2dd2c50d4b39 100644
--- a/net-dialup/multiimonc/ChangeLog
+++ b/net-dialup/multiimonc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-dialup/multiimonc
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/multiimonc/ChangeLog,v 1.7 2006/01/26 13:09:39 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/multiimonc/ChangeLog,v 1.8 2006/03/12 18:37:26 mrness Exp $
+
+ 12 Mar 2006; Alin Nastac <mrness@gentoo.org> multiimonc-0.3.6.ebuild:
+ Remove virtual/libc dependency. Quote $S, $FILESDIR and $D.
26 Jan 2006; Michael Hanselmann <hansmi@gentoo.org>
multiimonc-0.3.6.ebuild:
diff --git a/net-dialup/multiimonc/multiimonc-0.3.6.ebuild b/net-dialup/multiimonc/multiimonc-0.3.6.ebuild
index 4ed0b640aa1d..1056708fc63a 100644
--- a/net-dialup/multiimonc/multiimonc-0.3.6.ebuild
+++ b/net-dialup/multiimonc/multiimonc-0.3.6.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/multiimonc/multiimonc-0.3.6.ebuild,v 1.6 2006/01/26 13:09:39 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/multiimonc/multiimonc-0.3.6.ebuild,v 1.7 2006/03/12 18:37:26 mrness Exp $
inherit eutils
@@ -15,14 +15,13 @@ SLOT="0"
LICENSE="GPL-2"
IUSE=""
-DEPEND="=x11-libs/wxGTK-2.4*
- virtual/libc"
+DEPEND="=x11-libs/wxGTK-2.4*"
src_unpack() {
unpack ${A}
- cd ${S}/src
- epatch ${FILESDIR}/${PV}-TextScrollWindow.diff || die "epatch failed"
- cd ${S}
+ cd "${S}/src"
+ epatch "${FILESDIR}/${PV}-TextScrollWindow.diff" || die "epatch failed"
+ cd "${S}"
}
src_compile() {
@@ -31,6 +30,5 @@ src_compile() {
}
src_install() {
- make DESTDIR=${D} install || die "install problem"
+ make DESTDIR="${D}" install || die "install problem"
}
-