Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/jfsutils: jfsutils-1.1.14.ebuild ChangeLog
Date: Sun, 02 Aug 2009 21:43:32
Message-Id: E1MXiq2-0000c1-W6@stork.gentoo.org
1 darkside 09/08/02 21:43:30
2
3 Modified: ChangeLog
4 Added: jfsutils-1.1.14.ebuild
5 Log:
6 (non maintainer commit) Version bump for bug 267509, tested by Lars Wendler (Polynomial-C), approved to commit by Daniel Drake (dsd). bug 267509
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.52 sys-fs/jfsutils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/jfsutils/ChangeLog?rev=1.52&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/jfsutils/ChangeLog?rev=1.52&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/jfsutils/ChangeLog?r1=1.51&r2=1.52
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/jfsutils/ChangeLog,v
19 retrieving revision 1.51
20 retrieving revision 1.52
21 diff -u -r1.51 -r1.52
22 --- ChangeLog 6 Feb 2009 05:38:04 -0000 1.51
23 +++ ChangeLog 2 Aug 2009 21:43:30 -0000 1.52
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-fs/jfsutils
26 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/jfsutils/ChangeLog,v 1.51 2009/02/06 05:38:04 jer Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/jfsutils/ChangeLog,v 1.52 2009/08/02 21:43:30 darkside Exp $
30 +
31 +*jfsutils-1.1.14 (02 Aug 2009)
32 +
33 + 02 Aug 2009; Jeremy Olexa <darkside@g.o> +jfsutils-1.1.14.ebuild:
34 + (non maintainer commit) Version bump for bug 267509, tested by Lars
35 + Wendler (Polynomial-C), approved to commit by Daniel Drake (dsd). bug
36 + 267509
37
38 06 Feb 2009; Jeroen Roovers <jer@g.o> jfsutils-1.1.13.ebuild:
39 Stable for HPPA (bug #250281).
40
41
42
43 1.1 sys-fs/jfsutils/jfsutils-1.1.14.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/jfsutils/jfsutils-1.1.14.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/jfsutils/jfsutils-1.1.14.ebuild?rev=1.1&content-type=text/plain
47
48 Index: jfsutils-1.1.14.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/sys-fs/jfsutils/jfsutils-1.1.14.ebuild,v 1.1 2009/08/02 21:43:30 darkside Exp $
53
54 inherit eutils flag-o-matic
55
56 DESCRIPTION="IBM's Journaling Filesystem (JFS) Utilities"
57 HOMEPAGE="http://jfs.sourceforge.net/"
58 SRC_URI="http://jfs.sourceforge.net/project/pub/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
63 IUSE="static"
64
65 DEPEND="virtual/libc"
66
67 src_compile() {
68 # It doesn't compile on alpha without this LDFLAGS
69 use alpha && append-ldflags "-Wl,--no-relax"
70
71 use static && append-ldflags -static
72 econf --sbindir=/sbin || die "econf failed"
73 emake || die "emake failed"
74 }
75
76 src_install () {
77 make DESTDIR="${D}" install || die
78
79 rm -f "${D}"/sbin/mkfs.jfs fsck.jfs
80 dosym /sbin/jfs_mkfs /sbin/mkfs.jfs
81 dosym /sbin/jfs_fsck /sbin/fsck.jfs
82
83 dodoc AUTHORS ChangeLog NEWS README
84 }