Gentoo Archives: gentoo-commits

From: "Agostino Sarubbo (ago)" <ago@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/psiconv: psiconv-0.8.3-r1.ebuild ChangeLog
Date: Sun, 28 Oct 2012 19:20:17
Message-Id: 20121028192008.22FE221600@flycatcher.gentoo.org
1 ago 12/10/28 19:20:08
2
3 Modified: ChangeLog
4 Added: psiconv-0.8.3-r1.ebuild
5 Log:
6 EAPI4, drop unused doc IUSE, add ~amd64, add static-libs IUSE, respect AR
7
8 (Portage version: 2.1.11.9/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.10 app-text/psiconv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/psiconv/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/psiconv/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/psiconv/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/psiconv/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 21 Apr 2008 17:05:02 -0000 1.9
24 +++ ChangeLog 28 Oct 2012 19:20:07 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/psiconv
27 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/psiconv/ChangeLog,v 1.9 2008/04/21 17:05:02 phreak Exp $
29 +# Copyright 2000-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/psiconv/ChangeLog,v 1.10 2012/10/28 19:20:07 ago Exp $
31 +
32 +*psiconv-0.8.3-r1 (28 Oct 2012)
33 +
34 + 28 Oct 2012; Agostino Sarubbo <ago@g.o> +psiconv-0.8.3-r1.ebuild:
35 + EAPI4, drop unused doc IUSE, add ~amd64, add static-libs IUSE, respect AR
36
37 21 Apr 2008; Christian Heim <phreak@g.o> metadata.xml:
38 Fix up metadata.xml. If there's no maintainer for the package, the metadata
39 @@ -24,4 +29,3 @@
40 Psiconv is a standalone tool for the reading and conversion of Psion
41 documents. It also provides a lib used by AbiWord to read same with a
42 plugin. Ebuild submitted by: MG <markgilbert@××××××.com> in bug #28717
43 -
44
45
46
47 1.1 app-text/psiconv/psiconv-0.8.3-r1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/psiconv/psiconv-0.8.3-r1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/psiconv/psiconv-0.8.3-r1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: psiconv-0.8.3-r1.ebuild
53 ===================================================================
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/app-text/psiconv/psiconv-0.8.3-r1.ebuild,v 1.1 2012/10/28 19:20:07 ago Exp $
57
58 EAPI=4
59
60 inherit toolchain-funcs
61
62 DESCRIPTION="An interpreter for Psion 5(MX) file formats"
63 HOMEPAGE="http://huizen.dds.nl/~frodol/psiconv"
64 SRC_URI="http://huizen.dds.nl/~frodol/${PN}/${P}.tar.gz"
65
66 SLOT="0"
67 LICENSE="GPL-2"
68 IUSE="static-libs"
69 KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
70
71 DEPEND="virtual/libc"
72 RDEPEND=""
73
74 src_prepare() {
75 tc-export AR
76 }
77
78 src_configure() {
79 econf $(use_enable static-libs static)
80 }
81
82 src_install() {
83 default
84 use static-libs || rm -fr "${D}"usr/lib*/lib${PN}.la
85 }