From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 20570138CE8 for ; Mon, 15 Jun 2015 19:09:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F312E07D0; Mon, 15 Jun 2015 19:09:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F37AE07D0 for ; Mon, 15 Jun 2015 19:09:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 475043404A5 for ; Mon, 15 Jun 2015 19:09:31 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2264) id 55C7EA30; Mon, 15 Jun 2015 19:09:28 +0000 (UTC) From: "Justin Lecher (jlec)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, jlec@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog intel-sdp.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog intel-sdp.eclass X-VCS-Directories: eclass X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20150615190928.55C7EA30@oystercatcher.gentoo.org> Date: Mon, 15 Jun 2015 19:09:28 +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: b58987af-2dd0-45b8-a450-8c0db628315d X-Archives-Hash: 92e6a1eac138f6b50f115f3951dbcdc6 jlec 15/06/15 19:09:28 Modified: ChangeLog intel-sdp.eclass Log: Don't install uninstall informations, bug 551638; make use of path_exists() Revision Changes Path 1.1664 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1664&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1664&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1663&r2=1.1664 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.1663 retrieving revision 1.1664 diff -u -r1.1663 -r1.1664 --- ChangeLog 15 Jun 2015 14:04:44 -0000 1.1663 +++ ChangeLog 15 Jun 2015 19:09:28 -0000 1.1664 @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1663 2015/06/15 14:04:44 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1664 2015/06/15 19:09:28 jlec Exp $ + + 15 Jun 2015; Justin Lecher intel-sdp.eclass: + Don't install uninstall informations, bug 551638; make use of path_exists() 15 Jun 2015; Michael Palimaka kde4-base.eclass: Fix SRC_URI for 4.14.3 1.22 eclass/intel-sdp.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/intel-sdp.eclass?rev=1.22&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/intel-sdp.eclass?rev=1.22&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/intel-sdp.eclass?r1=1.21&r2=1.22 Index: intel-sdp.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- intel-sdp.eclass 4 Jun 2015 10:36:27 -0000 1.21 +++ intel-sdp.eclass 15 Jun 2015 19:09:28 -0000 1.22 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v 1.21 2015/06/04 10:36:27 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v 1.22 2015/06/15 19:09:28 jlec Exp $ # @ECLASS: intel-sdp.eclass # @MAINTAINER: @@ -416,7 +416,13 @@ # @DESCRIPTION: # Install everything intel-sdp_src_install() { - if [[ -d "${INTEL_SDP_DIR}"/Documentation ]]; then + if path_exists "${INTEL_SDP_DIR}"/uninstall*; then + ebegin "Cleaning out uninstall information" + find "${INTEL_SDP_DIR}"/uninstall* -delete || die + eend + fi + + if path_exists "${INTEL_SDP_DIR}"/Documentation; then dodoc -r "${INTEL_SDP_DIR}"/Documentation/* ebegin "Cleaning out documentation" @@ -424,7 +430,7 @@ eend fi - if [[ -d "${INTEL_SDP_DIR}"/Samples ]]; then + if path_exists "${INTEL_SDP_DIR}"/Samples; then if use examples ; then insinto /usr/share/${P}/examples/ doins -r "${INTEL_SDP_DIR}"/Samples/* @@ -434,7 +440,7 @@ eend fi - if [[ -d "${INTEL_SDP_DIR}"/eclipse_support ]]; then + if path_exists "${INTEL_SDP_DIR}"/eclipse_support; then if has eclipse ${IUSE} && use eclipse; then _isdp_link_eclipse_plugins else @@ -444,7 +450,7 @@ fi fi - if [[ -d "${INTEL_SDP_DIR}"/man ]]; then + if path_exists "${INTEL_SDP_DIR}"/man; then path_exists "${INTEL_SDP_DIR}"/man/en_US/man1/* && \ doman "${INTEL_SDP_DIR}"/man/en_US/man1/* path_exists "${INTEL_SDP_DIR}"/man/man1/* && \