Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/xdelta: ChangeLog xdelta-3.0t.ebuild
Date: Tue, 15 Jan 2008 21:00:50
Message-Id: E1JEsts-0003il-4k@stork.gentoo.org
1 drac 08/01/15 21:00:48
2
3 Modified: ChangeLog
4 Added: xdelta-3.0t.ebuild
5 Log:
6 Version bump wrt #169304, but use a new SLOT since it doesn't seem to provide libraries version 1 does. Thanks to Michael Schmid for reporting and ebuild.
7 (Portage version: 2.1.4)
8
9 Revision Changes Path
10 1.31 dev-util/xdelta/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/xdelta/ChangeLog?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/xdelta/ChangeLog?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/xdelta/ChangeLog?r1=1.30&r2=1.31
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/xdelta/ChangeLog,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- ChangeLog 15 Oct 2007 14:28:02 -0000 1.30
23 +++ ChangeLog 15 Jan 2008 21:00:47 -0000 1.31
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-util/xdelta
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/xdelta/ChangeLog,v 1.30 2007/10/15 14:28:02 corsair Exp $
28 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/xdelta/ChangeLog,v 1.31 2008/01/15 21:00:47 drac Exp $
30 +
31 +*xdelta-3.0t (15 Jan 2008)
32 +
33 + 15 Jan 2008; Samuli Suominen <drac@g.o> +xdelta-3.0t.ebuild:
34 + Version bump wrt #169304, but use a new SLOT since it doesn't seem to
35 + provide libraries version 1 does. Thanks to Michael Schmid for reporting and
36 + ebuild.
37
38 15 Oct 2007; Markus Rothe <corsair@g.o> xdelta-1.1.3-r2.ebuild:
39 Stable on ppc64
40
41
42
43 1.1 dev-util/xdelta/xdelta-3.0t.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/xdelta/xdelta-3.0t.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/xdelta/xdelta-3.0t.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xdelta-3.0t.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-util/xdelta/xdelta-3.0t.ebuild,v 1.1 2008/01/15 21:00:47 drac Exp $
53
54 inherit distutils
55
56 MY_P=${PN}${PV}
57
58 DESCRIPTION="a binary diff and differential compression tools. VCDIFF (RFC 3284) delta compression."
59 HOMEPAGE="http://xdelta.org"
60 SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="3"
64 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
65 IUSE=""
66
67 RDEPEND="dev-lang/python"
68 DEPEND="${RDEPEND}"
69
70 S=${WORKDIR}/${MY_P}
71
72 DOCS="draft-korn-vcdiff.txt"
73
74 pkg_setup() {
75 if use alpha || use amd64 || use ia64 || use ppc64 || use sparc; then
76 xdelta="xdelta3-64"
77 else
78 xdelta="xdelta3"
79 fi
80 }
81
82 src_compile() {
83 distutils_src_compile
84 emake ${xdelta} || die "emake ${xdelta} failed."
85 }
86
87 src_install() {
88 distutils_src_install
89 dobin ${xdelta} || die "dobin ${xdelta} failed."
90 [[ $xdelta = xdelta3-64 ]] && dosym ${xdelta} /usr/bin/xdelta3
91 }
92
93
94
95 --
96 gentoo-commits@l.g.o mailing list