diff options
author | 2003-06-04 06:52:16 +0000 | |
---|---|---|
committer | 2003-06-04 06:52:16 +0000 | |
commit | 7f5b74593981f72a155c0f1e64513156fd4dc329 (patch) | |
tree | 0005c38b122eb82d1ee102c49411efebe717a516 /sys-libs/gpm/gpm-1.20.1.ebuild | |
parent | Major update of gpm ebuild and included patches (diff) | |
download | gentoo-2-7f5b74593981f72a155c0f1e64513156fd4dc329.tar.gz gentoo-2-7f5b74593981f72a155c0f1e64513156fd4dc329.tar.bz2 gentoo-2-7f5b74593981f72a155c0f1e64513156fd4dc329.zip |
Major update of gpm ebuild and included patches
Diffstat (limited to 'sys-libs/gpm/gpm-1.20.1.ebuild')
-rw-r--r-- | sys-libs/gpm/gpm-1.20.1.ebuild | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/sys-libs/gpm/gpm-1.20.1.ebuild b/sys-libs/gpm/gpm-1.20.1.ebuild new file mode 100644 index 000000000000..b4d9a2a91a7e --- /dev/null +++ b/sys-libs/gpm/gpm-1.20.1.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + +IUSE="" +# Please use this variable to keep patch names sane for our patches! +PATCH_VER="1.0" + +inherit eutils + +S="${WORKDIR}/${P}" +DESCRIPTION="Console-based mouse driver" +# Future patch's for gpm should keep this format. This should help others +# maintain the ebuild and keep patch's simple and and easy to read. +SRC_PATH="ftp://arcana.linux.it/pub/gpm/${P}.tar.bz2" +GPM_PATCHES="mirror://gentoo/${P}-patches-${PATCH_VER}.tar.bz2" + +SRC_URI="${SRC_PATH} + ${GPM_PATCHES}" + + +HOMEPAGE="ftp://arcana.linux.it/pub/gpm/" + +DEPEND=">=sys-libs/ncurses-5.2 + sys-devel/autoconf" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa arm" + +PATCHDIR=${WORKDIR}/patches + +src_unpack() { + unpack ${A} + unpack ${P}-patches-${PATCH_VER}.tar.bz2 + + # This little hack turns off EMACS byte compilation. We really + # don't want this thing auto-detecting emacs. + cd ${S}; epatch ${WORKDIR}/patches + + # Add missing 'mkinstalldirs' script + cp -f /usr/share/automake/mkinstalldirs ${S} +} + +src_compile() { + econf --sysconfdir=/etc/gpm || die + + # Do not create gpmdoc.ps, as it cause build to fail with our version + # of tetex (it is already there, so this will only create missing + # manpages) + cp doc/Makefile doc/Makefile.orig + sed -e 's:all\: $(srcdir)/gpmdoc.ps:all\::' \ + doc/Makefile.orig > doc/Makefile + + MAKEOPTS="-j1" emake || die +} + +src_install() { + einstall + + chmod 755 ${D}/usr/lib/* + # Fix missing /usr/lib/libgpm.so.1 + preplib + + dodoc BUGS COPYING ChangeLog Changes MANIFEST README TODO + dodoc doc/Announce doc/FAQ doc/README* + doinfo doc/gpm.info + + insinto /etc/gpm + doins conf/gpm-*.conf + + exeinto /etc/init.d + newexe ${FILESDIR}/gpm.rc6 gpm + insinto /etc/conf.d + newins ${FILESDIR}/gpm.conf.d gpm +} + |