blob: 8670b245b4546fef85fe8a6298883b89440b51a7 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/netcfg/netcfg-3.0.ebuild,v 1.1 2013/02/26 20:55:46 floppym Exp $
EAPI=5
DESCRIPTION="Profile based network connection tool from Arch Linux"
HOMEPAGE="https://www.archlinux.org/netcfg/"
SRC_URI="ftp://ftp.archlinux.org/other/${PN}/${P}.tar.xz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND=">=app-shells/bash-4.0
sys-apps/iproute2"
src_compile() {
:
}
src_install() {
emake DESTDIR="${D%/}" SHELL=bash install
rm -r "${D}"etc/rc.d || die
mv "${D}"usr/share/doc/{${PN},${PF}} || die
dodoc AUTHORS NEWS README
}
|