diff options
Diffstat (limited to 'sys-apps/console-tools/console-tools-0.2.3-r3.ebuild')
-rw-r--r-- | sys-apps/console-tools/console-tools-0.2.3-r3.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/sys-apps/console-tools/console-tools-0.2.3-r3.ebuild b/sys-apps/console-tools/console-tools-0.2.3-r3.ebuild deleted file mode 100644 index b73aec48e582..000000000000 --- a/sys-apps/console-tools/console-tools-0.2.3-r3.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/console-tools/console-tools-0.2.3-r3.ebuild,v 1.15 2003/06/21 21:19:39 drobbins Exp $ - -IUSE="nls" - -S=${WORKDIR}/${P} -DESCRIPTION="Console and font utilities" -SRC_URI="mirror://sourceforge/lct/${P}.tar.gz" -HOMEPAGE="http://lct.sourceforge.net/" -KEYWORDS="x86 amd64 mips" -SLOT="0" -LICENSE="GPL-2" - -DEPEND="virtual/glibc - nls? ( sys-devel/gettext )" -RDEPEND="virtual/glibc" - -src_unpack() { - unpack ${A} - cd ${S} - patch -p1 < ${FILESDIR}/${P}.patch - - patch -p0 < ${FILESDIR}/${P}-po-Makefile.in.in-gentoo.diff -} - -src_compile() { - local myconf - - [ "$DEBUG" ] && myconf="--enable-debugging" - [ -z "`use nls`" ] && myconf="${myconf} --disable-nls" - - econf --host=${CHOST} ${myconf} || die "econf died" - make ${MAKEOPTS} all || die "make died" -} - -src_install() { - # DESTDIR does not work correct - make DESTDIR=${D} install || die "make install died" - - dodoc BUGS COPYING* CREDITS ChangeLog NEWS README RELEASE TODO - docinto txt - dodoc doc/*.txt doc/README.* - docinto sgml - dodoc doc/*.sgml - docinto txt/contrib - dodoc doc/contrib/* - docinto txt/dvorak - dodoc doc/dvorak/* - docinto txt/file-formats - dodoc doc/file-formats/* - doman doc/man/*.[1-8] -} |