Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/vtun: vtun-2.6-r1.ebuild
Date: Thu, 28 Oct 2010 09:40:58
Message-Id: 20101028094053.5C51920051@flycatcher.gentoo.org
1 ssuominen 10/10/28 09:40:53
2
3 Modified: vtun-2.6-r1.ebuild
4 Log:
5 fix quoting
6
7 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 net-misc/vtun/vtun-2.6-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/vtun/vtun-2.6-r1.ebuild?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/vtun/vtun-2.6-r1.ebuild?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/vtun/vtun-2.6-r1.ebuild?r1=1.7&r2=1.8
15
16 Index: vtun-2.6-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/vtun/vtun-2.6-r1.ebuild,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- vtun-2.6-r1.ebuild 23 Sep 2009 19:48:27 -0000 1.7
23 +++ vtun-2.6-r1.ebuild 28 Oct 2010 09:40:53 -0000 1.8
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2009 Gentoo Foundation
26 +# Copyright 1999-2010 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/vtun-2.6-r1.ebuild,v 1.7 2009/09/23 19:48:27 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/vtun/vtun-2.6-r1.ebuild,v 1.8 2010/10/28 09:40:53 ssuominen Exp $
30
31 inherit eutils
32
33 @@ -26,9 +26,9 @@
34
35 src_unpack() {
36 unpack ${A}
37 - cd ${S}
38 - epatch ${FILESDIR}/${P}-makefile.patch
39 - epatch ${FILESDIR}/${P}-lzo2.patch
40 + cd "${S}"
41 + epatch "${FILESDIR}"/${P}-makefile.patch
42 + epatch "${FILESDIR}"/${P}-lzo2.patch
43 }
44
45 src_compile() {
46 @@ -45,7 +45,7 @@
47 }
48
49 src_install () {
50 - make DESTDIR=${D} prefix=/usr \
51 + make DESTDIR="${D}" prefix=/usr \
52 mandir=/usr/share/man \
53 infodir=/usr/share/info \
54 datadir=/usr/share \
55 @@ -55,10 +55,10 @@
56
57 dodoc ChangeLog Credits FAQ README README.Setup README.Shaper TODO
58
59 - newinitd ${FILESDIR}/vtun.rc vtun
60 + newinitd "${FILESDIR}"/vtun.rc vtun
61
62 insinto etc
63 - doins ${FILESDIR}/vtund-start.conf
64 + doins "${FILESDIR}"/vtund-start.conf
65 }
66
67 pkg_postinst () {