Parent Directory
|
Revision Log
Clarify that this is ISC-licensed, as-is is not sufficiently precise. As per Ulrich Müller in bug #436452. (Portage version: 2.1.11.21/cvs/Linux x86_64)
| 1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/net-wireless/rfkill/rfkill-0.2.ebuild,v 1.2 2009/12/01 19:02:58 fauli Exp $ |
| 4 | |
| 5 | inherit toolchain-funcs |
| 6 | |
| 7 | DESCRIPTION="Tool to read and control rfkill status through /dev/rfkill" |
| 8 | HOMEPAGE="http://wireless.kernel.org/en/users/Documentation/rfkill" |
| 9 | SRC_URI="http://wireless.kernel.org/download/${PN}/${P}.tar.bz2" |
| 10 | |
| 11 | LICENSE="ISC" |
| 12 | SLOT="0" |
| 13 | KEYWORDS="~amd64 ~x86" |
| 14 | IUSE="" |
| 15 | |
| 16 | RDEPEND="" |
| 17 | DEPEND="sys-devel/make" |
| 18 | |
| 19 | CC=$(tc-getCC) |
| 20 | LD=$(tc-getLD) |
| 21 | |
| 22 | src_compile() { |
| 23 | emake || die "Failed to compile" |
| 24 | } |
| 25 | |
| 26 | src_install() { |
| 27 | emake install DESTDIR="${D}" || die "Failed to install" |
| 28 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.20 |