blob: f6fa18f55904dfacbf981a578477cf4f01d36bc4 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit eutils toolchain-funcs
MY_P="${P/-tools/}"
DESCRIPTION="Compressed in-memory swap device for Linux"
HOMEPAGE="http://code.google.com/p/compcache/"
SRC_URI="http://compcache.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
S="${WORKDIR}/${MY_P}/sub-projects/rzscontrol"
src_prepare() {
epatch "${FILESDIR}/${P}_gentoo.patch"
}
src_compile() {
tc-export CC
default
}
src_install() {
dobin rzscontrol || die
doman man/rzscontrol.1 || die
}
|