Gentoo Archives: gentoo-commits

From: "Daniel Drake (dsd)" <dsd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/jfsutils: ChangeLog jfsutils-1.1.13.ebuild
Date: Fri, 31 Oct 2008 20:57:57
Message-Id: E1Kw148-0007oT-2a@stork.gentoo.org
1 dsd 08/10/31 20:57:56
2
3 Modified: ChangeLog
4 Added: jfsutils-1.1.13.ebuild
5 Log:
6 Version bump, thanks to Lars in bug #237248
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo-r2 i686)
8
9 Revision Changes Path
10 1.43 sys-fs/jfsutils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/jfsutils/ChangeLog?rev=1.43&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/jfsutils/ChangeLog?rev=1.43&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/jfsutils/ChangeLog?r1=1.42&r2=1.43
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/jfsutils/ChangeLog,v
19 retrieving revision 1.42
20 retrieving revision 1.43
21 diff -u -r1.42 -r1.43
22 --- ChangeLog 22 Nov 2007 23:38:56 -0000 1.42
23 +++ ChangeLog 31 Oct 2008 20:57:56 -0000 1.43
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-fs/jfsutils
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/jfsutils/ChangeLog,v 1.42 2007/11/22 23:38:56 stefaan Exp $
28 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/jfsutils/ChangeLog,v 1.43 2008/10/31 20:57:56 dsd Exp $
30 +
31 +*jfsutils-1.1.13 (31 Oct 2008)
32 +
33 + 31 Oct 2008; Daniel Drake <dsd@g.o> +jfsutils-1.1.13.ebuild:
34 + Version bump, thanks to Lars in bug #237248
35
36 22 Nov 2007; Stefaan De Roeck <stefaan@g.o> jfsutils-1.1.12.ebuild:
37 Fix compilation on alpha (bug #193617)
38
39
40
41 1.1 sys-fs/jfsutils/jfsutils-1.1.13.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/jfsutils/jfsutils-1.1.13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/jfsutils/jfsutils-1.1.13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: jfsutils-1.1.13.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-fs/jfsutils/jfsutils-1.1.13.ebuild,v 1.1 2008/10/31 20:57:56 dsd Exp $
51
52 inherit eutils flag-o-matic
53
54 DESCRIPTION="IBM's Journaling Filesystem (JFS) Utilities"
55 HOMEPAGE="http://jfs.sourceforge.net/"
56 SRC_URI="http://jfs.sourceforge.net/project/pub/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
61 IUSE="static"
62
63 DEPEND="virtual/libc"
64
65 src_compile() {
66 # It doesn't compile on alpha without this LDFLAGS
67 use alpha && append-ldflags "-Wl,--no-relax"
68
69 use static && append-ldflags -static
70 econf --sbindir=/sbin || die "econf failed"
71 emake || die "emake failed"
72 }
73
74 src_install () {
75 make DESTDIR="${D}" install || die
76
77 rm -f "${D}"/sbin/mkfs.jfs fsck.jfs
78 dosym /sbin/jfs_mkfs /sbin/mkfs.jfs
79 dosym /sbin/jfs_fsck /sbin/fsck.jfs
80
81 dodoc AUTHORS COPYING ChangeLog NEWS README
82 }