diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-03-16 22:20:16 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-03-16 22:20:16 +0000 |
commit | 38e4bc5934f3fae73fba30b3f1b6d6fef5522925 (patch) | |
tree | aea0edef6e04fe1a67b3a353a87dbab7bf8bcf78 /net-dialup/xc | |
parent | Remove virtual/libc dependency. (diff) | |
download | gentoo-2-38e4bc5934f3fae73fba30b3f1b6d6fef5522925.tar.gz gentoo-2-38e4bc5934f3fae73fba30b3f1b6d6fef5522925.tar.bz2 gentoo-2-38e4bc5934f3fae73fba30b3f1b6d6fef5522925.zip |
Quote $FILESDIR and $D.
(Portage version: 2.0.54)
Diffstat (limited to 'net-dialup/xc')
-rw-r--r-- | net-dialup/xc/ChangeLog | 7 | ||||
-rw-r--r-- | net-dialup/xc/Manifest | 4 | ||||
-rw-r--r-- | net-dialup/xc/xc-4.3.2-r1.ebuild | 15 |
3 files changed, 14 insertions, 12 deletions
diff --git a/net-dialup/xc/ChangeLog b/net-dialup/xc/ChangeLog index 84c061d44685..6327fe22d222 100644 --- a/net-dialup/xc/ChangeLog +++ b/net-dialup/xc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/xc -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/xc/ChangeLog,v 1.16 2005/06/27 07:37:42 corsair Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/xc/ChangeLog,v 1.17 2006/03/16 22:20:15 mrness Exp $ + + 16 Mar 2006; Alin Nastac <mrness@gentoo.org> xc-4.3.2-r1.ebuild: + Quote $FILESDIR and $D. 27 Jun 2005; Markus Rothe <corsair@gentoo.org> xc-4.3.2-r1.ebuild: Stable on ppc64 diff --git a/net-dialup/xc/Manifest b/net-dialup/xc/Manifest index f2d0882e0f17..1b57b4963e27 100644 --- a/net-dialup/xc/Manifest +++ b/net-dialup/xc/Manifest @@ -1,6 +1,6 @@ MD5 b80450ef4e48fc95664d1f77dab87895 ChangeLog 2076 -MD5 ec2f84816306825d125d0c01bd86758d metadata.xml 163 -MD5 3432182ffea79fc862577339f7ba3897 xc-4.3.2-r1.ebuild 1133 MD5 a19ff63623f36ba8624bf50f382e210c files/digest-xc-4.3.2-r1 60 MD5 d6b646fa4989aba362ce50ae2b1907e5 files/xc-4.3.2-add-115200.patch 246 MD5 80e981efed033a8eaaa0c0e632eee1ae files/xc-4.3.2-gentoo.diff 1905 +MD5 ec2f84816306825d125d0c01bd86758d metadata.xml 163 +MD5 4c171e2cd1fff86d53c465479ea72cab xc-4.3.2-r1.ebuild 1176 diff --git a/net-dialup/xc/xc-4.3.2-r1.ebuild b/net-dialup/xc/xc-4.3.2-r1.ebuild index 39cd4144453b..4f579006096b 100644 --- a/net-dialup/xc/xc-4.3.2-r1.ebuild +++ b/net-dialup/xc/xc-4.3.2-r1.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/xc/xc-4.3.2-r1.ebuild,v 1.14 2005/06/27 07:37:42 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/xc/xc-4.3.2-r1.ebuild,v 1.15 2006/03/16 22:20:16 mrness Exp $ inherit eutils @@ -18,11 +18,11 @@ DEPEND="sys-libs/ncurses" src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${P}-gentoo.diff + cd "${S}" + epatch "${FILESDIR}/${P}-gentoo.diff" # Adds 115200 bps support - epatch ${FILESDIR}/${P}-add-115200.patch + epatch "${FILESDIR}/${P}-add-115200.patch" # Fixes the Makefile to use gentoo CFLAGS sed -i \ @@ -32,14 +32,13 @@ src_unpack() { } src_compile() { - make WARN="" all prefix=/usr mandir=/usr/share/man || die - + make WARN="" all prefix=/usr mandir=/usr/share/man || die "make failed" } src_install () { dodir /usr/bin /usr/share/man/man1 /usr/lib/xc - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die "make install failed" insinto /usr/lib/xc doins phonelist xc.init dotfiles/.[a-z]* |