blob: 7c371329709e38e5b3ef7a989c65dc880715c438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/evms/evms-2.5.5-r4.ebuild,v 1.1 2006/12/04 22:31:12 dev-zero Exp $
WANT_AUTOMAKE="latest"
WANT_AUTOCONF="latest"
inherit eutils flag-o-matic multilib toolchain-funcs autotools
DESCRIPTION="Utilities for the IBM Enterprise Volume Management System"
HOMEPAGE="http://www.sourceforge.net/projects/evms"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug gtk ncurses nls"
#EVMS uses libuuid from e2fsprogs
RDEPEND="virtual/libc
sys-fs/e2fsprogs
sys-fs/device-mapper
>=sys-apps/baselayout-1.9.4-r6
gtk? ( =x11-libs/gtk+-1*
=dev-libs/glib-1* )
ncurses? ( sys-libs/ncurses
=dev-libs/glib-2* )"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PV}/md_super_fix.patch"
epatch "${FILESDIR}/${PV}/ntfs_unmkfs.patch"
epatch "${FILESDIR}/${PV}/raid5_degrade_fix.patch"
epatch "${FILESDIR}/${PV}/raid5_remove_spare_fix.patch"
epatch "${FILESDIR}/${PV}/raid5_remove_spare_fix_2.patch"
epatch "${FILESDIR}/${PV}/raid5_algorithm.patch"
epatch "${FILESDIR}/${PV}/cli_reload_options.patch"
epatch "${FILESDIR}/${PV}/cli_query_segfault.patch"
epatch "${FILESDIR}/${PV}/get_geometry.patch"
epatch "${FILESDIR}/${PV}/BaseName.patch"
epatch "${FILESDIR}/evms-2.5.5-as-needed.patch"
epatch "${FILESDIR}/evms-2.5.5-glib_dep.patch"
epatch "${FILESDIR}/evms-2.5.5-ocfs2.patch"
eautoreconf
}
src_compile() {
# Bug #54856
# filter-flags "-fstack-protector"
replace-flags -O3 -O2
replace-flags -Os -O2
local excluded_interfaces=""
use ncurses || excluded_interfaces="--disable-text-mode"
use gtk || excluded_interfaces="${excluded_interfaces} --disable-gui"
# We have to link statically against glib because evmsn resides in /sbin
econf \
--libdir=/$(get_libdir) \
--sbindir=/sbin \
--includedir=/usr/include \
--with-static-glib \
$(use_with debug) \
$(use_enable nls) \
${excluded_interfaces} || die "Failed configure"
emake || die "Failed emake"
}
src_install() {
emake DESTDIR="${D}" install || die "Make install died"
dodoc ChangeLog INSTALL* PLUGIN.IDS README TERMINOLOGY doc/linuxrc
insinto /$(get_libdir)/rcscripts/addons
newins "${FILESDIR}/evms2-start.sh" evms-start.sh || die "rcscript addon failed"
# install the sample configuration into the doc dir
dodoc "${D}/etc/evms.conf.sample"
rm -f "${D}/etc/evms.conf.sample"
# the kernel patches may come handy for people compiling their own kernel
docinto kernel/2.4
dodoc kernel/2.4/*
docinto kernel/2.6
dodoc kernel/2.6/*
# move static libraries to /usr/lib
dodir /usr/$(get_libdir)
mv -f ${D}/$(get_libdir)/*.a "${D}/usr/$(get_libdir)"
# Create linker scripts for dynamic libs in /lib, else gcc
# links to the static ones in /usr/lib first. Bug #4411.
for x in "${D}/usr/$(get_libdir)"/*.a ; do
if [ -f ${x} ] ; then
local lib="${x##*/}"
gen_usr_ldscript ${lib/\.a/\.so}
fi
done
# the gtk+ frontend should live in /usr/sbin
if use gtk ; then
dodir /usr/sbin
mv -f ${D}/sbin/evmsgui ${D}/usr/sbin
fi
# Needed for bug #51252
dosym libevms-2.5.so.0.0 /$(get_libdir)/libevms-2.5.so.0
}
|