diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-08-26 21:13:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-08-26 21:13:25 +0000 |
commit | de32292fd4c751f99ff3aaf95842dbfd90d3321b (patch) | |
tree | be59d78b51dcec19583c068a116867858974e2e5 /sys-apps/kbd | |
parent | Fix false positive in depcomp2 caused by newer autoconf versions #181484. (diff) | |
download | historical-de32292fd4c751f99ff3aaf95842dbfd90d3321b.tar.gz historical-de32292fd4c751f99ff3aaf95842dbfd90d3321b.tar.bz2 historical-de32292fd4c751f99ff3aaf95842dbfd90d3321b.zip |
old
Diffstat (limited to 'sys-apps/kbd')
-rw-r--r-- | sys-apps/kbd/files/digest-kbd-1.13 | 3 | ||||
-rw-r--r-- | sys-apps/kbd/kbd-1.13.ebuild | 76 |
2 files changed, 0 insertions, 79 deletions
diff --git a/sys-apps/kbd/files/digest-kbd-1.13 b/sys-apps/kbd/files/digest-kbd-1.13 deleted file mode 100644 index de1d94db3669..000000000000 --- a/sys-apps/kbd/files/digest-kbd-1.13 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 2639fdfe2412b29cbf6936d7db91cee3 kbd-1.13.tar.bz2 667373 -RMD160 a3d34185d86b532f2cdc8d0834ad5459625b8538 kbd-1.13.tar.bz2 667373 -SHA256 c8a5be1a606d925c3229fa91d3e9dde4e0b61b2c755aff8e699b855f1a402bf6 kbd-1.13.tar.bz2 667373 diff --git a/sys-apps/kbd/kbd-1.13.ebuild b/sys-apps/kbd/kbd-1.13.ebuild deleted file mode 100644 index bb7a65fc8ebb..000000000000 --- a/sys-apps/kbd/kbd-1.13.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-1.13.ebuild,v 1.1 2007/06/28 18:14:11 vapier Exp $ - -inherit eutils toolchain-funcs - -DESCRIPTION="Keyboard and console utilities" -HOMEPAGE="http://freshmeat.net/projects/kbd/" -SRC_URI="ftp://ftp.altlinux.org/pub/people/legion/kbd/${P}.tar.bz2" - -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() { - unpack ${A} - 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 - - if tc-is-cross-compiler; then - tc-export CC - # Cross-compiling: don't run test programs - sed -i -e "s:&& ./conftest::" configure || \ - die "Could not do sed configure for cross-compile" - fi - - epatch "${FILESDIR}"/${P}-dont-use-error.patch - epatch "${FILESDIR}"/${PN}-1.12-configure-LANG.patch #128253 - - # fix unimap path issue caused by Debian patch - epatch "${FILESDIR}"/${PN}-1.12-unimap.patch - - # Provide a QWERTZ and QWERTY cz map #19010 - cp data/keymaps/i386/{qwerty,qwertz}/cz.map || die "cz qwerty" - epatch "${FILESDIR}"/${PN}-1.12-cz-qwerty-map.patch - - # Fix jp map to recognize Ctrl-[ as Escape #71870 - epatch "${FILESDIR}"/${PN}-1.12-jp-escape.patch - - # cross-compile fails for powerpc targets bug #133856 - epatch "${FILESDIR}"/${PN}-1.12-xcompile.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/ -} |