mgorny 14/12/27 14:01:42 Modified: ChangeLog Added: cwiid-20110107-r2.ebuild Log: Convert to python-single-r1. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.9 app-misc/cwiid/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cwiid/ChangeLog?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cwiid/ChangeLog?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cwiid/ChangeLog?r1=1.8&r2=1.9 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-misc/cwiid/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ChangeLog 8 Aug 2013 16:34:44 -0000 1.8 +++ ChangeLog 27 Dec 2014 14:01:42 -0000 1.9 @@ -1,6 +1,11 @@ # ChangeLog for app-misc/cwiid -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/cwiid/ChangeLog,v 1.8 2013/08/08 16:34:44 lxnay Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/cwiid/ChangeLog,v 1.9 2014/12/27 14:01:42 mgorny Exp $ + +*cwiid-20110107-r2 (27 Dec 2014) + + 27 Dec 2014; Michał Górny <[email protected]> +cwiid-20110107-r2.ebuild: + Convert to python-single-r1. 08 Aug 2013; Fabio Erculiani <[email protected]> cwiid-20110107-r1.ebuild: do not die() on CONFIG_CHECK failures, fix bug #480130 1.1 app-misc/cwiid/cwiid-20110107-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cwiid/cwiid-20110107-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cwiid/cwiid-20110107-r2.ebuild?rev=1.1&content-type=text/plain Index: cwiid-20110107-r2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/cwiid/cwiid-20110107-r2.ebuild,v 1.1 2014/12/27 14:01:42 mgorny Exp $ EAPI=5 if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="git://github.com/abstrakraft/cwiid.git" SRC_URI="" KEYWORDS="" inherit git else # git archive --prefix=cwiid-$(date +%Y%m%d)/ \ # --format=tar HEAD | bzip2 > cwiid-$(date +%Y%m%d).tar.bz2 SRC_URI="http://dev.gentoo.org/~lxnay/cwiid/cwiid-${PV}.tar.bz2" KEYWORDS="~x86 ~amd64" fi PYTHON_COMPAT=( python2_7 ) inherit eutils linux-mod autotools python-single-r1 DESCRIPTION="Library, input driver, and utilities for the Nintendo Wiimote" HOMEPAGE="http://abstrakraft.org/cwiid" LICENSE="GPL-2" SLOT="0" IUSE="python" DEPEND="virtual/awk sys-apps/sed sys-devel/bison >=sys-devel/flex-2.5.35 virtual/pkgconfig python? ( ${PYTHON_DEPS} )" RDEPEND="net-wireless/bluez x11-libs/gtk+:2 python? ( ${PYTHON_DEPS} )" REQUIRED_USE=${PYTHON_REQUIRED_USE} pkg_setup() { CONFIG_CHECK="~BT_L2CAP ~INPUT_UINPUT" linux-mod_pkg_setup use python && python-single-r1_pkg_setup } src_unpack() { if [[ ${PV} == "9999" ]]; then git_src_unpack else unpack ${A} fi } src_prepare() { # Fix broken build system sed -i "s:--disable-ldconfig:--without-ldconfig:g" "${S}"/configure.ac || die sed -i "s:enable_ldconfig:with_ldconfig:g" "${S}"/configure.ac || die epatch "${FILESDIR}"/${P}-underlinking.patch eautoreconf } src_configure() { econf $(use_with python) --without-ldconfig || die "configure failed" } src_compile() { emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog NEWS README insinto /lib/udev/rules.d doins "${FILESDIR}/60-${PN}.rules" }
