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 D1C19138A1F for ; Tue, 16 Sep 2014 17:01:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FB37E0AB0; Tue, 16 Sep 2014 17:01:47 +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 D9461E0AB1 for ; Tue, 16 Sep 2014 17:01:45 +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 A035F340350 for ; Tue, 16 Sep 2014 17:01:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C42E5BA7 for ; Tue, 16 Sep 2014 17:01:41 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1410886435.d2e95f5acef6e610e309648af93d7fcbbb351e1e.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/giac/ X-VCS-Repository: proj/sci X-VCS-Files: sci-mathematics/giac/ChangeLog sci-mathematics/giac/giac-1.1.0.ebuild X-VCS-Directories: sci-mathematics/giac/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: d2e95f5acef6e610e309648af93d7fcbbb351e1e X-VCS-Branch: master Date: Tue, 16 Sep 2014 17:01:41 +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: 46134b88-2425-4823-8ec4-bdaf387744e2 X-Archives-Hash: 5d56a78ea4976cf22629f8f2e4233788 commit: d2e95f5acef6e610e309648af93d7fcbbb351e1e Author: Christoph Junghans gentoo org> AuthorDate: Tue Sep 16 16:53:55 2014 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Tue Sep 16 16:53:55 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d2e95f5a clean up Package-Manager: portage-2.2.8-r1 --- sci-mathematics/giac/ChangeLog | 4 +++- sci-mathematics/giac/giac-1.1.0.ebuild | 23 +++++++++++------------ 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/sci-mathematics/giac/ChangeLog b/sci-mathematics/giac/ChangeLog index fc7798d..e738e67 100644 --- a/sci-mathematics/giac/ChangeLog +++ b/sci-mathematics/giac/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 16 Sep 2014; Christoph Junghans giac-1.1.0.ebuild: + clean up + 09 Aug 2014; Dominik Schmidt Fixed fltk handling, added PAX-checks and exception, EAPI bump. @@ -19,4 +22,3 @@ 16 May 2011; Jonathan-Christofer Demay giac-0.9.2.ebuild, +metadata.xml: QA fixes - diff --git a/sci-mathematics/giac/giac-1.1.0.ebuild b/sci-mathematics/giac/giac-1.1.0.ebuild index fca2952..f04fc2d 100644 --- a/sci-mathematics/giac/giac-1.1.0.ebuild +++ b/sci-mathematics/giac/giac-1.1.0.ebuild @@ -45,32 +45,31 @@ src_configure(){ local myeconfargs=( $(use_enable fltk gui) ) - autotools-utils_src_configure || die "configuring failed" + autotools-utils_src_configure || die "configuring failed" } src_install() { emake install DESTDIR="${D}" || die "emake install failed" - mv ${D}/usr/bin/{aide,giac-help} - rm ${D}/usr/bin/*cas_help - dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README TROUBLES + mv "${D}"/usr/bin/{aide,giac-help} + rm "${D}"/usr/bin/*cas_help + dodoc AUTHORS ChangeLog INSTALL NEWS README TROUBLES if use !fltk; then - rm ${D}/usr/bin/x* + rm "${D}"/usr/bin/x* elif host-is-pax; then - pax-mark -m ${D}/usr/bin/x* + pax-mark -m "${D}"/usr/bin/x* fi if use !doc; then - rm -R ${D}/usr/share/doc/giac ${D}/usr/share/giac/doc/ + rm -R "${D}"/usr/share/doc/giac "${D}"/usr/share/giac/doc/ else for LANG in el en es fr pt; do - if echo ${LINGUAS} | grep -v $LANG &> /dev/null; then - rm -R ${D}/usr/share/giac/doc/$LANG + if echo ${LINGUAS} | grep -v "$LANG" &> /dev/null; then + rm -R "${D}"/usr/share/giac/doc/"$LANG" else - ln ${D}/usr/share/giac/doc/aide_cas ${D}/usr/share/giac/doc/$LANG/aide_cas + ln "${D}"/usr/share/giac/doc/aide_cas "${D}"/usr/share/giac/doc/"$LANG"/aide_cas fi done fi if use !examples; then - rm -R ${D}/usr/share/giac/examples + rm -R "${D}"/usr/share/giac/examples fi } -