summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-arch/sharutils/sharutils-4.2.1-r10.ebuild')
-rw-r--r--app-arch/sharutils/sharutils-4.2.1-r10.ebuild64
1 files changed, 0 insertions, 64 deletions
diff --git a/app-arch/sharutils/sharutils-4.2.1-r10.ebuild b/app-arch/sharutils/sharutils-4.2.1-r10.ebuild
deleted file mode 100644
index 8388c3e0d3cb..000000000000
--- a/app-arch/sharutils/sharutils-4.2.1-r10.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/sharutils-4.2.1-r10.ebuild,v 1.10 2005/01/01 11:57:58 eradicator Exp $
-
-inherit eutils
-
-DESCRIPTION="Tools to deal with shar archives"
-HOMEPAGE="http://www.gnu.org/software/sharutils/"
-SRC_URI="mirror://gentoo/${P}.tar.gz
- mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sparc x86"
-IUSE="nls"
-
-RDEPEND="sys-apps/texinfo
- nls? ( >=sys-devel/gettext-0.10.35 )"
-DEPEND="${RDEPEND}
- >=sys-apps/sed-4"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-gentoo.patch
- epatch ${FILESDIR}/${P}-buffer-check.patch #46998
- epatch ${FILESDIR}/${P}-buffer-limits.patch #65773
-
- cd ${S}/po
- cp ja_JP.EUC.po ja.po
- cp ja_JP.EUC.gmo ja.gmo
- sed -i \
- -e 's/aangemaakt/aangemaakt\\n/' nl.po \
- || die "sed nl.po failed"
- sed -i \
- -e 's/de %dk/de %dk\\n/' pt.po \
- || die "sed pt.po failed"
-}
-
-src_compile() {
- econf `use_enable nls` || die
- emake || die "emake failed"
-}
-
-src_install() {
- local x=
-
- einstall \
- localedir=${D}/usr/share/locale \
- || die
-
- doman doc/*.[15]
- # Remove some strange locales
- cd ${D}/usr/share/locale
- for x in *.
- do
- rm -rf ${x}
- done
- rm -rf ${D}/usr/lib
-
- cd ${S}
- dodoc AUTHORS BACKLOG ChangeLog ChangeLog.OLD \
- NEWS README README.OLD THANKS TODO
-}