Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: ChangeLog mtd-utils-20090630.ebuild
Date: Fri, 03 Jul 2009 05:54:28
Message-Id: E1MMbj8-00015l-Mj@stork.gentoo.org
1 vapier 09/07/03 05:54:26
2
3 Modified: ChangeLog
4 Added: mtd-utils-20090630.ebuild
5 Log:
6 Update snapshot.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.22 sys-fs/mtd-utils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/mtd-utils/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 10 Mar 2009 15:09:50 -0000 1.21
23 +++ ChangeLog 3 Jul 2009 05:54:26 -0000 1.22
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-fs/mtd-utils
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.21 2009/03/10 15:09:50 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.22 2009/07/03 05:54:26 vapier Exp $
29 +
30 +*mtd-utils-20090630 (03 Jul 2009)
31 +
32 + 03 Jul 2009; Mike Frysinger <vapier@g.o>
33 + +mtd-utils-20090630.ebuild:
34 + Update snapshot.
35
36 *mtd-utils-99999999 (10 Mar 2009)
37
38
39
40
41 1.1 sys-fs/mtd-utils/mtd-utils-20090630.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/mtd-utils/mtd-utils-20090630.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/mtd-utils/mtd-utils-20090630.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mtd-utils-20090630.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/sys-fs/mtd-utils/mtd-utils-20090630.ebuild,v 1.1 2009/07/03 05:54:26 vapier Exp $
51
52 inherit toolchain-funcs eutils
53
54 # Git ID for the snapshot
55 MY_PV="${PV}-22494a8d105936785af53235b088fa38112128fc"
56 DESCRIPTION="MTD userspace tools, based on GIT snapshot from upstream"
57 HOMEPAGE="http://git.infradead.org/?p=mtd-utils.git;a=summary"
58 SRC_URI="mirror://gentoo/${PN}-snapshot-${MY_PV}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
63 IUSE="xattr"
64
65 RDEPEND="!sys-fs/mtd
66 dev-libs/lzo
67 sys-libs/zlib"
68 # ACL is only required for the <sys/acl.h> header file to build mkfs.jffs2
69 # And ACL brings in Attr as well.
70 DEPEND="${RDEPEND}
71 xattr? ( sys-apps/acl )"
72
73 S=${WORKDIR}/${PN}
74
75 src_unpack() {
76 unpack ${A}
77 cd "${S}"
78 sed -i 's:-Werror::' $(find . -name Makefile)
79 }
80
81 makeopts() {
82 use xattr || echo WITHOUT_XATTR=1
83 }
84
85 src_compile() {
86 tc-export CC
87 emake $(makeopts) || die
88 }
89
90 src_install() {
91 emake $(makeopts) install DESTDIR="${D}" || die
92 dodoc *.txt
93 newdoc mkfs.ubifs/README README.mkfs.ubifs
94 # TODO: check ubi-utils for docs+scripts
95 }