diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-02-25 08:45:22 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-02-25 08:45:22 +0000 |
commit | a02b08780e2803f69837acfd15d8a269f2900940 (patch) | |
tree | 169c25beee9a001f89de6494f1ef1b54ac9b2698 /app-arch/pdlzip | |
parent | Add ~arm keyword. Tested on both Samsung and HP Chromebooks (diff) | |
download | gentoo-2-a02b08780e2803f69837acfd15d8a269f2900940.tar.gz gentoo-2-a02b08780e2803f69837acfd15d8a269f2900940.tar.bz2 gentoo-2-a02b08780e2803f69837acfd15d8a269f2900940.zip |
Introduce a public-domain C variant of lzip. It should more lightweight than app-arch/lzip.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'app-arch/pdlzip')
-rw-r--r-- | app-arch/pdlzip/ChangeLog | 10 | ||||
-rw-r--r-- | app-arch/pdlzip/metadata.xml | 8 | ||||
-rw-r--r-- | app-arch/pdlzip/pdlzip-1.5.ebuild | 26 |
3 files changed, 44 insertions, 0 deletions
diff --git a/app-arch/pdlzip/ChangeLog b/app-arch/pdlzip/ChangeLog new file mode 100644 index 000000000000..af40b4c00e76 --- /dev/null +++ b/app-arch/pdlzip/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-arch/pdlzip +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/pdlzip/ChangeLog,v 1.1 2014/02/25 08:45:22 mgorny Exp $ + +*pdlzip-1.5 (25 Feb 2014) + + 25 Feb 2014; Michał Górny <mgorny@gentoo.org> +metadata.xml, + +pdlzip-1.5.ebuild: + Introduce a public-domain C variant of lzip. It should more lightweight than + app-arch/lzip. diff --git a/app-arch/pdlzip/metadata.xml b/app-arch/pdlzip/metadata.xml new file mode 100644 index 000000000000..5cb9324943ab --- /dev/null +++ b/app-arch/pdlzip/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>mgorny@gentoo.org</email> + <name>Michał Górny</name> + </maintainer> +</pkgmetadata> diff --git a/app-arch/pdlzip/pdlzip-1.5.ebuild b/app-arch/pdlzip/pdlzip-1.5.ebuild new file mode 100644 index 000000000000..3ef8de5ad381 --- /dev/null +++ b/app-arch/pdlzip/pdlzip-1.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/pdlzip/pdlzip-1.5.ebuild,v 1.1 2014/02/25 08:45:22 mgorny Exp $ + +EAPI=5 + +inherit toolchain-funcs + +DESCRIPTION="Public-domain version of lzip compressor" +HOMEPAGE="http://www.nongnu.org/lzip/pdlzip.html" +SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_configure() { + # not autotools-based + ./configure \ + --prefix="${EPREFIX}"/usr \ + CC="$(tc-getCC)" \ + CPPFLAGS="${CPPFLAGS}" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" || die +} |