# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ # Nonofficial ebuild by Ycarus. For new version look here : http://gentoo.zugaina.org/ # This ebuild is a small modification of the official ndiswrapper ebuild ECVS_SERVER="cvs.sourceforge.net:/cvsroot/ndiswrapper" ECVS_MODULE="ndiswrapper" ECVS_TOP_DIR="${DISTDIR}/cvs-src/ndiswrapper-cvs" inherit linux-mod eutils DESCRIPTION="Wrapper for using Windows drivers for some wireless cards" HOMEPAGE="http://ndiswrapper.sourceforge.net/" LICENSE="GPL-2" KEYWORDS="~x86 ~amd64" S=${WORKDIR}/${ECVS_MODULE} IUSE="debug" DEPEND="sys-apps/pciutils" RDEPEND="${DEPEND} net-wireless/wireless-tools" CONFIG_CHECK="NET_RADIO" MODULE_NAMES="ndiswrapper(misc:${S}/driver)" BUILD_PARAMS="KSRC=${ROOT}${KV_DIR} KVERS=${KV_MAJOR}${KV_MINOR}" BUILD_TARGETS="all" MODULESD_NDISWRAPPER_ALIASES=("wlan0 ndiswrapper") src_compile() { make distclean convert_to_m ${S}/driver/Makefile # Enable verbose debugging information use debug && export DEBUG=3 cd utils emake || die "Compile of utils failed!" linux-mod_src_compile } src_install() { dosbin utils/ndiswrapper dosbin utils/ndiswrapper-buginfo into / dosbin utils/loadndisdriver dodoc README INSTALL AUTHORS ChangeLog doman ndiswrapper.8 keepdir /etc/ndiswrapper linux-mod_src_install } pkg_postinst() { linux-mod_pkg_postinst echo einfo "ndiswrapper requires .inf and .sys files from a Windows(tm) driver" einfo "to function. Download these to /root for example, then" einfo "run 'ndiswrapper -i /root/foo.inf'. After that you can delete them." einfo "They will be copied to the proper location." einfo "Once done, please run 'update-modules'." echo einfo "check http://ndiswrapper.sf.net/phpwiki/index.php/List for drivers" I=$(lspci -n | egrep 'Class (0280|0200):' | cut -d' ' -f4) einfo "Look for the following on that page for your driver:" einfo "Possible Hardware: ${I}" echo einfo "Please have a look at http://ndiswrapper.sourceforge.net/wiki/" einfo "for the FAQ, HowTos, Tips, Configuration, and installation" einfo "information." echo ewarn "Attempting to automatically reinstall any Windows drivers" ewarn "you might already have." for driver in $(ls /etc/ndiswrapper) do einfo "Driver: ${driver}" mv /etc/ndiswrapper/${driver} /tmp ndiswrapper -i /tmp/${driver}/${driver}.inf done }