summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-02-21 04:12:54 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-02-21 04:12:54 +0000
commit031a410ceb4e97d192a2f4da00b8567ffb3f0c10 (patch)
tree0bea0cb57cb38d2b993ec50258e830406cf07e04 /app-i18n/unicon/unicon-3.0.4-r1.ebuild
parentremove net-misc/ossh, bug 251057 (diff)
downloadgentoo-2-031a410ceb4e97d192a2f4da00b8567ffb3f0c10.tar.gz
gentoo-2-031a410ceb4e97d192a2f4da00b8567ffb3f0c10.tar.bz2
gentoo-2-031a410ceb4e97d192a2f4da00b8567ffb3f0c10.zip
remove app-i18n/unicon, bug 250679
Diffstat (limited to 'app-i18n/unicon/unicon-3.0.4-r1.ebuild')
-rw-r--r--app-i18n/unicon/unicon-3.0.4-r1.ebuild65
1 files changed, 0 insertions, 65 deletions
diff --git a/app-i18n/unicon/unicon-3.0.4-r1.ebuild b/app-i18n/unicon/unicon-3.0.4-r1.ebuild
deleted file mode 100644
index 31d05207d5fb..000000000000
--- a/app-i18n/unicon/unicon-3.0.4-r1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/unicon/unicon-3.0.4-r1.ebuild,v 1.4 2007/07/22 09:43:52 calchan Exp $
-
-inherit eutils
-
-# TODO: Figure out how to build the kernel-modules.
-
-VD_P="${P}-20010924"
-VD_PATCH="vd_unicon-userland-20031122vd.patch"
-
-DESCRIPTION="CJK (Chinese/Japanese/Korean) console input, display system and input modules."
-HOMEPAGE="http://www.gnu.org/directory/UNICON.html
- http://vdr.jp/d/unicon.html"
-SRC_URI="http://vdlinux.sourceforge.jp/dists/${VD_P}.tar.gz
- http://vdlinux.sourceforge.jp/dists/${VD_PATCH}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-x86"
-IUSE=""
-
-RDEPEND="virtual/linux-sources
- dev-libs/newt
- dev-libs/pth
- x11-libs/libX11"
-
-DEPEND="${RDEPEND}
- x11-proto/xproto"
-
-src_unpack() {
- unpack ${VD_P}.tar.gz
- cd ${S}
- epatch ${DISTDIR}/${VD_PATCH}
- epatch ${FILESDIR}/${P}-gcc34.patch
-}
-
-src_compile() {
- econf || die "econf failed"
- emake -j1 || die "make failed"
- emake data || die "make data failed"
-}
-
-src_install() {
- make prefix=${D}/usr install || die "make install failed"
- make prefix=${D}/usr data-install || die "make data-install failed"
-
- dosed /usr/lib/unicon/load-unimap.sh
-
- newconfd ${FILESDIR}/unicon.confd unicon
- newinitd ${FILESDIR}/unicon.initd unicon
-}
-
-pkg_postinst() {
- ewarn
- ewarn "You need to patch your kernel in order to use this software."
- ewarn "The latest unicon patch can be found at"
- ewarn " ${HOMEPAGE}"
- ewarn "Please make sure you remove consolefont from boot runlevel"
- ewarn "and add unicon after editting /etc/conf.d/unicon, and the reboot."
- ewarn
- ewarn "# rc-update del consolefont boot"
- ewarn "# rc-update add unicon boot"
- ewarn
-}