diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2005-11-17 17:43:20 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2005-11-17 17:43:20 +0000 |
commit | 72a1875d92b62e5cb205cb966553538e5da145e1 (patch) | |
tree | efa60f9fe9ecc6abfc0beda3bdf76feaa650cd79 /dev-python | |
parent | Fixed digests (diff) | |
download | overlay-72a1875d92b62e5cb205cb966553538e5da145e1.tar.gz overlay-72a1875d92b62e5cb205cb966553538e5da145e1.tar.bz2 overlay-72a1875d92b62e5cb205cb966553538e5da145e1.zip |
Revert changes
svn path=/; revision=540
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/python-fuse/python-fuse-2.3.ebuild | 45 |
1 files changed, 2 insertions, 43 deletions
diff --git a/dev-python/python-fuse/python-fuse-2.3.ebuild b/dev-python/python-fuse/python-fuse-2.3.ebuild index a635bd1..644d0f5 100644 --- a/dev-python/python-fuse/python-fuse-2.3.ebuild +++ b/dev-python/python-fuse/python-fuse-2.3.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -inherit distutils linux-info eutils +inherit distutils DESCRIPTION="Python bindings for FUSE (Filesystem in Userspace)" HOMEPAGE="http://fuse.sourceforge.net/" @@ -13,51 +13,10 @@ SLOT="0" KEYWORDS="~x86" IUSE="" -DEPEND="|| (sys-fs/fuse >=virtual/linux-sources-2.6.14)" +DEPEND="sys-fs/fuse" S=${WORKDIR}/${PN} -PATCH_SETUP="no" - -pkg_setup() { - - linux-info_pkg_setup - - CURRENT=$(($((${KV_MAJOR}*10000))+$((${KV_MINOR}*100))+$((${KV_PATCH})))) - - if [ ${CURRENT} -ge 20614 ]; then - - ebegin "Checking for kernel-${CURRENT} FUSE support" - linux_chkconfig_present FUSE_FS - eend $? - - if [[ $? -ne 0 ]] ; then - ewarn "python-fuse requires FUSE support!" - ewarn "Please enable FUSE support in your kernel config, found at:" - ewarn "(for 2.6 kernels)" - ewarn - ewarn " Device Drivers" - ewarn " File systems" - ewarn " <*> Filesystem in Userspace support" - ewarn - ewarn "and recompile your kernel if you want this package to work with this kernel" - edie - fi - - PATCH_SETUP="yes" - - fi -} - -src_unpack() { - - unpack ${A} && cd ${S} - - if [ ${PATCH_SETUP}=="yes" ]; then - epatch ${FILESDIR}/kernel-fuse.patch - fi -} - src_install() { distutils_src_install |