Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/cdcat: cdcat-0.3.ebuild
Date: Fri, 01 Jan 2010 18:04:56
Message-Id: E1NQlrq-0001bu-3J@stork.gentoo.org
1 ssuominen 10/01/01 18:04:54
2
3 Modified: cdcat-0.3.ebuild
4 Log:
5 fix quoting
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.14 app-misc/cdcat/cdcat-0.3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/cdcat/cdcat-0.3.ebuild?rev=1.14&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/cdcat/cdcat-0.3.ebuild?rev=1.14&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/cdcat/cdcat-0.3.ebuild?r1=1.13&r2=1.14
14
15 Index: cdcat-0.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-misc/cdcat/cdcat-0.3.ebuild,v
18 retrieving revision 1.13
19 retrieving revision 1.14
20 diff -u -r1.13 -r1.14
21 --- cdcat-0.3.ebuild 22 Sep 2006 13:30:21 -0000 1.13
22 +++ cdcat-0.3.ebuild 1 Jan 2010 18:04:53 -0000 1.14
23 @@ -1,16 +1,16 @@
24 -# Copyright 1999-2006 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-misc/cdcat/cdcat-0.3.ebuild,v 1.13 2006/09/22 13:30:21 centic Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-misc/cdcat/cdcat-0.3.ebuild,v 1.14 2010/01/01 18:04:53 ssuominen Exp $
29
30 DESCRIPTION="simple yet effective CD indexing program"
31 # original src went away: SRC_URI="http://littledragon.home.ro/unix/${P}.tar.gz"
32 -SRC_URI="http://dev.gentoo.org/~centic/${PN}/${P}.tar.gz"
33 +SRC_URI="mirror://gentoo/${P}.tar.gz"
34 HOMEPAGE="http://dev.gentoo.org/~centic/cdcat/"
35
36 -SLOT="0"
37 LICENSE="GPL-2"
38 +SLOT="0"
39 +KEYWORDS="amd64 ppc x86"
40 IUSE=""
41 -KEYWORDS="x86 ppc amd64"
42
43 DEPEND=">=sys-apps/sed-4.0.5
44 >=sys-apps/grep-2.4.2
45 @@ -20,7 +20,7 @@
46
47 src_unpack() {
48 unpack ${A}
49 - cd ${S}
50 + cd "${S}"
51
52 # workaround install.sh ignoring --man_prefix
53 sed -i 's:^MAN_PREFIX:#:' install.sh
54 @@ -34,17 +34,17 @@
55
56 src_install() {
57 # workaround install.sh ignoring --man_prefix
58 - export MAN_PREFIX=${D}/usr/share/man
59 + export MAN_PREFIX="${D}/usr/share/man"
60 dodir /usr/share/man/man1
61
62 # create index files path
63 dodir /var/lib/cdcat
64 - chgrp cdrom ${D}/var/lib/cdcat
65 - chmod g+ws,o+w ${D}/var/lib/cdcat
66 + chgrp cdrom "${D}"/var/lib/cdcat
67 + chmod g+ws,o+w "${D}"/var/lib/cdcat
68
69 # now use the included install.sh
70 - ./install.sh --prefix=${D}/usr \
71 - --man_prefix=${D}/usr/share/man || die "Install script failed."
72 + ./install.sh --prefix="${D}/usr" \
73 + --man_prefix="${D}/usr/share/man" || die "Install script failed."
74
75 insinto /etc
76 doins doc/cdcat.conf || die