Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/eb: ChangeLog eb-4.4.1.ebuild eb-4.2.ebuild eb-3.3.4.ebuild eb-4.2.1.ebuild
Date: Tue, 31 Mar 2009 15:48:11
Message-Id: E1LogC6-00053m-Fg@stork.gentoo.org
1 matsuu 09/03/31 15:48:06
2
3 Modified: ChangeLog
4 Added: eb-4.4.1.ebuild
5 Removed: eb-4.2.ebuild eb-3.3.4.ebuild eb-4.2.1.ebuild
6 Log:
7 Version bumped. Removed old versions.
8 (Portage version: 2.1.6.11/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.38 dev-libs/eb/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/eb/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/eb/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/eb/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/eb/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 21 Jun 2008 13:57:30 -0000 1.37
24 +++ ChangeLog 31 Mar 2009 15:48:06 -0000 1.38
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/eb
27 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/eb/ChangeLog,v 1.37 2008/06/21 13:57:30 dirtyepic Exp $
29 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/eb/ChangeLog,v 1.38 2009/03/31 15:48:06 matsuu Exp $
31 +
32 +*eb-4.4.1 (31 Mar 2009)
33 +
34 + 31 Mar 2009; MATSUU Takuto <matsuu@g.o> -eb-3.3.4.ebuild,
35 + -eb-4.2.ebuild, -eb-4.2.1.ebuild, +eb-4.4.1.ebuild:
36 + Version bumped. Fixed dependency. Removed old versions.
37
38 21 Jun 2008; Ryan Hill <dirtyepic@g.o>
39 +files/eb-4.2.2-as-needed.patch, eb-4.2.2.ebuild:
40
41
42
43 1.1 dev-libs/eb/eb-4.4.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/eb/eb-4.4.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/eb/eb-4.4.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: eb-4.4.1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/eb/eb-4.4.1.ebuild,v 1.1 2009/03/31 15:48:06 matsuu Exp $
53
54 IUSE="nls ipv6 threads"
55
56 DESCRIPTION="EB is a C library and utilities for accessing CD-ROM books"
57 HOMEPAGE="http://www.sra.co.jp/people/m-kasahr/eb/"
58 SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.lzma"
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63
64 RDEPEND="sys-libs/zlib
65 nls? ( virtual/libintl )"
66 DEPEND="${RDEPEND}
67 nls? ( sys-devel/gettext )"
68
69 src_compile () {
70 econf \
71 --with-pkgdocdir=/usr/share/doc/${PF}/html \
72 $(use_enable nls) \
73 $(use_enable threads pthread) \
74 $(use_enable ipv6) || die "Failed configure."
75 emake || die "Failed make."
76 }
77
78 src_install () {
79 emake DESTDIR="${D}" install || die "Failed install."
80
81 dodoc AUTHORS ChangeLog* NEWS README
82 }
83
84 pkg_postinst() {
85 elog
86 elog "If you are upgrading from <app-dicts/eb-4.4.1,"
87 elog "you may need to rebuild applications depending on eb."
88 elog
89 }