blob: bfb8982b46ebed536e277a9642a9bb1b901e1260 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# emacs support disabled due to #99533 #335900
EAPI=5
inherit eutils systemd toolchain-funcs autotools multilib-minimal
DESCRIPTION="Console-based mouse driver"
HOMEPAGE="http://www.nico.schottelius.org/software/gpm/"
SRC_URI="http://www.nico.schottelius.org/software/${PN}/archives/${P}.tar.lzma
mirror://gentoo/${P}-docs.patch.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE="selinux static-libs"
RDEPEND=">=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}]
selinux? ( sec-policy/selinux-gpm )
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20130224-r12
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
DEPEND=">=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}]
app-arch/xz-utils
sys-apps/texinfo
virtual/yacc"
src_prepare() {
epatch "${FILESDIR}"/${P}-sysmacros.patch
# Hack up the docs until we get this sorted upstream.
# https://github.com/telmich/gpm/issues/8
epatch "${WORKDIR}"/${P}-docs.patch
touch -r . doc/* || die
# fix ABI values
sed -i \
-e '/^abi_lev=/s:=.*:=1:' \
-e '/^abi_age=/s:=.*:=20:' \
configure.ac.footer || die
# Rebuild autotools since release doesn't include them.
# Should be fixed with the next release though.
# https://github.com/telmich/gpm/pull/15
sed -i -e '/ACLOCAL/,$d' autogen.sh || die
./autogen.sh
eautoreconf
# Out-of-tree builds are broken.
# https://github.com/telmich/gpm/issues/16
multilib_copy_sources
}
multilib_src_configure() {
econf \
--sysconfdir=/etc/gpm \
$(use_enable static-libs static) \
emacs=/bin/false
}
_emake() {
emake \
EMACS=: ELISP="" \
$(multilib_is_native_abi || echo "PROG= ") \
"$@"
}
multilib_src_compile() {
_emake
}
multilib_src_test() {
_emake check
}
multilib_src_install() {
_emake DESTDIR="${D}" install
dosym libgpm.so.1 /usr/$(get_libdir)/libgpm.so
gen_usr_ldscript -a gpm
}
multilib_src_install_all() {
insinto /etc/gpm
doins conf/gpm-*.conf
dodoc README TODO
dodoc doc/Announce doc/FAQ doc/README*
newinitd "${FILESDIR}"/gpm.rc6-2 gpm
newconfd "${FILESDIR}"/gpm.conf.d gpm
systemd_dounit "${FILESDIR}"/gpm.service
}
|