mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-25 00:01:15 +02:00
added rfkill
This commit is contained in:
parent
bc98f7273c
commit
ef1eabd965
2 changed files with 30 additions and 0 deletions
2
net-wireless/rfkill/Manifest
Normal file
2
net-wireless/rfkill/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST rfkill-0.1.tar.bz2 6513 RMD160 027996fdc4fcd2e6c38af45e691ff64fb2779156 SHA1 ac00cb3887641ab1048218a5979ce32243ce31d2 SHA256 044adb27494437b9f2eae08e11cb2c85d29644362df8c6130e1e59c91f763bb2
|
||||
EBUILD rfkill-0.1.ebuild 706 RMD160 c620414b35a54418fd15a1ddefc5989e1206fca2 SHA1 2ac53241769be8a305fd5288eb5b6701e4fbe847 SHA256 5215f1136ec5fc6cd79779adf76284056bdd16e7e76ff658a0eca81a2f1fe553
|
||||
28
net-wireless/rfkill/rfkill-0.1.ebuild
Normal file
28
net-wireless/rfkill/rfkill-0.1.ebuild
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/net-wireless/rfkill/rfkill-0.1.ebuild,v 1.1 2009/07/21 12:41:09 chainsaw Exp $
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="Tool to read and control rfkill status through /dev/rfkill"
|
||||
HOMEPAGE="http://wireless.kernel.org/en/users/Documentation/rfkill"
|
||||
SRC_URI="http://wireless.kernel.org/download/${PN}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="as-is"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="sys-devel/make"
|
||||
|
||||
CC=$(tc-getCC)
|
||||
LD=$(tc-getLD)
|
||||
|
||||
src_compile() {
|
||||
emake || die "Failed to compile"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake install DESTDIR="${D}" || die "Failed to install"
|
||||
}
|
||||
Loading…
Reference in a new issue