diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-01-27 15:29:21 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-01-27 15:29:21 +0000 |
commit | c5375791c1997a6efa685abdf65e23676ad54301 (patch) | |
tree | 11960404deb983940835acb6fba0a47963be755e | |
parent | Version bump. (diff) | |
download | gentoo-2-c5375791c1997a6efa685abdf65e23676ad54301.tar.gz gentoo-2-c5375791c1997a6efa685abdf65e23676ad54301.tar.bz2 gentoo-2-c5375791c1997a6efa685abdf65e23676ad54301.zip |
Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
-rw-r--r-- | app-arch/plzip/ChangeLog | 9 | ||||
-rw-r--r-- | app-arch/plzip/plzip-1.3.ebuild | 28 |
2 files changed, 35 insertions, 2 deletions
diff --git a/app-arch/plzip/ChangeLog b/app-arch/plzip/ChangeLog index 777ff63b5918..8dde9b305847 100644 --- a/app-arch/plzip/ChangeLog +++ b/app-arch/plzip/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/plzip -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/plzip/ChangeLog,v 1.1 2014/02/27 10:55:49 mgorny Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/plzip/ChangeLog,v 1.2 2015/01/27 15:29:21 mgorny Exp $ + +*plzip-1.3 (27 Jan 2015) + + 27 Jan 2015; Michał Górny <mgorny@gentoo.org> +plzip-1.3.ebuild: + Version bump. *plzip-1.1 (27 Feb 2014) diff --git a/app-arch/plzip/plzip-1.3.ebuild b/app-arch/plzip/plzip-1.3.ebuild new file mode 100644 index 000000000000..a4b5c5f4d6ea --- /dev/null +++ b/app-arch/plzip/plzip-1.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/plzip/plzip-1.3.ebuild,v 1.1 2015/01/27 15:29:21 mgorny Exp $ + +EAPI=5 + +inherit toolchain-funcs + +DESCRIPTION="Parallel lzip compressor" +HOMEPAGE="http://www.nongnu.org/lzip/plzip.html" +SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="app-arch/lzlib" + +src_configure() { + # not autotools-based + ./configure \ + --prefix="${EPREFIX}"/usr \ + CXX="$(tc-getCXX)" \ + CPPFLAGS="${CPPFLAGS}" \ + CXXFLAGS="${CXXFLAGS}" \ + LDFLAGS="${LDFLAGS}" || die +} |