From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DEEAF138EBA for ; Sun, 16 Oct 2016 19:16:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02356E0B91; Sun, 16 Oct 2016 19:16:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D4DB9E0B91 for ; Sun, 16 Oct 2016 19:16:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D85C8341229 for ; Sun, 16 Oct 2016 19:16:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBEF52F2 for ; Sun, 16 Oct 2016 19:16:13 +0000 (UTC) From: "Joerg Bornkessel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joerg Bornkessel" Message-ID: <1476645346.e8e3d41b6a38fab701bd8d74d813325b9edd788b.hd_brummy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/graphlcd-base/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/graphlcd-base/graphlcd-base-0.1.9.ebuild X-VCS-Directories: app-misc/graphlcd-base/ X-VCS-Committer: hd_brummy X-VCS-Committer-Name: Joerg Bornkessel X-VCS-Revision: e8e3d41b6a38fab701bd8d74d813325b9edd788b X-VCS-Branch: master Date: Sun, 16 Oct 2016 19:16:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 53dbde9e-07fe-414a-a13d-f9d9665c2567 X-Archives-Hash: 184ecb006911ded78b762f43bcca8dd8 commit: e8e3d41b6a38fab701bd8d74d813325b9edd788b Author: Joerg Bornkessel gentoo org> AuthorDate: Sun Oct 16 19:15:46 2016 +0000 Commit: Joerg Bornkessel gentoo org> CommitDate: Sun Oct 16 19:15:46 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8e3d41b app-misc/graphlcd-base: compile fix gcc-6, wrt bug 595202; eapi=6 Package-Manager: portage-2.3.0 app-misc/graphlcd-base/graphlcd-base-0.1.9.ebuild | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/app-misc/graphlcd-base/graphlcd-base-0.1.9.ebuild b/app-misc/graphlcd-base/graphlcd-base-0.1.9.ebuild index b9f72c1..3fac7c8 100644 --- a/app-misc/graphlcd-base/graphlcd-base-0.1.9.ebuild +++ b/app-misc/graphlcd-base/graphlcd-base-0.1.9.ebuild @@ -1,15 +1,15 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=6 -inherit eutils flag-o-matic multilib +inherit flag-o-matic multilib VERSION="501" #every bump, new version DESCRIPTION="Graphical LCD Driver" -HOMEPAGE="http://projects.vdr-developer.org/projects/show/graphlcd" +HOMEPAGE="https://projects.vdr-developer.org/projects/graphlcd-base" SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz" KEYWORDS="~amd64 ~ppc ~x86" @@ -23,9 +23,14 @@ RDEPEND="g15? ( app-misc/g15daemon ) src_prepare() { sed -i Make.config -e "s:usr\/local:usr:" -e "s:FLAGS *=:FLAGS ?=:" - epatch "${FILESDIR}/${PN}-0.1.5-nostrip.patch" + eapply "${FILESDIR}/${PN}-0.1.5-nostrip.patch" sed -i glcdskin/Makefile -e "s:-shared:\$(LDFLAGS) -shared:" + + #gcc-6 fix + sed -i glcddrivers/futabaMDM166A.c -e "s:0xff7f0004:(int) 0xff7f0004:" + + default } src_install() { @@ -34,5 +39,7 @@ src_install() { insinto /etc doins graphlcd.conf - dodoc docs/* + local DOCS=( HISTORY README docs/* ) + + einstalldocs }