Gentoo Archives: gentoo-commits

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