summaryrefslogtreecommitdiff
blob: 923408ece493aa6823bf4089aea8508a7c6acb76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit toolchain-funcs

DESCRIPTION="Extra configurations for zpaq"
HOMEPAGE="http://mattmahoney.net/dc/#zpaq"
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"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

DEPEND="app-arch/unzip"
RDEPEND=""

src_compile() {
	local _prog

	mkdir bin
	for _prog in bwtpre bwt_ jpeg_jo exe_jo; do
		"$(tc-getCXX)" ${CXXFLAGS} ${_prog}.cpp -o bin/${_prog} \
			|| die "compiling ${_prog} failed"
	done

	sed \
		-e 's:^pcomp zpaq r:pcomp /usr/bin/zpaq r/usr/share/zpaq/:' \
		-e 's:^pcomp \([^/]\):pcomp /usr/libexec/zpaq/\1:' \
		-i *.cfg || die 'sed failed'
}

src_install() {
	exeinto /usr/libexec/zpaq
	doexe bin/* || die 'dobin failed'

	insinto /usr/share/zpaq
	doins *.cfg || die 'doins failed'
}