Gentoo Archives: gentoo-commits

From: "Andrew Gaffney (agaffney)" <agaffney@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/catalyst: ChangeLog catalyst-2.0.6.907.ebuild
Date: Tue, 29 Dec 2009 17:55:31
Message-Id: E1NPgI5-00076D-P7@stork.gentoo.org
1 agaffney 09/12/29 17:55:29
2
3 Modified: ChangeLog
4 Added: catalyst-2.0.6.907.ebuild
5 Log:
6 Bump catalyst to 2.0.6.907
7 (Portage version: 2.1.7.16/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.214 dev-util/catalyst/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/catalyst/ChangeLog?rev=1.214&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/catalyst/ChangeLog?rev=1.214&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/catalyst/ChangeLog?r1=1.213&r2=1.214
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/catalyst/ChangeLog,v
19 retrieving revision 1.213
20 retrieving revision 1.214
21 diff -u -r1.213 -r1.214
22 --- ChangeLog 28 Dec 2009 13:30:51 -0000 1.213
23 +++ ChangeLog 29 Dec 2009 17:55:29 -0000 1.214
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/catalyst
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/ChangeLog,v 1.213 2009/12/28 13:30:51 agaffney Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/ChangeLog,v 1.214 2009/12/29 17:55:29 agaffney Exp $
29 +
30 +*catalyst-2.0.6.907 (29 Dec 2009)
31 +
32 + 29 Dec 2009; Andrew Gaffney <agaffney@g.o>
33 + +catalyst-2.0.6.907.ebuild:
34 + Bump catalyst to 2.0.6.907
35
36 *catalyst-2.0.6.906 (28 Dec 2009)
37
38
39
40
41 1.1 dev-util/catalyst/catalyst-2.0.6.907.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/catalyst/catalyst-2.0.6.907.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/catalyst/catalyst-2.0.6.907.ebuild?rev=1.1&content-type=text/plain
45
46 Index: catalyst-2.0.6.907.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/catalyst-2.0.6.907.ebuild,v 1.1 2009/12/29 17:55:29 agaffney Exp $
51
52 inherit eutils multilib
53 SRC_URI="mirror://gentoo/${P}.tar.bz2
54 http://wolf31o2.org/sources/${PN}/${P}.tar.bz2"
55
56 DESCRIPTION="release metatool used for creating releases based on Gentoo Linux"
57 HOMEPAGE="http://wolf31o2.org/projects/catalyst"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
62 #KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
63 #KEYWORDS=""
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_unpack() {
91 unpack ${A}
92 cd "${S}"
93 }
94
95 src_install() {
96 insinto /usr/$(get_libdir)/${PN}
97 exeinto /usr/$(get_libdir)/${PN}
98 doexe catalyst || die "copying catalyst"
99 doins -r arch modules livecd || die "copying files"
100 for x in targets/*; do
101 exeinto /usr/$(get_libdir)/${PN}/$x
102 doexe $x/* || die "copying ${x}"
103 done
104 make_wrapper catalyst /usr/$(get_libdir)/${PN}/catalyst
105 insinto /etc/catalyst
106 doins files/catalyst.conf files/catalystrc || die "copying configuration"
107 insinto /usr/share/doc/${PF}/examples
108 doins examples/* || die
109 dodoc README ChangeLog AUTHORS
110 doman files/catalyst.1
111 # Here is where we actually enable ccache
112 use ccache && \
113 dosed 's:options="autoresume kern:options="autoresume ccache kern:' \
114 /etc/catalyst/catalyst.conf
115 dosed "s:/usr/lib/catalyst:/usr/$(get_libdir)/catalyst:" \
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 }