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-libs/vanessa-mcast: vanessa-mcast-1.0.0.ebuild
Date: Thu, 28 Oct 2010 14:39:37
Message-Id: 20101028143933.E5C8D20051@flycatcher.gentoo.org
1 ssuominen 10/10/28 14:39:33
2
3 Modified: vanessa-mcast-1.0.0.ebuild
4 Log:
5 punt default src_compile, fix quoting
6
7 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 net-libs/vanessa-mcast/vanessa-mcast-1.0.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/vanessa-mcast/vanessa-mcast-1.0.0.ebuild?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/vanessa-mcast/vanessa-mcast-1.0.0.ebuild?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/vanessa-mcast/vanessa-mcast-1.0.0.ebuild?r1=1.5&r2=1.6
15
16 Index: vanessa-mcast-1.0.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/vanessa-mcast/vanessa-mcast-1.0.0.ebuild,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- vanessa-mcast-1.0.0.ebuild 23 Sep 2009 18:51:16 -0000 1.5
23 +++ vanessa-mcast-1.0.0.ebuild 28 Oct 2010 14:39:33 -0000 1.6
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-libs/vanessa-mcast/vanessa-mcast-1.0.0.ebuild,v 1.5 2009/09/23 18:51:16 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/vanessa-mcast/vanessa-mcast-1.0.0.ebuild,v 1.6 2010/10/28 14:39:33 ssuominen Exp $
30
31 MY_PN="${PN/-/_}"
32 MY_P="${MY_PN}-${PV}"
33 @@ -18,12 +18,7 @@
34
35 S=${WORKDIR}/${MY_P}
36
37 -src_compile() {
38 - econf || die "error configure"
39 - emake || die "error compiling"
40 -}
41 -
42 src_install() {
43 - make DESTDIR=${D} install || die "error installing"
44 + make DESTDIR="${D}" install || die
45 dodoc README NEWS AUTHORS TODO INSTALL
46 }