diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-10-14 08:00:10 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-10-14 08:00:10 +0000 |
commit | 9885fce14790daddeb56c22f7e41867a5d25181e (patch) | |
tree | c9110fd27b5ff2964b3df572fd56eb6371665fe1 /app-arch/zpaq-extras | |
parent | Drop ancient. (diff) | |
download | gentoo-2-9885fce14790daddeb56c22f7e41867a5d25181e.tar.gz gentoo-2-9885fce14790daddeb56c22f7e41867a5d25181e.tar.bz2 gentoo-2-9885fce14790daddeb56c22f7e41867a5d25181e.zip |
Drop ancient.
(Portage version: 2.2.0_alpha137_p1/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/zpaq-extras')
-rw-r--r-- | app-arch/zpaq-extras/ChangeLog | 5 | ||||
-rw-r--r-- | app-arch/zpaq-extras/zpaq-extras-0_p20110106.ebuild | 64 |
2 files changed, 4 insertions, 65 deletions
diff --git a/app-arch/zpaq-extras/ChangeLog b/app-arch/zpaq-extras/ChangeLog index 15491502f275..8319ae5e1289 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.5 2012/10/14 07:57:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/zpaq-extras/ChangeLog,v 1.6 2012/10/14 08:00:10 mgorny Exp $ + + 14 Oct 2012; Michał Górny <mgorny@gentoo.org> -zpaq-extras-0_p20110106.ebuild: + Drop ancient. *zpaq-extras-2 (14 Oct 2012) diff --git a/app-arch/zpaq-extras/zpaq-extras-0_p20110106.ebuild b/app-arch/zpaq-extras/zpaq-extras-0_p20110106.ebuild deleted file mode 100644 index eeb03956ae80..000000000000 --- a/app-arch/zpaq-extras/zpaq-extras-0_p20110106.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-0_p20110106.ebuild,v 1.2 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/bmp_j4.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" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -DEPEND="app-arch/unzip" -RDEPEND="!<app-arch/zpaq-2.03 - <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 "s:^pcomp zpaq r:pcomp ${EPREFIX}/usr/bin/zpaq r${EPREFIX}/usr/share/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 -} |