summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2014-02-19 16:57:54 +0000
committerMichał Górny <mgorny@gentoo.org>2014-02-19 16:57:54 +0000
commit82d75f592bf21929630ff4ff6ed44956132260c8 (patch)
tree8cefbd9904a3508cf8847a6144d695ec3794c827 /app-arch
parentfix twisted-core dep, add init scripts (diff)
downloadgentoo-2-82d75f592bf21929630ff4ff6ed44956132260c8.tar.gz
gentoo-2-82d75f592bf21929630ff4ff6ed44956132260c8.tar.bz2
gentoo-2-82d75f592bf21929630ff4ff6ed44956132260c8.zip
Drop old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'app-arch')
-rw-r--r--app-arch/zpaq-extras/ChangeLog7
-rw-r--r--app-arch/zpaq-extras/zpaq-extras-1.ebuild64
2 files changed, 5 insertions, 66 deletions
diff --git a/app-arch/zpaq-extras/ChangeLog b/app-arch/zpaq-extras/ChangeLog
index 8319ae5e1289..8c34d8943668 100644
--- a/app-arch/zpaq-extras/ChangeLog
+++ b/app-arch/zpaq-extras/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/zpaq-extras
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/zpaq-extras/ChangeLog,v 1.6 2012/10/14 08:00:10 mgorny Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/zpaq-extras/ChangeLog,v 1.7 2014/02/19 16:57:54 mgorny Exp $
+
+ 19 Feb 2014; Michał Górny <mgorny@gentoo.org> -zpaq-extras-1.ebuild:
+ Drop old.
14 Oct 2012; Michał Górny <mgorny@gentoo.org> -zpaq-extras-0_p20110106.ebuild:
Drop ancient.
diff --git a/app-arch/zpaq-extras/zpaq-extras-1.ebuild b/app-arch/zpaq-extras/zpaq-extras-1.ebuild
deleted file mode 100644
index 667750adfa21..000000000000
--- a/app-arch/zpaq-extras/zpaq-extras-1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/zpaq-extras/zpaq-extras-1.ebuild,v 1.1 2011/08/25 12:14:38 mgorny Exp $
-
-EAPI=3
-inherit base toolchain-funcs
-
-DESCRIPTION="A set of additional compression profiles for app-arch/zpaq"
-HOMEPAGE="http://mattmahoney.net/dc/zpaq.html"
-SRC_URI="http://mattmahoney.net/dc/bwt_j3.zip
- http://mattmahoney.net/dc/bwt_slowmode1.zip
- http://mattmahoney.net/dc/exe_j1.zip
- http://mattmahoney.net/dc/jpg_test2.zip
- http://mattmahoney.net/dc/min.zip
- http://mattmahoney.net/dc/fast.cfg -> zpaq-fast.cfg
- http://mattmahoney.net/dc/mid.cfg -> zpaq-mid.cfg
- http://mattmahoney.net/dc/max.cfg -> zpaq-max.cfg
- http://mattmahoney.net/dc/bmp_j4a.zip"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="app-arch/unzip"
-RDEPEND=">=app-arch/zpaq-3"
-
-S=${WORKDIR}
-
-src_unpack() {
- local x
- for x in ${A}; do
- if [[ ${x} == *.cfg ]]; then
- cp "${DISTDIR}"/${x} ${x#zpaq-} || die
- fi
- done
-
- default
-}
-
-src_configure() {
- sed \
- -e "/^pcomp zpaq/s:-m:-m${EPREFIX}/usr/share/zpaq/:" \
- -e "s:^pcomp zpaq:pcomp ${EPREFIX}/usr/bin/zpaq:" \
- -e "s:^pcomp \([^/]\):pcomp ${EPREFIX}/usr/libexec/zpaq/\1:" \
- -i *.cfg || die
-
- local sources=( *.cpp )
- # (the following assignment flattens the array)
- progs=${sources[@]%.cpp}
-}
-
-src_compile() {
- tc-export CXX
- emake ${progs} || die
-}
-
-src_install() {
- exeinto /usr/libexec/zpaq
- doexe ${progs} || die
-
- insinto /usr/share/zpaq
- doins *.cfg || die
-}