30 lines
750 B
Bash
30 lines
750 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-admin/chrootuid/chrootuid-1.3-r1.ebuild,v 1.3 2011/08/23 12:11:23 hattya Exp $
|
|
|
|
EAPI="4"
|
|
|
|
inherit toolchain-funcs
|
|
|
|
MY_P="${P/-/}"
|
|
|
|
DESCRIPTION="run a network service at low privilege level and with restricted file system access"
|
|
HOMEPAGE="ftp://ftp.porcupine.org/pub/security/index.html"
|
|
SRC_URI="ftp://ftp.porcupine.org/pub/security/${MY_P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~ia64 ~ppc x86"
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
dobin chrootuid
|
|
doman chrootuid.1
|
|
dodoc README chrootuid_license
|
|
}
|