Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/zpaq: metadata.xml ChangeLog zpaq-2.04.ebuild
Date: Tue, 04 Jan 2011 23:20:01
Message-Id: 20110104231948.B2DC12005C@flycatcher.gentoo.org
1 mgorny 11/01/04 23:19:48
2
3 Added: metadata.xml ChangeLog zpaq-2.04.ebuild
4 Log:
5 Importing zpaq archiver from Sunrise as per bug #278021. The ebuild was updated to install latest libzpaq & zpaq. It also patches in an autotools-based build system to avoid build difficulties.
6
7 (Portage version: 2.2.0_alpha12_p8/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 app-arch/zpaq/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/zpaq/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/zpaq/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>no-herd</herd>
21 <maintainer>
22 <email>mgorny@g.o</email>
23 <name>Michał Górny</name>
24 </maintainer>
25 </pkgmetadata>
26
27
28
29 1.1 app-arch/zpaq/ChangeLog
30
31 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/zpaq/ChangeLog?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/zpaq/ChangeLog?rev=1.1&content-type=text/plain
33
34 Index: ChangeLog
35 ===================================================================
36 # ChangeLog for app-arch/zpaq
37 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
38 # $Header: /var/cvsroot/gentoo-x86/app-arch/zpaq/ChangeLog,v 1.1 2011/01/04 23:19:48 mgorny Exp $
39
40 *zpaq-2.04 (04 Jan 2011)
41
42 04 Jan 2011; Michał Górny <mgorny@g.o>
43 +files/0001-Add-autotools-files.patch, +zpaq-2.04.ebuild, +metadata.xml:
44 Importing zpaq archiver from Sunrise as per bug #278021. The ebuild was
45 updated to install latest libzpaq & zpaq. It also patches in an
46 autotools-based build system to avoid build difficulties.
47
48
49
50
51 1.1 app-arch/zpaq/zpaq-2.04.ebuild
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/zpaq/zpaq-2.04.ebuild?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/zpaq/zpaq-2.04.ebuild?rev=1.1&content-type=text/plain
55
56 Index: zpaq-2.04.ebuild
57 ===================================================================
58 # Copyright 1999-2011 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 # $Header: /var/cvsroot/gentoo-x86/app-arch/zpaq/zpaq-2.04.ebuild,v 1.1 2011/01/04 23:19:48 mgorny Exp $
61
62 EAPI=3
63
64 inherit autotools autotools-utils
65
66 LIB_PV=202
67 PROG_PV=${PV/./}
68
69 DESCRIPTION="A unified compressor for PAQ algorithms"
70 HOMEPAGE="http://mattmahoney.net/dc/zpaq.html"
71 SRC_URI="http://mattmahoney.net/dc/${PN}.${PROG_PV}.zip
72 http://mattmahoney.net/dc/lib${PN}.${LIB_PV}.zip"
73
74 LICENSE="GPL-3 ISOC-rfc"
75 SLOT="0"
76 KEYWORDS="~amd64 ~x86"
77 IUSE=""
78
79 DEPEND="app-arch/unzip"
80 RDEPEND=""
81
82 S=${WORKDIR}
83
84 DOCS=( libzpaq.txt )
85
86 src_prepare() {
87 EPATCH_OPTS+=-p1 epatch "${FILESDIR}"/0001-Add-autotools-files.patch
88 autotools-utils_src_prepare
89 eautoreconf
90 }
91
92 pkg_postinst() {
93 elog "You may also want to install app-arch/zpaq-extras package which provides"
94 elog "few additional configs and preprocessors for use with zpaq."
95 }