summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYixun Lan <dlan@gentoo.org>2014-10-10 06:28:16 +0000
committerYixun Lan <dlan@gentoo.org>2014-10-10 06:28:16 +0000
commitc5b7cf1825fdc0f0fe6c857492351070f231389e (patch)
treecbbaf9bfbfb277cfcf1344914d9004e8b0696fc6 /app-arch
parentVersion bump. (diff)
downloadgentoo-2-c5b7cf1825fdc0f0fe6c857492351070f231389e.tar.gz
gentoo-2-c5b7cf1825fdc0f0fe6c857492351070f231389e.tar.bz2
gentoo-2-c5b7cf1825fdc0f0fe6c857492351070f231389e.zip
bump as maintainer request, bug 524766
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
Diffstat (limited to 'app-arch')
-rw-r--r--app-arch/zopfli/ChangeLog7
-rw-r--r--app-arch/zopfli/zopfli-1.0.0_p20141006.ebuild26
2 files changed, 32 insertions, 1 deletions
diff --git a/app-arch/zopfli/ChangeLog b/app-arch/zopfli/ChangeLog
index 4ad7dfd22bf6..a3502e576b67 100644
--- a/app-arch/zopfli/ChangeLog
+++ b/app-arch/zopfli/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-arch/zopfli
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/zopfli/ChangeLog,v 1.10 2014/08/14 12:24:33 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/zopfli/ChangeLog,v 1.11 2014/10/10 06:28:16 dlan Exp $
+
+*zopfli-1.0.0_p20141006 (10 Oct 2014)
+
+ 10 Oct 2014; Yixun Lan <dlan@gentoo.org> +zopfli-1.0.0_p20141006.ebuild:
+ bump as maintainer request, bug 524766
14 Aug 2014; Sergey Popov <pinkbyte@gentoo.org>
-zopfli-1.0.0_p20131216.ebuild, -zopfli-1.0.0_p20140623.ebuild:
diff --git a/app-arch/zopfli/zopfli-1.0.0_p20141006.ebuild b/app-arch/zopfli/zopfli-1.0.0_p20141006.ebuild
new file mode 100644
index 000000000000..69bb869e254c
--- /dev/null
+++ b/app-arch/zopfli/zopfli-1.0.0_p20141006.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/zopfli/zopfli-1.0.0_p20141006.ebuild,v 1.1 2014/10/10 06:28:16 dlan Exp $
+
+EAPI=5
+
+inherit eutils toolchain-funcs vcs-snapshot
+
+DESCRIPTION="Compression library programmed in C to perform very good, but slow, deflate or zlib compression"
+HOMEPAGE="https://github.com/Hello71/zopfli/"
+SRC_URI="https://github.com/Hello71/zopfli/archive/1a2f1148efd07e16adb5702e8820abf6162292d5.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0/1"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+src_prepare() {
+ tc-export CC CXX
+
+ epatch_user
+}
+
+src_install() {
+ emake DESTDIR="${D}" prefix="${EPREFIX}/usr" libdir="${EPREFIX}/usr/$(get_libdir)" install
+ dodoc CONTRIBUTORS README README.${PN}png
+}