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/cadubi: cadubi-1.3.ebuild
Date: Fri, 01 Jan 2010 18:02:39
Message-Id: E1NQlpc-0001KO-ML@stork.gentoo.org
1 ssuominen 10/01/01 18:02:36
2
3 Modified: cadubi-1.3.ebuild
4 Log:
5 Fix quoting, libdir, license install
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.9 app-misc/cadubi/cadubi-1.3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/cadubi/cadubi-1.3.ebuild?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/cadubi/cadubi-1.3.ebuild?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/cadubi/cadubi-1.3.ebuild?r1=1.8&r2=1.9
14
15 Index: cadubi-1.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-misc/cadubi/cadubi-1.3.ebuild,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- cadubi-1.3.ebuild 25 Apr 2009 10:55:19 -0000 1.8
22 +++ cadubi-1.3.ebuild 1 Jan 2010 18:02:36 -0000 1.9
23 @@ -1,28 +1,30 @@
24 -# Copyright 1999-2005 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/cadubi/cadubi-1.3.ebuild,v 1.8 2009/04/25 10:55:19 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-misc/cadubi/cadubi-1.3.ebuild,v 1.9 2010/01/01 18:02:36 ssuominen Exp $
29
30 -inherit eutils
31 +inherit eutils multilib
32
33 DESCRIPTION="CADUBI is an application that allows you to draw ASCII-Art images"
34 HOMEPAGE="http://langworth.com/CadubiProject"
35 SRC_URI="http://langworth.com/downloads/${P}.tar.gz"
36 +
37 LICENSE="Artistic"
38 SLOT="0"
39 KEYWORDS="~amd64 ppc ppc64 x86"
40 IUSE=""
41 +
42 DEPEND="dev-lang/perl
43 >=dev-perl/TermReadKey-2.21"
44
45 src_unpack() {
46 unpack ${A}
47 - cd ${S}
48 - epatch ${FILESDIR}/${P}-helpfile.patch
49 + cd "${S}"
50 + epatch "${FILESDIR}"/${P}-helpfile.patch
51 }
52
53 src_install() {
54 - dobin cadubi
55 - insinto /usr/lib/${PN}
56 + dobin cadubi || die
57 + insinto /usr/$(get_libdir)/${PN}
58 doins help.txt
59 - dodoc LICENSE README
60 + dodoc README
61 }