Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/hyphen: metadata.xml ChangeLog hyphen-2.4.ebuild
Date: Tue, 05 Jan 2010 20:42:05
Message-Id: E1NSGE0-0005cs-IJ@stork.gentoo.org
1 ssuominen 10/01/05 20:41:56
2
3 Added: metadata.xml ChangeLog hyphen-2.4.ebuild
4 Log:
5 Initial commit. This is a runtime depend of app-office/scribus.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-libs/hyphen/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/hyphen/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/hyphen/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>no-herd</herd>
20 <maintainer>
21 <email>ssuominen@g.o</email>
22 <name>Samuli Suominen</name>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28 1.1 dev-libs/hyphen/ChangeLog
29
30 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/hyphen/ChangeLog?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/hyphen/ChangeLog?rev=1.1&content-type=text/plain
32
33 Index: ChangeLog
34 ===================================================================
35 # ChangeLog for dev-libs/hyphen
36 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
37 # $Header: /var/cvsroot/gentoo-x86/dev-libs/hyphen/ChangeLog,v 1.1 2010/01/05 20:41:55 ssuominen Exp $
38
39 *hyphen-2.4 (05 Jan 2010)
40
41 05 Jan 2010; Samuli Suominen <ssuominen@g.o> +hyphen-2.4.ebuild:
42 Initial commit.
43
44
45
46
47 1.1 dev-libs/hyphen/hyphen-2.4.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/hyphen/hyphen-2.4.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/hyphen/hyphen-2.4.ebuild?rev=1.1&content-type=text/plain
51
52 Index: hyphen-2.4.ebuild
53 ===================================================================
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-libs/hyphen/hyphen-2.4.ebuild,v 1.1 2010/01/05 20:41:55 ssuominen Exp $
57
58 EAPI=2
59
60 DESCRIPTION="hyphenation library to use converted TeX hyphenation patterns"
61 HOMEPAGE="http://sourceforge.net/projects/hunspell/"
62 SRC_URI="mirror://sourceforge/hunspell/${P}.tar.gz"
63
64 LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 src_configure() {
70 econf \
71 --disable-dependency-tracking \
72 --disable-static
73 }
74
75 src_install() {
76 emake DESTDIR="${D}" install || die
77 dodoc AUTHORS ChangeLog NEWS README* THANKS TODO
78 insinto /usr/share/doc/${PF}/pdf
79 doins doc/*.pdf
80 find "${D}"/usr -name '*.la' -delete
81 }