# ChangeLog for app-arch/pigz
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.16 2011/06/09 03:27:02 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.17 2011/12/18 20:56:54 spatz Exp $
+
+*pigz-2.1.7 (18 Dec 2011)
+
+ 18 Dec 2011; Dror Levin <spatz@gentoo.org> +pigz-2.1.7.ebuild:
+ Version bump. Should finally fix #312967 and #324635.
09 Jun 2011; Matt Turner <mattst88@gentoo.org> pigz-2.1.6-r1.ebuild:
Add ~alpha.
--- /dev/null
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.1.7.ebuild,v 1.1 2011/12/18 20:56:54 spatz Exp $
+
+EAPI="4"
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="A parallel implementation of gzip"
+HOMEPAGE="http://www.zlib.net/pigz/"
+SRC_URI="http://www.zlib.net/pigz/${P}.tar.gz"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~mips ~sparc ~x86 ~amd64-linux ~sparc64-solaris"
+IUSE="symlink test"
+
+RDEPEND="sys-libs/zlib"
+DEPEND="${RDEPEND}
+ test? ( app-arch/ncompress )"
+
+S="${WORKDIR}/${PN}"
+
+src_prepare() {
+ sed -i -e '1,3d' -e '5s/$(CC)/$(CC) $(LDFLAGS)/' "${S}/Makefile" || die
+ tc-export CC
+}
+
+src_install() {
+ dobin ${PN}
+ dosym /usr/bin/${PN} /usr/bin/un${PN}
+ dodoc README
+ doman ${PN}.1
+
+ if use symlink; then
+ dosym /usr/bin/${PN} /usr/bin/gzip
+ dosym /usr/bin/un${PN} /usr/bin/gunzip
+ fi
+}