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 F2E331381F3 for ; Sun, 18 Nov 2012 12:07:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7EC3E0682; Sun, 18 Nov 2012 12:07:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 04503E0686 for ; Sun, 18 Nov 2012 12:07:30 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F92533D8AA for ; Sun, 18 Nov 2012 12:07:30 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2276) id DA4D420C9F; Sun, 18 Nov 2012 12:07:28 +0000 (UTC) From: "Andreas HAttel (dilfridge)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, dilfridge@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-office/libreoffice/files: generate_libreoffice_package.sh X-VCS-Repository: gentoo-x86 X-VCS-Files: generate_libreoffice_package.sh X-VCS-Directories: app-office/libreoffice/files X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas HAttel Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121118120728.DA4D420C9F@flycatcher.gentoo.org> Date: Sun, 18 Nov 2012 12:07: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: a9d303d5-2549-465f-a813-063f9d7326e0 X-Archives-Hash: 253acfdd363e011450c108168168881b dilfridge 12/11/18 12:07:28 Modified: generate_libreoffice_package.sh Log: Add extension handling (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key B6C5F7DE) Revision Changes Path 1.7 app-office/libreoffice/files/generate_libreoffice_package.sh file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice/files/generate_libreoffice_package.sh?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice/files/generate_libreoffice_package.sh?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice/files/generate_libreoffice_package.sh?r1=1.6&r2=1.7 Index: generate_libreoffice_package.sh =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-office/libreoffice/files/generate_libreoffice_package.sh,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- generate_libreoffice_package.sh 18 Nov 2012 12:02:01 -0000 1.6 +++ generate_libreoffice_package.sh 18 Nov 2012 12:07:28 -0000 1.7 @@ -44,7 +44,18 @@ done # first the default subset of useflags -IUSES_BASE="bash-completion -binfilter branding cups dbus graphite gstreamer gtk nsplugin python vba webdav xmlsec -aqua -jemalloc -mysql -nlpsolver -odk -opengl -pdfimport -postgres -svg" +IUSES_BASE="bash-completion branding cups dbus gstreamer gtk python vba webdav -aqua -binfilter -jemalloc -mysql -odk -opengl -postgres -svg" + +ENABLE_EXTENSIONS="presenter-console presenter-minimizer" +DISABLE_EXTENSIONS="nlpsolver pdfimport scripting-beanshell scripting-javascript wiki-publisher" + +for lo_xt in ${ENABLE_EXTENSIONS}; do + IUSES_BASE+=" libreoffice_extensions_${lo_xt}" +done +for lo_xt in ${DISABLE_EXTENSIONS}; do + IUSES_BASE+=" -libreoffice_extensions_${lo_xt}" +done +unset lo_xt # now for the options IUSES_J="java"