blob: 5ed3c8e796a6ac6e6e1f6d4ed9c009aa7a400379 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit eutils
DESCRIPTION="The IPX Utilities"
HOMEPAGE="ftp://sunsite.unc.edu/pub/Linux/system/filesystems/ncpfs/"
SRC_URI="ftp://sunsite.unc.edu/pub/Linux/system/filesystems/ncpfs/${P/-utils}.tar.gz"
LICENSE="ipx-utils GPL-2" # GPL-2 only for init script
SLOT="0"
KEYWORDS="amd64 ppc64 x86"
IUSE=""
DEPEND=""
S=${WORKDIR}/${P/-utils}
src_prepare() {
sed -i "s:-O2 -Wall:${CFLAGS}:" "${S}"/Makefile
epatch "${FILESDIR}"/${P}-makefile.patch
epatch "${FILESDIR}"/${P}-proc.patch #67642
}
src_install() {
dodir /sbin /usr/share/man/man8
dodoc "${S}"/README
emake DESTDIR="${D}" install
newconfd "${FILESDIR}"/ipx.confd ipx
newinitd "${FILESDIR}"/ipx.init ipx
}
|