diff options
Diffstat (limited to 'sys-apps/evms/evms-1.1.0_pre4.ebuild')
-rw-r--r-- | sys-apps/evms/evms-1.1.0_pre4.ebuild | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/sys-apps/evms/evms-1.1.0_pre4.ebuild b/sys-apps/evms/evms-1.1.0_pre4.ebuild new file mode 100644 index 000000000000..4d7b86fcfcb7 --- /dev/null +++ b/sys-apps/evms/evms-1.1.0_pre4.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-apps/evms/evms-1.1.0_pre4.ebuild,v 1.1 2002/07/23 18:03:52 drobbins Exp $ + +# You need to have an evms-patched kernel source tree in /usr/src/linux +# to build this. Either take care of that yourself or do these steps : +# +# o get a vanilla 2.4.18 kernel and unpack it in /usr/src/linux +# o ebuild evms-1.0.1.ebuild clean unpack +# o cd /usr/src/linux +# o patch -p1 < /tmp/portage/evms-1.0.1/work/evms-1.0.1/kernel/evms-1.0.1-linux-2.4.patch +# o patch -p1 < /tmp/portage/evms-1.0.1/work/evms-1.0.1/kernel/evms-linux-2.4.18-common-files.patch +# o patch -p1 < /tmp/portage/evms-1.0.1/work/evms-1.0.1/kernel/linux-2.4.18-VFS-lock.patch +# +# The third patch isn't totally required. Now configure your kernel +# and select the evms features that you want. If you plan on using +# an evms volume on your /boot partition then you'll need to use the +# included patch against lilo-22.2 in the same directory as above. +# Please see their homepage for further information and details. + +DESCRIPTION="Utilities for the IBM Enterprise Volume Management System" +HOMEPAGE="http://www.sourceforge.net/projects/evms" +KEYWORDS="x86 -ppc" + +NEWP=evms-1.1.0-pre4 +LIBV=1.1.0 +S=${WORKDIR}/${NEWP} +SRC_URI="ftp://ftp.sourceforge.net/pub/sourceforge/${PN}/${NEWP}.tar.gz" + +#EVMS uses libuuid from e2fsprogs +DEPEND="virtual/glibc gtk? ( =x11-libs/gtk+-1* ) ncurses? ( sys-libs/ncurses ) sys-apps/e2fsprogs" +LICENSE="GPL-2" +SLOT="0" + +pkg_setup() { + if [ ! -f /usr/src/linux/include/linux/evms/evms.h ] + then + eerror "You dont appear to have an evms-patched kernel source" + eerror "tree in /usr/src/linux. Please fix that and try again." + return 1 + fi +} + +src_unpack() { + unpack ${A} + cd ${S} + #this next patch fixes some missing libuuid symbols: + patch -p1 < ${FILESDIR}/${NEWP}-gcc31.diff || die + #this next patch allows EVMS to recognize the new ReiserFS 3.6 versioning scheme + patch -p1 < ${FILESDIR}/${NEWP}-reiserfs-3.6.diff || die +} + +src_compile() { + local interfaces="CommandLine,LvmUtils,utilities" + use ncurses && interfaces="ncurses,${interfaces}" + use gtk && interfaces="evmsgui,${interfaces}" + + cd engine + ./configure \ + --prefix=/usr \ + --libdir=/lib \ + --sbindir=/sbin \ + --with-plugins=all \ + --mandir=/usr/share/man \ + --includedir=/usr/include \ + --with-kernel=/usr/src/linux \ + --with-interfaces=${interfaces} \ + --host=${CHOST} || die "bad ./configure" + + emake || die "compile problem" +} + +src_install() { + make -C engine DESTDIR=${D} install || die + dodoc CHANGES COPYING EVMS*.txt PLUGIN.IDS + + # no need for static libraries in /lib + dodir /usr/lib + mv ${D}/lib/*.a ${D}/usr/lib + + # make the non-existant symlinks. why doesn't their + # makefile do this? :/ + cd ${D}/lib + rm -f libdlist.so libevms.so + ln -sf libevms-${LIBV}.so libevms.so.1 + ln -sf libevms.so.1 libevms.so + ln -sf libdlist-1.0.so libdlist.so.1 + ln -sf libdlist.so.1 libdlist.so + + # the gtk+ frontend should live in /usr/sbin though.. + if [ -n "`use gtk`" ] + then + dodir /usr/sbin + mv ${D}/sbin/evmsgui ${D}/usr/sbin + fi + + exeinto /etc/init.d + newexe ${FILESDIR}/evms-init evms +} |