blob: 29c7831ea0fe0178f2214e0aa28cd125de44deee (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.11.1.ebuild,v 1.6 2002/07/16 05:51:11 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GNU locale utilities"
SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/gettext/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/gettext/gettext.html"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
src_unpack() {
unpack ${A}
cd ${S}/misc
cp Makefile.in Makefile.in.orig
#This fix stops gettext from invoking emacs to install the po mode
sed -e '185,187d' Makefile.in.orig > Makefile.in || die
#Eventually, installation of the po mode should be performed in pkg_postinst()
}
src_compile() {
local myconf
if [ -z "`use nls`" ]
then
myconf="--disable-nls"
fi
./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --with-included-gettext --disable-shared --host=${CHOST} ${myconf} || die
emake || die
}
src_install() {
make prefix=${D}/usr infodir=${D}/usr/share/info mandir=${D}/usr/share/man lispdir=${D}/usr/share/emacs/site-lisp install || die
dodoc AUTHORS BUGS COPYING ChangeLog DISCLAIM NEWS README* THANKS TODO
#glibc includes gettext; this isn't needed anymore
rm -rf ${D}/usr/lib/*
#again, installed by glibc
rm -rf ${D}/usr/share/locale/locale.alias
if [ -d ${D}/usr/doc/gettext ]
then
mv ${D}/usr/doc/gettext ${D}/usr/share/doc/${PF}/html
rm -rf ${D}/usr/doc
fi
exeopts -m0755
exeinto /usr/bin
doexe misc/gettextize
}
|