diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2005-04-13 18:42:33 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2005-04-13 18:42:33 +0000 |
commit | 939f6884ef8b48ae6c3f4425b55725af67f003fc (patch) | |
tree | 9c2d4d9e11c3ed60eb090b8c9ecef2b56c8428cb /sys-fs/siefs/siefs-0.5.ebuild | |
parent | added ~amd64 to KEYWORDS, fixes #88950 (diff) | |
download | gentoo-2-939f6884ef8b48ae6c3f4425b55725af67f003fc.tar.gz gentoo-2-939f6884ef8b48ae6c3f4425b55725af67f003fc.tar.bz2 gentoo-2-939f6884ef8b48ae6c3f4425b55725af67f003fc.zip |
Version bump thanks to Robert Führicht <the_master_of_disaster@gmx.at> in bug 88873 and pylon for testing, removing old ebuild
(Portage version: 1.585-cvs)
Diffstat (limited to 'sys-fs/siefs/siefs-0.5.ebuild')
-rw-r--r-- | sys-fs/siefs/siefs-0.5.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sys-fs/siefs/siefs-0.5.ebuild b/sys-fs/siefs/siefs-0.5.ebuild new file mode 100644 index 000000000000..34b5ae777223 --- /dev/null +++ b/sys-fs/siefs/siefs-0.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/siefs/siefs-0.5.ebuild,v 1.1 2005/04/13 18:42:33 genstef Exp $ + +DESCRIPTION="Siemens FS" +HOMEPAGE="http://chaos.allsiemens.com/siefs" +SRC_URI="http://chaos.allsiemens.com/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="" + +DEPEND="sys-fs/fuse" + +src_unpack() { + unpack ${A} + cd ${S}/siefs + sed -i "s:-rm -f /sbin/mount.siefs:-mkdir \$(DESTDIR)/sbin/:" Makefile.in + sed -i "s:-ln -s \$(DESTDIR)\$(bindir)/siefs /sbin/mount.siefs:-ln -s ..\$(bindir)/siefs \$(DESTDIR)/sbin/mount.siefs:" Makefile.in +} + +src_install() { + make DESTDIR=${D} install || die "make install failed" + dodoc README AUTHORS +} |