blob: eacac08f79037b4cc99256713381d775c033c272 (
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
|
# 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/sharutils/sharutils-4.2.1-r5.ebuild,v 1.2 2002/07/11 06:30:55 drobbins Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Tools to deal with shar archives"
SRC_URI="ftp://prep.ai.mit.edu/gnu/sharutils/${A}"
DEPEND="virtual/glibc sys-apps/texinfo
nls? ( >=sys-devel/gettext-0.10.35 )"
RDEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${WORKDIR}
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff
cd ${S}/po
mv nl.po nl.po.orig
sed -e 's/aangemaakt/aangemaakt\\n/' nl.po.orig > nl.po
mv pt.po pt.po.orig
sed -e 's/de %dk/de %dk\\n/' pt.po.orig > pt.po
}
src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
./configure --host=${CHOST} --prefix=/usr ${myconf} || die
make ${MAKEOPTS} localedir=/usr/share/locale || die
}
src_install() {
try make prefix=${D}/usr localedir=${D}/usr/share/locale infodir=${D}/usr/share/info install
doman doc/*.[15]
#Remove some strange locals
cd ${D}/usr/share/locale
for i in *.
do
rm -rf ${i}
done
rm -rf ${D}/usr/lib
cd ${S}
dodoc AUTHORS BACKLOG COPYING ChangeLog ChangeLog.OLD \
NEWS README README.OLD THANKS TODO
}
|