blob: 6506c4d42d91cc3484fa1368b8f787275f8ec736 (
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
|
DESCRIPTION = "GPM (General Purpose Mouse) is a mouse server \
for the console and xterm, with sample clients included \
(emacs, etc)."
SECTION = "console/utils"
LICENSE = "GPL"
DEPENDS = "ncurses"
PR = "r3"
PARALLEL_MAKE = ""
SRC_URI = "ftp://arcana.linux.it/pub/gpm/gpm-${PV}.tar.bz2 \
file://configure.patch;patch=1 \
file://no-docs.patch;patch=1 \
file://gpm-OPEN_MAX.patch;patch=1 \
file://init"
inherit autotools update-rc.d
INITSCRIPT_NAME = "gpm"
INITSCRIPT_PARAMS = "defaults"
export LIBS = "-lm"
do_configure_prepend () {
cp aclocal.m4 acinclude.m4
}
do_stage () {
install -m 0644 src/headers/gpm.h ${STAGING_INCDIR}/
oe_libinstall -so -a -C src/lib libgpm ${STAGING_LIBDIR}
}
do_install () {
oe_runmake 'ROOT=${D}' install
install -d ${D}/${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/gpm
cd ${D}${libdir} && ln -sf libgpm.so.1.19.0 libgpm.so.1
}
SRC_URI[md5sum] = "2c63e827d755527950d9d13fe3d87692"
SRC_URI[sha256sum] = "11fabe7f27a205ff1ea6aee23e1dc2bb2dc5dbfc45ff0320fca0cd559806a936"
|