trim useless trailing whitespace
authorMike Frysinger <vapier@gentoo.org>
Mon, 29 Aug 2011 01:28:10 +0000 (01:28 +0000)
committerMike Frysinger <vapier@gentoo.org>
Mon, 29 Aug 2011 01:28:10 +0000 (01:28 +0000)
21 files changed:
eclass/cmake-utils.eclass
eclass/db.eclass
eclass/font.eclass
eclass/gnat.eclass
eclass/gnatbuild.eclass
eclass/java-osgi.eclass
eclass/java-utils-2.eclass
eclass/kernel-2.eclass
eclass/mozcoreconf-2.eclass
eclass/mysql.eclass
eclass/php-ext-source-r2.eclass
eclass/qt4-build.eclass
eclass/rox-0install.eclass
eclass/rox.eclass
eclass/scons-utils.eclass
eclass/selinux-policy-2.eclass
eclass/systemd.eclass
eclass/texlive-common.eclass
eclass/texlive-module.eclass
eclass/vdr-plugin.eclass
eclass/x-modular.eclass

index 1c559f6f9c47042182aa847dd3428f8f13e7ef40..2ad81c047ff936db224cc1fa415d3d87c6241349 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.74 2011/08/27 20:30:39 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.75 2011/08/29 01:28:10 vapier Exp $
 
 # @ECLASS: cmake-utils.eclass
 # @MAINTAINER:
@@ -33,7 +33,7 @@ CMAKE_MIN_VERSION="${CMAKE_MIN_VERSION:-2.8.4}"
 
 # @ECLASS-VARIABLE: CMAKE_REMOVE_MODULES_LIST
 # @DESCRIPTION:
-# Space-separated list of CMake modules that will be removed in $S during src_prepare, 
+# Space-separated list of CMake modules that will be removed in $S during src_prepare,
 # in order to force packages to use the system version.
 CMAKE_REMOVE_MODULES_LIST="${CMAKE_REMOVE_MODULES_LIST:-FindBLAS FindLAPACK}"
 
@@ -334,7 +334,7 @@ enable_cmake-utils_src_configure() {
                        SET(CMAKE_PREFIX_PATH "${EPREFIX}${PREFIX:-/usr}" CACHE STRING ""FORCE)
                        SET(CMAKE_SKIP_BUILD_RPATH OFF CACHE BOOL "" FORCE)
                        SET(CMAKE_SKIP_RPATH OFF CACHE BOOL "" FORCE)
-                       SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE CACHE BOOL "" FORCE) 
+                       SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE CACHE BOOL "" FORCE)
                        SET(CMAKE_INSTALL_RPATH "${EPREFIX}${PREFIX:-/usr}/lib;${EPREFIX}/usr/${CHOST}/lib/gcc;${EPREFIX}/usr/${CHOST}/lib;${EPREFIX}/usr/$(get_libdir);${EPREFIX}/$(get_libdir)" CACHE STRING "" FORCE)
                        SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE CACHE BOOL "" FORCE)
                        SET(CMAKE_INSTALL_NAME_DIR "${EPREFIX}${PREFIX:-/usr}/lib" CACHE STRING "" FORCE)
index 4d99d629b0c33714559095f30a801a035d67a9af..3c79abbb98a3470f7d2bc6ff6f37c6eb48577aed 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/db.eclass,v 1.42 2011/07/08 11:36:00 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/db.eclass,v 1.43 2011/08/29 01:28:10 vapier Exp $
 # This is a common location for functions used in the sys-libs/db ebuilds
 #
 # Bugs: pauldv@gentoo.org
@@ -171,7 +171,7 @@ db_src_test() {
                for t in \
                        ../test/test.tcl \
                        ../test/tcl/test.tcl \
-                       ; do 
+                       ; do
                        [[ -f "${t}" ]] && testbase="${t}" && break
                done
                echo "source ${t}" > testrunner.tcl
@@ -179,7 +179,7 @@ db_src_test() {
                                sed -e "s/.*-j\([0-9]\+\).*/\1/"`
                if [[ ${testJobs} =~ [[:digit:]]+ ]]; then
                        echo "run_parallel ${testJobs} run_std" >> testrunner.tcl
-               else 
+               else
                        echo 'run_std' >>testrunner.tcl
                fi
 
index 57eb534b7faa3914646d0566de738e2cde34ae87..2a2e5c5d7c49d55fa56e41e6856220fbbb6fa44c 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.53 2011/08/22 04:46:31 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.54 2011/08/29 01:28:10 vapier Exp $
 
 # @ECLASS: font.eclass
 # @MAINTAINER:
@@ -222,7 +222,7 @@ font_pkg_postinst() {
 # The font pkg_postrm function.
 font_pkg_postrm() {
        font_cleanup_dirs
-       
+
        # unreadable font files = fontconfig segfaults
        find "${EROOT}"usr/share/fonts/ -type f '!' -perm 0644 -print0 \
                | xargs -0 chmod -v 0644 2>/dev/null
index 21a85d9596c147251e6cbb08d97c7e0538ed613c..5bcd59af3e9d56c82d0105fbd4e35a6c2cc1b435 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/gnat.eclass,v 1.39 2010/01/13 15:06:11 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gnat.eclass,v 1.40 2011/08/29 01:28:10 vapier Exp $
 #
 # Author: George Shapovalov <george@gentoo.org>
 # Belongs to: ada herd <ada@gentoo.org>
@@ -128,7 +128,7 @@ get_ada_dep() {
 #
 # params:
 #  $1 - the requested gnat profile in usual form (e.g. x86_64-pc-linux-gnu-gnat-gcc-4.1)
-#  $2 - Ada standard specification, as would be specified in DEPEND. 
+#  $2 - Ada standard specification, as would be specified in DEPEND.
 #       Valid  values: ada-1995, ada-2005, ada
 #
 #       This used to treat ada-1995 and ada alike, but some packages (still
index a76f369de7c374e76ad15753c36475c95e0f8a20..197ed7dfcd992142e1d0e9184ea6930d110dca95 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2006 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/gnatbuild.eclass,v 1.52 2011/05/23 14:09:04 george Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gnatbuild.eclass,v 1.53 2011/08/29 01:28:10 vapier Exp $
 #
 # Author: George Shapovalov <george@gentoo.org>
 # Belongs to: ada herd <ada@gentoo.org>
@@ -64,7 +64,7 @@ PN_GnatGpl="gnat-gpl"
 # so tc-* functions are of no use here. The present versioning scheme makes
 # GCCVER basically a part of PV, but *this may change*!!
 #
-# GCCVER can be set in the ebuild. 
+# GCCVER can be set in the ebuild.
 [[ -z ${GCCVER} ]] && GCCVER="${GNATRELEASE}"
 
 
@@ -315,7 +315,7 @@ gnatbuild_pkg_postinst() {
 
 
 gnatbuild_pkg_postrm() {
-       # "eselect gnat update" now removes the env.d file if the corresponding 
+       # "eselect gnat update" now removes the env.d file if the corresponding
        # gnat profile was unmerged
        eselect gnat update
        elog "If you just unmerged the last gnat in this SLOT, your active gnat"
index c2f3296b5b7274a49821ca8e169e87dd5694b453..ebf4979a7417be558337decdf6ef1479ca0270fc 100644 (file)
@@ -5,7 +5,7 @@
 #
 # Licensed under the GNU General Public License, v2
 #
-# $Header: /var/cvsroot/gentoo-x86/eclass/java-osgi.eclass,v 1.5 2009/01/12 22:58:36 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/java-osgi.eclass,v 1.6 2011/08/29 01:28:10 vapier Exp $
 
 # -----------------------------------------------------------------------------
 # @eclass-begin
@@ -68,7 +68,7 @@ _java-osgi_plugin() {
 # This is an internal function, not to be called directly.
 #
 # @example
-#      _java-osgi_makejar "dist/${PN}.jar" "com.jcraft.jsch" "JSch" "com.jcraft.jsch, com.jcraft.jsch.jce;x-internal:=true" 
+#      _java-osgi_makejar "dist/${PN}.jar" "com.jcraft.jsch" "JSch" "com.jcraft.jsch, com.jcraft.jsch.jce;x-internal:=true"
 #
 # @param $1 - name of jar to repackage with OSGi
 # @param $2 - bundle symbolic name
@@ -229,7 +229,7 @@ _java-osgi_makejar-fromfile() {
 #      java-osgi_newjar-fromfile "dist/${PN}.jar" "${FILESDIR}/MANIFEST.MF" "Standard Widget Toolkit for GTK 2.0"
 #
 # @param $opt
-#      --no-auto-version - This option disables automatic rewriting of the 
+#      --no-auto-version - This option disables automatic rewriting of the
 #              version in the Manifest file#
 # @param $1 - name of jar to repackage with OSGi
 # @param $2 (optional) - name of the target jar. It will default to package name if not specified.
@@ -269,7 +269,7 @@ java-osgi_newjar-fromfile() {
 #      java-osgi_dojar-fromfile "dist/${PN}.jar" "${FILESDIR}/MANIFEST.MF" "Standard Widget Toolkit for GTK 2.0"
 #
 # @param $opt
-#      --no-auto-version - This option disables automatic rewriting of the 
+#      --no-auto-version - This option disables automatic rewriting of the
 #              version in the Manifest file
 # @param $1 - name of jar to repackage with OSGi
 # @param $2 - path to the Manifest file
index 260ff412a2b16eff878724fd5a3dbcf26c74cbac..de70d1f05e04309b746fe906db26cca1b6881651 100644 (file)
@@ -6,7 +6,7 @@
 #
 # Licensed under the GNU General Public License, v2
 #
-# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.141 2011/07/08 11:35:01 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.142 2011/08/29 01:28:10 vapier Exp $
 
 # -----------------------------------------------------------------------------
 # @eclass-begin
@@ -1320,7 +1320,7 @@ java-pkg_get-bootclasspath() {
        local version="${1}"
 
        local bcp
-       case "${version}" in 
+       case "${version}" in
                auto)
                        bcp="$(java-config -g BOOTCLASSPATH)"
                        ;;
index 12b31ef3c630d8a84b04003b4122745bba940a84..cc0fe2bed26c78f42f81a1d92404812d3151edf5 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.259 2011/08/19 13:26:12 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.260 2011/08/29 01:28:10 vapier Exp $
 
 # Description: kernel.eclass rewrite for a clean base regarding the 2.6
 #              series of kernel with back-compatibility for 2.4
@@ -220,7 +220,7 @@ detect_version() {
                KV_PATCH_ARR=(${KV_PATCH//\./ })
 
                # at this point 080811, Linus is putting 3.1 kernels in 3.0 directory
-               # revisit when 3.1 is released 
+               # revisit when 3.1 is released
                if [[ ${KV_PATCH} -gt 0 ]]; then
                        KERNEL_BASE_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.$((${KV_PATCH_ARR} - 1))"
                else
index 2b02cf52921dde0004471de1afad884cc4e44c7f..5b743186298b7d0adf870171b78421269211f2ff 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mozcoreconf-2.eclass,v 1.21 2011/07/08 11:36:00 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mozcoreconf-2.eclass,v 1.22 2011/08/29 01:28:10 vapier Exp $
 #
 # mozcoreconf.eclass : core options for mozilla
 # inherit mozconfig-2 if you need USE flags
@@ -150,7 +150,7 @@ mozconfig_init() {
        # Strip optimization so it does not end up in compile string
        filter-flags '-O*'
 
-       # Strip over-aggressive CFLAGS 
+       # Strip over-aggressive CFLAGS
        use custom-cflags || strip-flags
 
        # Additional ARCH support
index e722f4d8158e08df023a6ab9254bc97ed76bc1ad..8538c846b936edf7209666c171cfc915ca450e41 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.164 2011/08/22 04:46:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.165 2011/08/29 01:28:10 vapier Exp $
 
 # @ECLASS: mysql.eclass
 # @MAINTAINER:
@@ -619,7 +619,7 @@ configure_51() {
        | xargs -0 sed -r -n \
                -e '/^MYSQL_STORAGE_ENGINE/{
                        s~MYSQL_STORAGE_ENGINE\([[:space:]]*\[?([-_a-z0-9]+)\]?.*,~\1 ~g ;
-                       s~^([^ ]+).*~\1~gp; 
+                       s~^([^ ]+).*~\1~gp;
                }' \
        | tr -s '\n' ' '
        )"
index 9fc3dd7b68e199964b7431b8057245d8b47b4921..40b666c4e78b70082dfef999cebdd349cc7fa1e0 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-source-r2.eclass,v 1.15 2011/08/22 04:46:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-source-r2.eclass,v 1.16 2011/08/29 01:28:10 vapier Exp $
 
 # @ECLASS: php-ext-source-r2.eclass
 # @MAINTAINER:
@@ -125,7 +125,7 @@ php-ext-source-r2_phpize() {
        if [[ "${PHP_EXT_SKIP_PHPIZE}" != 'yes' ]] ; then
                # Create configure out of config.m4
                # I wish I could run this to solve #329071, but I cannot
-               #autotools_run_tool ${PHPIZE} 
+               #autotools_run_tool ${PHPIZE}
                ${PHPIZE}
                # force run of libtoolize and regeneration of related autotools
                # files (bug 220519)
@@ -249,11 +249,10 @@ php-ext-source-r2_createinifiles() {
                # Add the needed lines to the <ext>.ini files
                local file
                if [[ "${PHP_EXT_INI}" = "yes" ]] ; then
-                       for file in ${PHPINIFILELIST}; do 
+                       for file in ${PHPINIFILELIST}; do
                                php-ext-source-r2_addextension "${PHP_EXT_NAME}.so" "${file}"
                        done
                fi
-               
 
                # Symlink the <ext>.ini files from ext/ to ext-active/
                local inifile
@@ -275,7 +274,6 @@ php-ext-source-r2_createinifiles() {
                # Add support for installing PHP files into a version dependant directory
                PHP_EXT_SHARED_DIR="/usr/share/php/${PHP_EXT_NAME}"
        done
-       
 }
 
 php-ext-source-r2_addextension() {
index 1a82e4af1c96e54cd6a8a5ba6c31d4f0a3cc5d21..865e95550e32f9d7a6c4dfc95a56ef317d90ab1f 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.93 2011/08/22 04:46:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.94 2011/08/29 01:28:10 vapier Exp $
 
 # @ECLASS: qt4-build.eclass
 # @MAINTAINER:
@@ -17,8 +17,8 @@ inherit base eutils multilib toolchain-funcs flag-o-matic versionator
 MY_PV=${PV/_/-}
 if version_is_at_least 4.5.99999999; then
        MY_P=qt-everywhere-opensource-src-${MY_PV}
-       [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] && 
-               [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] && 
+       [[ ${CATEGORY}/${PN} != x11-libs/qt-xmlpatterns ]] &&
+               [[ ${CATEGORY}/${PN} != x11-themes/qgtkstyle ]] &&
                        IUSE="+exceptions"
 else
        MY_P=qt-x11-opensource-src-${MY_PV}
@@ -176,7 +176,7 @@ qt4-build_src_unpack() {
 qt4-build_src_prepare() {
        setqtenv
        cd "${S}"
-       
+
        # fix qt 4.7 regression that skips -fvisibility=hidden
        if version_is_at_least "4.7.0_beta1"; then
                sed -e "s/^gcc|g++)/*gcc|*g++)/" \
index df7a2ab1dc3d0cb63ccec65c69f55ed5ee1d1cba..e7ed9cda3b280956fa6d8c1752e68f9fc7e4e496 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/rox-0install.eclass,v 1.2 2007/12/04 21:26:55 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/rox-0install.eclass,v 1.3 2011/08/29 01:28:10 vapier Exp $
 
 # ROX-0install eclass Version 1
 
@@ -38,7 +38,7 @@ ICON_CACHE_DIR="/var/cache/0install.net/interface_icons"
 #
 # 0install_native_feed <src> <destpath>
 #  src   - The XML file we will edit, install, and point at
-#  path  - The path where the implementation will be installed 
+#  path  - The path where the implementation will be installed
 #          IE, the final edited xml will be at <path>/<basename of src>
 0install_native_feed() {
        local src=$1 path=$2
index 8e24eab617e1eecbb1559a556fec8c02d3833527..d3cbaac03bc68028b53e1bc4f779a8387ce9c140 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/rox.eclass,v 1.33 2010/04/01 17:03:47 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/rox.eclass,v 1.34 2011/08/29 01:28:10 vapier Exp $
 
 # ROX eclass Version 3
 
@@ -38,7 +38,7 @@
 #       APPMIME="a/foo-1;a/foo-2
 #                $(usemime three "a/three")
 #                text/plain"
-#    will be expanded to either "a/foo-1;a/foo-2;a/three;text/plain" if 
+#    will be expanded to either "a/foo-1;a/foo-2;a/three;text/plain" if
 #    USE=three or "a/foo-1;a/foo-2;text/plain" if not.
 #    WARNING: the 'usemime' function cannot be used in global scope. You should
 #    set APPMIME (or at least the USE-dependant parts) in your own src_install
index faf91c29bea7bd47f7de472f2de86f8c081fa661..a87b6e66cad386fabcfab4254bc47adf2f4dba7c 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/scons-utils.eclass,v 1.5 2011/04/15 20:08:13 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/scons-utils.eclass,v 1.6 2011/08/29 01:28:10 vapier Exp $
 
 # @ECLASS: scons-utils.eclass
 # @MAINTAINER:
@@ -13,7 +13,7 @@
 #
 # @CODE
 # inherit scons-utils toolchain-funcs
-# 
+#
 # src_compile() {
 #      tc-export CC CXX
 #      escons \
index a4bd338f617a30a9cf346a258b3e435131ed000e..a20d3e95198c42e03b6b1facac9c511f9d37691a 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/selinux-policy-2.eclass,v 1.10 2011/08/22 19:51:33 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/selinux-policy-2.eclass,v 1.11 2011/08/29 01:28:10 vapier Exp $
 
 # Eclass for installing SELinux policy, and optionally
 # reloading the reference-policy based modules.
@@ -103,10 +103,10 @@ selinux-policy-2_src_unpack() {
 # Patch the reference policy sources with our set of enhancements. Start with
 # the base patchbundle referred to by the ebuilds through the BASEPOL variable,
 # then apply the additional patches as offered by the ebuild.
-# 
+#
 # Next, extract only those files needed for this particular module (i.e. the .te
 # and .fc files for the given module in the MODS variable).
-# 
+#
 # Finally, prepare the build environments for each of the supported SELinux
 # types (such as targeted or strict), depending on the POLICY_TYPES variable
 # content.
index 86bc6d1d0a2fc5966bb84280f36fb8be521c9a88..8db78c316971cf38644f8785cb62d7b1f2a8e812 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/systemd.eclass,v 1.7 2011/07/28 13:47:50 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/systemd.eclass,v 1.8 2011/08/29 01:28:10 vapier Exp $
 
 # @ECLASS: systemd.eclass
 # @MAINTAINER:
@@ -13,7 +13,7 @@
 #
 # @CODE
 # inherit autotools-utils systemd
-# 
+#
 # src_configure() {
 #      local myeconfargs=(
 #              --enable-foo
index e06157d9653faf7bf48af403f43cf965580978df..11354a61a39e6dc4be02f6279f97c1098d0c55fd 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-common.eclass,v 1.15 2011/08/22 04:46:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-common.eclass,v 1.16 2011/08/29 01:28:10 vapier Exp $
 
 # @ECLASS: texlive-common.eclass
 # @MAINTAINER:
@@ -92,7 +92,7 @@ texlive-common_do_symlinks() {
 }
 
 # @FUNCTION: etexlinks
-# @USAGE: < file > 
+# @USAGE: < file >
 # @DESCRIPTION:
 # Mimic texlinks on a fmtutil format file
 #
@@ -110,10 +110,10 @@ etexlinks() {
 }
 
 # @FUNCTION: dobin_texmf_scripts
-# @USAGE: < file1 file2 ... > 
+# @USAGE: < file1 file2 ... >
 # @DESCRIPTION:
 # Symlinks a script from the texmf tree to /usr/bin. Requires permissions to be
-# correctly set for the file that it will point to. 
+# correctly set for the file that it will point to.
 
 dobin_texmf_scripts() {
        while [ $# -gt 0 ] ; do
index 6f889cc89f8d4feb74e75a76733ab489032b2062..fa741768bae1cf764b8dc6c463f46b7a14b972ca 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.59 2011/08/22 04:46:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.60 2011/08/29 01:28:10 vapier Exp $
 
 # @ECLASS: texlive-module.eclass
 # @MAINTAINER:
@@ -120,7 +120,7 @@ RELOC_TARGET=texmf-dist
 texlive-module_src_unpack() {
        if has "${EAPI:-0}" 0 1 2 ; then
                local i s
-               # Avoid installing world writable files 
+               # Avoid installing world writable files
                # Bugs #309997, #310039, #338881
                umask 022
                for i in ${A}
@@ -247,7 +247,7 @@ texlive-module_make_language_lua_lines() {
 # Generates the config files that are to be installed in /etc/texmf;
 # texmf-update script will take care of merging the different config files for
 # different packages in a single one used by the whole tex installation.
-# 
+#
 # Once the config files are generated, we build the format files using fmtutil
 # (provided by texlive-core). The compiled format files will be sent to
 # texmf-var/web2c, like fmtutil defaults to but with some trick to stay in the
index e1a51e85367a39ff865494789b2c43e307d4bba2..c2e51c5d168831f3441e2c8ebfd2e33187c046a0 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2005 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.73 2011/03/13 19:06:26 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.74 2011/08/29 01:28:10 vapier Exp $
 #
 # Author:
 #   Matthias Schwarzott <zzam@gentoo.org>
@@ -405,7 +405,7 @@ vdr-plugin_pkg_setup() {
        DVB_INCLUDE_DIR="/usr/include"
 
        TMP_LOCALE_DIR="${WORKDIR}/tmp-locale"
-       if has_version ">=media-video/vdr-1.7.17"; then   
+       if has_version ">=media-video/vdr-1.7.17"; then
                LOCDIR="/usr/share/locale"
        else
                LOCDIR="/usr/share/vdr/locale"
index 3ed8e0cb8521b7e23a5ba1697502f7f48db8865b..db7dd797a7e2ebea75a4417e6ca9e163c90e6d09 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2005 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.120 2010/09/09 11:19:51 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.121 2011/08/29 01:28:10 vapier Exp $
 #
 # @DEPRECATED
 # This eclass has been superseded by xorg-2
@@ -542,7 +542,7 @@ remove_font_metadata() {
 # @FUNCTION: install_driver_hwdata
 # @USAGE:
 # @DESCRIPTION:
-# Installs device-to-driver mappings for system-config-display and 
+# Installs device-to-driver mappings for system-config-display and
 # anything else that uses hwdata.
 install_driver_hwdata() {
        insinto /usr/share/hwdata/videoaliases