diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-06-17 15:14:57 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-06-17 15:14:57 +0000 |
commit | 810380f28416676f2b7339fbc29028b637f19480 (patch) | |
tree | 25a5ee6fe12afb1c739af27121b34238895869a2 | |
parent | Version bump, bug #513538. (diff) | |
download | gentoo-2-810380f28416676f2b7339fbc29028b637f19480.tar.gz gentoo-2-810380f28416676f2b7339fbc29028b637f19480.tar.bz2 gentoo-2-810380f28416676f2b7339fbc29028b637f19480.zip |
Version bump, bug #513538.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
-rw-r--r-- | app-arch/zpaq/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/zpaq/zpaq-6.53.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/app-arch/zpaq/ChangeLog b/app-arch/zpaq/ChangeLog index d056c9063d92..0fb8d2954b3c 100644 --- a/app-arch/zpaq/ChangeLog +++ b/app-arch/zpaq/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/zpaq # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/zpaq/ChangeLog,v 1.15 2014/02/19 17:32:37 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/zpaq/ChangeLog,v 1.16 2014/06/17 15:14:57 mgorny Exp $ + +*zpaq-6.53 (17 Jun 2014) + + 17 Jun 2014; Michał Górny <mgorny@gentoo.org> +zpaq-6.53.ebuild: + Version bump, bug #513538. *zpaq-6.49 (19 Feb 2014) diff --git a/app-arch/zpaq/zpaq-6.53.ebuild b/app-arch/zpaq/zpaq-6.53.ebuild new file mode 100644 index 000000000000..919bc5b20818 --- /dev/null +++ b/app-arch/zpaq/zpaq-6.53.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/zpaq/zpaq-6.53.ebuild,v 1.1 2014/06/17 15:14:57 mgorny Exp $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=1 +inherit autotools-utils eutils + +MY_P=${PN}${PV/./} +DESCRIPTION="Journaling incremental deduplicating archiving compressor" +HOMEPAGE="http://mattmahoney.net/dc/zpaq.html" +SRC_URI="http://mattmahoney.net/dc/${MY_P}.zip" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +RDEPEND="~app-arch/libzpaq-${PV} + dev-libs/libdivsufsort" +DEPEND="${RDEPEND} + app-arch/unzip" + +S=${WORKDIR} + +src_prepare() { + EPATCH_OPTS+=-p1 epatch "${FILESDIR}"/${PN}-4-autotools.patch + autotools-utils_src_prepare +} + +src_configure() { + local myeconfargs=( + $(use_enable debug) + ) + + append-cppflags -Dunix + autotools-utils_src_configure +} + +pkg_postinst() { + elog "You may also want to install app-arch/zpaq-extras package which provides" + elog "few additional configs and preprocessors for use with zpaq." +} |