Gentoo Archives: gentoo-commits

From: "Chris Gianelloni (wolf31o2)" <wolf31o2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/catalyst: ChangeLog catalyst-2.0.5_pre6.ebuild
Date: Sun, 25 Nov 2007 05:49:31
Message-Id: E1IwAMx-00022m-30@stork.gentoo.org
1 wolf31o2 07/11/25 05:49:27
2
3 Modified: ChangeLog
4 Added: catalyst-2.0.5_pre6.ebuild
5 Log:
6 Version bump to 2.0.5_pre6 for testing. This version adds support for N32 on MIPS and also initial icecream cluster compiler support. Closing bug #197917 and bug #200095.
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.176 dev-util/catalyst/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/catalyst/ChangeLog?rev=1.176&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/catalyst/ChangeLog?rev=1.176&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/catalyst/ChangeLog?r1=1.175&r2=1.176
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/catalyst/ChangeLog,v
19 retrieving revision 1.175
20 retrieving revision 1.176
21 diff -u -r1.175 -r1.176
22 --- ChangeLog 13 Nov 2007 22:54:39 -0000 1.175
23 +++ ChangeLog 25 Nov 2007 05:49:26 -0000 1.176
24 @@ -1,6 +1,14 @@
25 # ChangeLog for dev-util/catalyst
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/ChangeLog,v 1.175 2007/11/13 22:54:39 wolf31o2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/ChangeLog,v 1.176 2007/11/25 05:49:26 wolf31o2 Exp $
29 +
30 +*catalyst-2.0.5_pre6 (25 Nov 2007)
31 +
32 + 25 Nov 2007; Chris Gianelloni <wolf31o2@g.o>
33 + +catalyst-2.0.5_pre6.ebuild:
34 + Version bump to 2.0.5_pre6 for testing. This version adds support for N32 on
35 + MIPS and also initial icecream cluster compiler support. Closing bug #197917
36 + and bug #200095.
37
38 *catalyst-2.0.5_pre5 (13 Nov 2007)
39
40
41
42
43 1.1 dev-util/catalyst/catalyst-2.0.5_pre6.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/catalyst/catalyst-2.0.5_pre6.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/catalyst/catalyst-2.0.5_pre6.ebuild?rev=1.1&content-type=text/plain
47
48 Index: catalyst-2.0.5_pre6.ebuild
49 ===================================================================
50 # Copyright 1999-2007 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/catalyst-2.0.5_pre6.ebuild,v 1.1 2007/11/25 05:49:26 wolf31o2 Exp $
53
54 inherit eutils
55
56 DESCRIPTION="Gentoo Linux official release metatool"
57 HOMEPAGE="http://www.gentoo.org/proj/en/releng/catalyst"
58 SRC_URI="mirror://gentoo/${P}.tar.bz2
59 http://dev.gentoo.org/~wolf31o2/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
64 RESTRICT=""
65 IUSE="ccache"
66
67 DEPEND=""
68 RDEPEND="dev-lang/python
69 app-crypt/shash
70 virtual/cdrtools
71 ccache? ( dev-util/ccache )
72 ia64? ( sys-fs/dosfstools )
73 kernel_linux? ( app-misc/zisofs-tools >=sys-fs/squashfs-tools-2.1 )"
74
75 pkg_setup() {
76 if use ccache ; then
77 einfo "Enabling ccache support for catalyst."
78 else
79 ewarn "By default, ccache support for catalyst is disabled."
80 ewarn "If this is not what you intended,"
81 ewarn "then you should add ccache to your USE."
82 fi
83 echo
84 einfo "The template spec files are now installed by default. You can find"
85 einfo "them under /usr/share/doc/${PF}/examples"
86 einfo "and they are considered to be the authorative source of information"
87 einfo "on catalyst."
88 }
89
90 src_install() {
91 insinto /usr/lib/${PN}/arch
92 doins arch/* || die "copying arch/*"
93 insinto /usr/lib/${PN}/modules
94 doins modules/* || die "copying modules/*"
95 insinto /usr/lib/${PN}/livecd/cdtar
96 doins livecd/cdtar/* || die "copying cdtar/*"
97 insinto /usr/lib/${PN}/livecd/files
98 doins livecd/files/* || die "copying files/*"
99 for x in targets/*; do
100 exeinto /usr/lib/${PN}/$x
101 doexe $x/* || die "copying ${x}"
102 done
103 exeinto /usr/lib/${PN}
104 doexe catalyst || die "copying catalyst"
105 dodir /usr/bin
106 dosym /usr/lib/${PN}/catalyst /usr/bin/catalyst
107 insinto /etc/catalyst
108 doins files/catalyst.conf files/catalystrc || die "copying configuration"
109 insinto /usr/share/doc/${PF}/examples
110 doins examples/* || die
111 dodoc README ChangeLog ChangeLog.old AUTHORS
112 doman files/catalyst.1
113 # Here is where we actually enable ccache
114 use ccache && \
115 dosed 's:options="autoresume kern:options="autoresume ccache kern:' \
116 /etc/catalyst/catalyst.conf
117 }
118
119 pkg_postinst() {
120 einfo "You can find more information about catalyst by checking out the"
121 einfo "catalyst project page at:"
122 einfo "http://www.gentoo.org/proj/en/releng/catalyst/index.xml"
123 echo
124 }
125
126
127
128 --
129 gentoo-commits@g.o mailing list