summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2001-08-28 00:52:40 +0000
committerDaniel Robbins <drobbins@gentoo.org>2001-08-28 00:52:40 +0000
commit8399e8b6c49efc1972cef06c90691ff88b328a51 (patch)
tree21a4278d834257bef49933b2f85008a12a98f51d /sys-devel/gettext
parentfixes from slackware (diff)
downloadgentoo-2-8399e8b6c49efc1972cef06c90691ff88b328a51.tar.gz
gentoo-2-8399e8b6c49efc1972cef06c90691ff88b328a51.tar.bz2
gentoo-2-8399e8b6c49efc1972cef06c90691ff88b328a51.zip
zappo and digest
Diffstat (limited to 'sys-devel/gettext')
-rw-r--r--sys-devel/gettext/gettext-0.10.39.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/sys-devel/gettext/gettext-0.10.39.ebuild b/sys-devel/gettext/gettext-0.10.39.ebuild
deleted file mode 100644
index fa6ee173c682..000000000000
--- a/sys-devel/gettext/gettext-0.10.39.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# 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.39.ebuild,v 1.2 2001/08/22 20:40:09 drobbins Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="GNU locale utilities"
-SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/gettext/${P}.tar.gz ftp://prep.ai.mit.edu/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
- #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
- 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
-}
-
-