Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libowfat: ChangeLog libowfat-0.28.ebuild
Date: Sun, 01 Mar 2009 15:16:55
Message-Id: E1LdnPQ-0001Ap-Vl@stork.gentoo.org
1 patrick 09/03/01 15:16:52
2
3 Modified: ChangeLog
4 Added: libowfat-0.28.ebuild
5 Log:
6 Bump to 0.28, fixes #221803
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.22 dev-libs/libowfat/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libowfat/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libowfat/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libowfat/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libowfat/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 4 Feb 2007 19:01:54 -0000 1.21
23 +++ ChangeLog 1 Mar 2009 15:16:52 -0000 1.22
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/libowfat
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libowfat/ChangeLog,v 1.21 2007/02/04 19:01:54 beandog Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libowfat/ChangeLog,v 1.22 2009/03/01 15:16:52 patrick Exp $
30 +
31 +*libowfat-0.28 (01 Mar 2009)
32 +
33 + 01 Mar 2009; Patrick Lauer <patrick@g.o> +libowfat-0.28.ebuild:
34 + Bump to 0.28, fixes #221803
35
36 04 Feb 2007; Steve Dibb <beandog@g.o> libowfat-0.24.ebuild:
37 amd64 stable, bug 157477
38
39
40
41 1.1 dev-libs/libowfat/libowfat-0.28.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libowfat/libowfat-0.28.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libowfat/libowfat-0.28.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libowfat-0.28.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libowfat/libowfat-0.28.ebuild,v 1.1 2009/03/01 15:16:52 patrick Exp $
51
52 DESCRIPTION="reimplement libdjb - excellent libraries from Dan Bernstein."
53 SRC_URI="http://dl.fefe.de/${P}.tar.bz2"
54 HOMEPAGE="http://www.fefe.de/libowfat/"
55
56 SLOT="0"
57 LICENSE="GPL-2"
58 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
59 IUSE=""
60 DEPEND=">=dev-libs/dietlibc-0.23
61 >=sys-apps/sed-4"
62
63 RDEPEND=">=dev-libs/dietlibc-0.23"
64
65 src_unpack() {
66 unpack ${A} ; cd "${S}"
67 sed -i -e "s:^CFLAGS.*:CFLAGS=-I. ${CFLAGS}:" \
68 -e "s:^DIET.*:DIET=/usr/bin/diet -Os:" \
69 -e "s:^prefix.*:prefix=/usr:" \
70 -e "s:^INCLUDEDIR.*:INCLUDEDIR=\${prefix}/include/libowfat:" \
71 GNUmakefile
72 }
73
74 src_compile() {
75 emake || die
76 }
77
78 src_install () {
79 make \
80 LIBDIR=${D}/usr/lib \
81 MAN3DIR=${D}/usr/share/man/man3 \
82 INCLUDEDIR=${D}/usr/include/libowfat \
83 install || die "make install failed"
84
85 cd "${D}"/usr/share/man
86 mv man3/buffer.3 man3/owfat-buffer.3
87 }