# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=2 inherit eutils linux-mod git-2 MY_P=${P/-modules} EGIT_REPO_URI="git://github.com/austriancoder/em8300.git https://github.com/austriancoder/em8300.git" EGIT_HAS_SUBMODULES=1 EGIT_SOURCEDIR="${WORKDIR}/${MY_P}" DESCRIPTION="em8300 (RealMagic Hollywood+/Creative DXR3) video decoder card kernel modules" HOMEPAGE="https://github.com/austriancoder/em8300" SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" RDEPEND="" DEPEND="virtual/linux-sources" CONFIG_CHECK="I2C_ALGOBIT" MODULE_NAMES="em8300(video:) bt865(video:) adv717x(video:)" S="${WORKDIR}/${MY_P}/modules" src_unpack() { git-2_src_unpack } src_compile() { set_arch_to_kernel emake KERNEL_LOCATION="${KERNEL_DIR}" || die } src_install() { linux-mod_src_install dodoc README-modoptions README-modules.conf newsbin devices.sh em8300-devices.sh insinto /etc/modprobe.d newins "${FILESDIR}"/modules.em8300 em8300.conf insinto /etc/udev/rules.d newins em8300-udev.rules 15-em8300.rules } pkg_preinst() { linux-mod_pkg_preinst local old1="${ROOT}/etc/modprobe.d/em8300" local old2="${ROOT}/etc/modules.d/em8300" local new="${ROOT}/etc/modprobe.d/em8300.conf" if [[ ! -a ${new} ]]; then if [[ -a ${old1} ]]; then elog "Renaming em8300-modprobe configuration to em8300.conf" mv "${old1}" "${new}" elif [[ -a ${old2} ]]; then elog "Moving old em8300 configuration in /etc/modules.d to new" elog "location in /etc/modprobe.d" mv "${old2}" "${new}" fi fi }