From: Mike Frysinger Date: Thu, 16 Mar 2006 03:31:50 +0000 (+0000) Subject: old X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=876c5561a163a481978072aacd928f3b0b7fcc8e;p=gentoo.git old --- diff --git a/sys-apps/kbd/files/digest-kbd-1.12-r3 b/sys-apps/kbd/files/digest-kbd-1.12-r3 deleted file mode 100644 index 97dbb48e0136..000000000000 --- a/sys-apps/kbd/files/digest-kbd-1.12-r3 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 7892c7010512a9bc6697a295c921da25 kbd-1.12.tar.gz 884827 -MD5 c3bc810b784880c9bb5a6fe80d95a696 svorakln.tar.gz 3030 diff --git a/sys-apps/kbd/files/digest-kbd-1.12-r4 b/sys-apps/kbd/files/digest-kbd-1.12-r4 deleted file mode 100644 index 97dbb48e0136..000000000000 --- a/sys-apps/kbd/files/digest-kbd-1.12-r4 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 7892c7010512a9bc6697a295c921da25 kbd-1.12.tar.gz 884827 -MD5 c3bc810b784880c9bb5a6fe80d95a696 svorakln.tar.gz 3030 diff --git a/sys-apps/kbd/kbd-1.12-r3.ebuild b/sys-apps/kbd/kbd-1.12-r3.ebuild deleted file mode 100644 index 3643f5420377..000000000000 --- a/sys-apps/kbd/kbd-1.12-r3.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-1.12-r3.ebuild,v 1.6 2005/05/31 16:55:29 swegener Exp $ - -inherit eutils toolchain-funcs - -DESCRIPTION="Keyboard and console utilities" -HOMEPAGE="http://freshmeat.net/projects/kbd/" -SRC_URI="ftp://ftp.cwi.nl/pub/aeb/kbd/${P}.tar.gz - ftp://ftp.win.tue.nl/pub/home/aeb/linux-local/utils/kbd/${P}.tar.gz - nls? ( http://www.users.one.se/liket/svorak/svorakln.tar.gz )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sparc x86" -IUSE="nls" - -DEPEND="virtual/libc - nls? ( sys-devel/gettext )" - -src_unpack() { - local a - - # Workaround problem on JFS filesystems, see bug 42859 - for a in ${A} ; do - echo ">>> Unpacking ${a} to ${WORKDIR}" - gzip -dc ${DISTDIR}/${a} | tar xf - - done - - cd ${S} - sed -i \ - -e "/^CFLAGS/ s:-O2:${CFLAGS}:g" \ - -e "/^LDFLAGS/ s:-s:${LDFLAGS}:" \ - -e "s:install -s:install:" \ - src/Makefile.in \ - openvt/Makefile - - # Other patches from RH - epatch ${FILESDIR}/${PN}-1.08-terminal.patch - - # Fixes a problem where loadkeys matches dvorak the dir, and not the - # .map inside - epatch ${FILESDIR}/${P}-find-map-fix.patch - - # Sparc have not yet fixed struct kbd_rate to use 'period' and not 'rate' - epatch ${FILESDIR}/${P}-kbd_repeat-v2.patch - - # misc fixes from debian - epatch ${FILESDIR}/${P}-debian.patch - - # Provide a QWERTZ and QWERTY cz map #19010 - cp data/keymaps/i386/{qwerty,qwertz}/cz.map || die "cz qwerty" - epatch ${FILESDIR}/${P}-cz-qwerty-map.patch -} - -src_compile() { - local myconf= - # Non-standard configure script; --disable-nls to - # disable NLS, nothing to enable it. - use nls || myconf="--disable-nls" - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --datadir=/usr/share \ - ${myconf} || die - - emake CC="$(tc-getCC)" || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die - mv ${D}/usr/bin/setfont ${D}/bin/ - dosym /bin/setfont /usr/bin/setfont - - dodoc CHANGES CREDITS README - dodir /usr/share/doc/${PF}/html - cp -dR doc/* ${D}/usr/share/doc/${PF}/html/ - - if use nls ; then - cd ${WORKDIR}/mnt/e/SvorakLN - insinto /usr/share/keymaps/i386/dvorak/ - doins .svorakmap svorak.map.gz - dodoc Svorak.txt - fi -} diff --git a/sys-apps/kbd/kbd-1.12-r4.ebuild b/sys-apps/kbd/kbd-1.12-r4.ebuild deleted file mode 100644 index 485e26b0aeca..000000000000 --- a/sys-apps/kbd/kbd-1.12-r4.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-1.12-r4.ebuild,v 1.5 2005/05/31 16:55:29 swegener Exp $ - -inherit eutils toolchain-funcs - -DESCRIPTION="Keyboard and console utilities" -HOMEPAGE="http://freshmeat.net/projects/kbd/" -SRC_URI="ftp://ftp.cwi.nl/pub/aeb/kbd/${P}.tar.gz - ftp://ftp.win.tue.nl/pub/home/aeb/linux-local/utils/kbd/${P}.tar.gz - nls? ( http://www.users.one.se/liket/svorak/svorakln.tar.gz )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86" -IUSE="nls" - -RDEPEND="" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -src_unpack() { - local a - # Workaround problem on JFS filesystems, see bug 42859 - for a in ${A} ; do - echo ">>> Unpacking ${a} to ${WORKDIR}" - gzip -dc "${DISTDIR}"/${a} | tar xf - - assert - done - - cd "${S}" - sed -i \ - -e "/^CFLAGS/ s:-O2:${CFLAGS}:g" \ - -e "/^LDFLAGS/ s:-s:${LDFLAGS}:" \ - -e "s:install -s:install:" \ - src/Makefile.in \ - openvt/Makefile - - # Other patches from RH - epatch "${FILESDIR}"/${PN}-1.08-terminal.patch - - # Fixes a problem where loadkeys matches dvorak the dir, and not the - # .map inside - epatch "${FILESDIR}"/${P}-find-map-fix.patch - - # Sparc have not yet fixed struct kbd_rate to use 'period' and not 'rate' - epatch "${FILESDIR}"/${P}-kbd_repeat-v2.patch - - # misc fixes from debian - epatch "${FILESDIR}"/${P}-debian.patch - - # Provide a QWERTZ and QWERTY cz map #19010 - cp data/keymaps/i386/{qwerty,qwertz}/cz.map || die "cz qwerty" - epatch "${FILESDIR}"/${P}-cz-qwerty-map.patch - - # The italian keymap is missing euro support #75970 - epatch "${FILESDIR}"/${P}-it-euro-map.patch -} - -src_compile() { - local myconf= - # Non-standard configure script; --disable-nls to - # disable NLS, nothing to enable it. - use nls || myconf="--disable-nls" - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --datadir=/usr/share \ - ${myconf} || die - - emake CC="$(tc-getCC)" || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die - mv "${D}"/usr/bin/setfont "${D}"/bin/ - dosym /bin/setfont /usr/bin/setfont - - dodoc CHANGES CREDITS README - dodir /usr/share/doc/${PF}/html - cp -dR doc/* "${D}"/usr/share/doc/${PF}/html/ - - if use nls ; then - cd ${WORKDIR}/mnt/e/SvorakLN - insinto /usr/share/keymaps/i386/dvorak/ - doins .svorakmap svorak.map.gz - dodoc Svorak.txt - fi -}