Gentoo Archives: gentoo-commits

From: "Brian Harring (ferringb)" <ferringb@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/diffball: ChangeLog diffball-1.0.1.ebuild
Date: Tue, 02 Aug 2011 05:31:25
Message-Id: 20110802053116.DFBFA2004C@flycatcher.gentoo.org
1 ferringb 11/08/02 05:31:16
2
3 Modified: ChangeLog
4 Added: diffball-1.0.1.ebuild
5 Log:
6 bump diffball to 1.0.1 w/ xz support
7
8 (Portage version: 2.1.10.6/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.37 dev-util/diffball/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/diffball/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/diffball/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/diffball/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/diffball/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 25 Jul 2011 09:47:55 -0000 1.36
24 +++ ChangeLog 2 Aug 2011 05:31:16 -0000 1.37
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/diffball
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/diffball/ChangeLog,v 1.36 2011/07/25 09:47:55 naota Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/diffball/ChangeLog,v 1.37 2011/08/02 05:31:16 ferringb Exp $
30 +
31 +*diffball-1.0.1 (02 Aug 2011)
32 +
33 + 02 Aug 2011; Brian Harring <ferringb@g.o> +diffball-1.0.1.ebuild:
34 + Add diffball 1.0.1 with xz support
35
36 25 Jul 2011; Naohiro Aota <naota@g.o> diffball-1.0.ebuild:
37 Add keyword ~x86-fbsd
38
39
40
41 1.1 dev-util/diffball/diffball-1.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/diffball/diffball-1.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/diffball/diffball-1.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: diffball-1.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/diffball/diffball-1.0.1.ebuild,v 1.1 2011/08/02 05:31:16 ferringb Exp $
51
52 DESCRIPTION="Delta compression suite for using/generating binary patches"
53 HOMEPAGE="http://diffball.googlecode.com/"
54 SRC_URI="http://diffball.googlecode.com/files/${PN}-${PV}.tar.bz2"
55
56 LICENSE="BSD"
57 SLOT="0"
58 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
59 IUSE="debug"
60
61 DEPEND=">=sys-libs/zlib-1.1.4
62 >=app-arch/bzip2-1.0.2
63 app-arch/xz-utils"
64 RDEPEND="${DEPEND}"
65
66 # Invalid RESTRICT for source package. Investigate.
67 RESTRICT="strip"
68
69 src_compile() {
70 econf $(use_enable debug asserts)
71 emake || die "emake failed"
72 }
73
74 src_install() {
75 emake DESTDIR="${D}" install || die
76 dodoc AUTHORS ChangeLog README TODO
77 }