diff options
author | 2005-07-11 15:08:07 +0000 | |
---|---|---|
committer | 2005-07-11 15:08:07 +0000 | |
commit | 5ae303cb909c12d4905541dd2b1352e4cedb12a5 (patch) | |
tree | e613101366ec6305dbb6b6150d8dc0cf461f8b4c /eclass/gems.eclass | |
parent | Update to support selinux USE flag (blame spb). (diff) | |
download | gentoo-2-5ae303cb909c12d4905541dd2b1352e4cedb12a5.tar.gz gentoo-2-5ae303cb909c12d4905541dd2b1352e4cedb12a5.tar.bz2 gentoo-2-5ae303cb909c12d4905541dd2b1352e4cedb12a5.zip |
QA: Apply whitespace checks from repoman to eclasses.
Diffstat (limited to 'eclass/gems.eclass')
-rw-r--r-- | eclass/gems.eclass | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/eclass/gems.eclass b/eclass/gems.eclass index 57690a2eab53..9ba6d31a3be1 100644 --- a/eclass/gems.eclass +++ b/eclass/gems.eclass @@ -1,12 +1,12 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gems.eclass,v 1.5 2005/07/06 20:23:20 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gems.eclass,v 1.6 2005/07/11 15:08:06 swegener Exp $ # # Author: Rob Cakebread <pythonhead@gentoo.org> # Current Maintainer: Rob Cakebread <pythonhead@gentoo.org> # # The gems eclass is designed to allow easier installation of -# gems-based ruby packagess and their incorporation into +# gems-based ruby packagess and their incorporation into # the Gentoo Linux system. # # - Features: @@ -49,8 +49,8 @@ gems_src_install() { dodir ${GEMSDIR} gem install ${GEM_SRC} -v ${PV} -l -i ${D}/${GEMSDIR} || die "gem install failed" - - if [ -d ${D}/${GEMSDIR}/bin ] ; then + + if [ -d ${D}/${GEMSDIR}/bin ] ; then exeinto /usr/bin for exe in ${D}/${GEMSDIR}/bin/* ; do doexe ${exe} @@ -62,6 +62,4 @@ gems_src_compile() { true } - EXPORT_FUNCTIONS src_unpack src_compile src_install - |