diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2001-12-17 13:15:24 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2001-12-17 13:15:24 +0000 |
commit | ba891f205e4563476b130733e7db70d4454b9e01 (patch) | |
tree | 8484cc30b5fdc89e63d71b6ab6e0bcba18f36763 /sys-devel | |
parent | new version (diff) | |
download | gentoo-2-ba891f205e4563476b130733e7db70d4454b9e01.tar.gz gentoo-2-ba891f205e4563476b130733e7db70d4454b9e01.tar.bz2 gentoo-2-ba891f205e4563476b130733e7db70d4454b9e01.zip |
new version
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/gettext/files/digest-gettext-0.10.40 | 1 | ||||
-rw-r--r-- | sys-devel/gettext/gettext-0.10.40.ebuild | 55 |
2 files changed, 56 insertions, 0 deletions
diff --git a/sys-devel/gettext/files/digest-gettext-0.10.40 b/sys-devel/gettext/files/digest-gettext-0.10.40 new file mode 100644 index 000000000000..2b33797acc0b --- /dev/null +++ b/sys-devel/gettext/files/digest-gettext-0.10.40 @@ -0,0 +1 @@ +MD5 6a17767b47ffb45b4866cec9fb0a39b0 gettext-0.10.40.tar.gz 1359872 diff --git a/sys-devel/gettext/gettext-0.10.40.ebuild b/sys-devel/gettext/gettext-0.10.40.ebuild new file mode 100644 index 000000000000..98b2da9020b9 --- /dev/null +++ b/sys-devel/gettext/gettext-0.10.40.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: System Team <system@gentoo.org> +# Author: Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.10.40.ebuild,v 1.1 2001/12/17 13:15:24 azarah 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" + +if [ -z "`use build`" ] ; then +DEPEND="virtual/glibc" +fi + +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 +} + + |