Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/gentoo-functions: gentoo-functions-0.8.ebuild ChangeLog
Date: Sat, 28 Feb 2015 13:25:21
Message-Id: 20150228132517.0C76A12BCB@oystercatcher.gentoo.org
1 grobian 15/02/28 13:25:17
2
3 Modified: gentoo-functions-0.8.ebuild ChangeLog
4 Log:
5 Fix compilation/installation on at least Solaris
6
7 (Portage version: 2.2.14-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
8
9 Revision Changes Path
10 1.4 sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild?r1=1.3&r2=1.4
15
16 Index: gentoo-functions-0.8.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- gentoo-functions-0.8.ebuild 5 Jan 2015 09:49:11 -0000 1.3
23 +++ gentoo-functions-0.8.ebuild 28 Feb 2015 13:25:17 -0000 1.4
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild,v 1.3 2015/01/05 09:49:11 heroxbd Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gentoo-functions/gentoo-functions-0.8.ebuild,v 1.4 2015/02/28 13:25:17 grobian Exp $
29
30 EAPI=5
31
32 @@ -8,7 +8,8 @@
33 inherit git-r3
34 EGIT_REPO_URI="git://github.com/gentoo/${PN}.git"
35 else
36 - SRC_URI="http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2"
37 + SRC_URI="http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2
38 + prefix? ( http://dev.gentoo.org/~grobian/distfiles/consoletype-1.0.sh )"
39 KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
40 fi
41
42 @@ -23,6 +24,9 @@
43
44 src_prepare() {
45 tc-export CC
46 +
47 + # in prefix, use shell script, for the C-code doesn't compile
48 + use prefix && cp "${DISTDIR}"/consoletype-1.0.sh consoletype
49 }
50
51 src_install() {
52
53
54
55 1.27 sys-apps/gentoo-functions/ChangeLog
56
57 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/ChangeLog?rev=1.27&view=markup
58 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/ChangeLog?rev=1.27&content-type=text/plain
59 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-functions/ChangeLog?r1=1.26&r2=1.27
60
61 Index: ChangeLog
62 ===================================================================
63 RCS file: /var/cvsroot/gentoo-x86/sys-apps/gentoo-functions/ChangeLog,v
64 retrieving revision 1.26
65 retrieving revision 1.27
66 diff -u -r1.26 -r1.27
67 --- ChangeLog 5 Jan 2015 09:49:11 -0000 1.26
68 +++ ChangeLog 28 Feb 2015 13:25:17 -0000 1.27
69 @@ -1,6 +1,9 @@
70 # ChangeLog for sys-apps/gentoo-functions
71 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
72 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gentoo-functions/ChangeLog,v 1.26 2015/01/05 09:49:11 heroxbd Exp $
73 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gentoo-functions/ChangeLog,v 1.27 2015/02/28 13:25:17 grobian Exp $
74 +
75 + 28 Feb 2015; Fabian Groffen <grobian@g.o> gentoo-functions-0.8.ebuild:
76 + Fix compilation/installation on at least Solaris
77
78 05 Jan 2015; Benda Xu <heroxbd@g.o> gentoo-functions-0.8.ebuild:
79 Prefix support, bug 533980.