diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-06-19 01:12:56 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-06-19 01:12:56 +0000 |
commit | 3c92c0f3cb4dd3d3e3e28354f4cc19b27c86e3eb (patch) | |
tree | 512f03d11f8f649cb9527c4163bbb9769405d54f /sys-libs/gpm | |
parent | Extend GCC 4.3 patch to also fix testsuite. (diff) | |
download | gentoo-2-3c92c0f3cb4dd3d3e3e28354f4cc19b27c86e3eb.tar.gz gentoo-2-3c92c0f3cb4dd3d3e3e28354f4cc19b27c86e3eb.tar.bz2 gentoo-2-3c92c0f3cb4dd3d3e3e28354f4cc19b27c86e3eb.zip |
old
Diffstat (limited to 'sys-libs/gpm')
-rw-r--r-- | sys-libs/gpm/gpm-1.20.3.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/sys-libs/gpm/gpm-1.20.3.ebuild b/sys-libs/gpm/gpm-1.20.3.ebuild deleted file mode 100644 index 5d4c44f9f658..000000000000 --- a/sys-libs/gpm/gpm-1.20.3.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gpm/gpm-1.20.3.ebuild,v 1.4 2008/04/21 07:11:08 ulm Exp $ - -# emacs support disabled due to Bug 99533 - -inherit eutils toolchain-funcs - -DESCRIPTION="Console-based mouse driver" -HOMEPAGE="http://linux.schottelius.org/gpm/" -SRC_URI="http://linux.schottelius.org/gpm/archives/${P}.tar.lzma" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="selinux" - -DEPEND="sys-libs/ncurses - app-arch/lzma-utils" -RDEPEND="selinux? ( sec-policy/selinux-gpm )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-no-emacs-dir.patch -} - -src_compile() { - econf \ - --libdir=/$(get_libdir) \ - --sysconfdir=/etc/gpm \ - || die "econf failed" - - # workaround broken release - find -name '*.o' | xargs rm - emake clean || die - emake -j1 -C doc || die - - emake EMACS=: || die "emake failed" -} - -src_install() { - emake install DESTDIR="${D}" EMACS=: ELISP="" || die "make install failed" - - dosym libgpm.so.1.20.0 /$(get_libdir)/libgpm.so.1 - dosym libgpm.so.1 /$(get_libdir)/libgpm.so - dodir /usr/$(get_libdir) - mv "${D}"/$(get_libdir)/libgpm.a "${D}"/usr/$(get_libdir)/ || die - gen_usr_ldscript libgpm.so - - insinto /etc/gpm - doins conf/gpm-*.conf - - dodoc BUGS Changes README TODO - dodoc doc/Announce doc/FAQ doc/README* - - newinitd "${FILESDIR}"/gpm.rc6 gpm - newconfd "${FILESDIR}"/gpm.conf.d gpm -} |