blob: 2c79df8a3c7f2140cecfade2b3dd53fd6c30ced9 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/ss/ss-1.37.ebuild,v 1.10 2005/06/30 02:27:48 kumba Exp $
inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="Subsystem command parsing library"
HOMEPAGE="http://e2fsprogs.sourceforge.net/"
SRC_URI="mirror://sourceforge/e2fsprogs/e2fsprogs-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ia64 ~m68k mips ppc ppc64 ~s390 ~sh sparc x86"
IUSE="nls"
RDEPEND=">=sys-libs/com_err-${PV}"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
S=${WORKDIR}/e2fsprogs-${PV}
src_unpack() {
unpack ${A}
cd "${S}"
# Patch to make the configure and sed scripts more friendly to,
# for example, the Estonian locale
epatch "${FILESDIR}"/${P}-sed-locale.patch
# Clean up makefile to suck less
epatch "${FILESDIR}"/${P}-makefile.patch
# Keep the package from doing silly things
export LDCONFIG=/bin/true
export CC=$(tc-getCC)
export STRIP=/bin/true
}
src_compile() {
econf \
--enable-elf-shlibs \
--with-ldopts="${LDFLAGS}" \
$(use_enable nls) \
|| die
emake -C lib/ss COMPILE_ET=compile_et || die "make ss failed"
}
src_test() {
make -C lib/ss check || die "make check failed"
}
src_install() {
dodir /usr/share/man/man1
make -C lib/ss DESTDIR="${D}" install || die
# Move shared libraries to /lib/, install static libraries to /usr/lib/,
# and install linker scripts to /usr/lib/.
dodir /$(get_libdir)
mv "${D}"/usr/$(get_libdir)/*.so* "${D}"/$(get_libdir)/
dolib.a lib/libss.a || die "dolib.a"
gen_usr_ldscript libss.so
}
|