Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/lzma-utils: ChangeLog lzma-utils-4.32.6.ebuild
Date: Sat, 31 May 2008 07:56:49
Message-Id: E1K2LxD-0007Ko-UC@stork.gentoo.org
1 vapier 08/05/31 07:56:43
2
3 Modified: ChangeLog
4 Added: lzma-utils-4.32.6.ebuild
5 Log:
6 Version bump #223983.
7 (Portage version: 2.2_pre5.spank.spunk)
8
9 Revision Changes Path
10 1.34 app-arch/lzma-utils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma-utils/ChangeLog?rev=1.34&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma-utils/ChangeLog?rev=1.34&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma-utils/ChangeLog?r1=1.33&r2=1.34
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-arch/lzma-utils/ChangeLog,v
19 retrieving revision 1.33
20 retrieving revision 1.34
21 diff -u -r1.33 -r1.34
22 --- ChangeLog 10 May 2008 10:38:40 -0000 1.33
23 +++ ChangeLog 31 May 2008 07:56:43 -0000 1.34
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-arch/lzma-utils
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lzma-utils/ChangeLog,v 1.33 2008/05/10 10:38:40 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-arch/lzma-utils/ChangeLog,v 1.34 2008/05/31 07:56:43 vapier Exp $
29 +
30 +*lzma-utils-4.32.6 (31 May 2008)
31 +
32 + 31 May 2008; Mike Frysinger <vapier@g.o> +lzma-utils-4.32.6.ebuild:
33 + Version bump #223983.
34
35 10 May 2008; Mike Frysinger <vapier@g.o> files/lzma-nocxx.sh:
36 Handle just -d in wrapper script as this is how tar calls it #220899 by
37
38
39
40 1.1 app-arch/lzma-utils/lzma-utils-4.32.6.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma-utils/lzma-utils-4.32.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma-utils/lzma-utils-4.32.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lzma-utils-4.32.6.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-arch/lzma-utils/lzma-utils-4.32.6.ebuild,v 1.1 2008/05/31 07:56:43 vapier Exp $
50
51 # Remember: we cannot leverage autotools in this ebuild in order
52 # to avoid circular deps with autotools
53
54 inherit eutils
55
56 MY_P="lzma-${PV/_}"
57 DESCRIPTION="LZMA interface made easy"
58 HOMEPAGE="http://tukaani.org/lzma/"
59 SRC_URI="http://tukaani.org/lzma/${MY_P}.tar.gz
60 nocxx? ( mirror://gentoo/${P}-nocxx.patch.bz2 )"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
65 IUSE="nocxx"
66
67 RDEPEND="!app-arch/lzma"
68
69 S=${WORKDIR}/${MY_P}
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 if use nocxx ; then
75 epatch "${WORKDIR}"/${P}-nocxx.patch
76 find -type f -print0 | xargs -0 touch -r configure
77 epunt_cxx
78 fi
79 }
80
81 src_install() {
82 emake install DESTDIR="${D}" || die
83 dodoc AUTHORS ChangeLog NEWS README THANKS
84 use nocxx && newbin "${FILESDIR}"/lzma-nocxx.sh lzma
85 }
86
87 pkg_postinst() {
88 if use nocxx ; then
89 ewarn "You have a neutered lzma package install due to USE=nocxx."
90 ewarn "You will only be able to unpack lzma archives."
91 fi
92 }
93
94
95
96 --
97 gentoo-commits@l.g.o mailing list