mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
53 lines
2.5 KiB
BlitzBasic
53 lines
2.5 KiB
BlitzBasic
DESCRIPTION = "GPM (General Purpose Mouse) is a mouse server \
|
|
for the console and xterm, with sample clients included \
|
|
(emacs, etc)."
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://gpm2/core/main.c;endline=19;md5=66d3c205c4e7ee5704b2ee351dfed72f"
|
|
|
|
PR = "r2"
|
|
|
|
DEPENDS = "ncurses"
|
|
|
|
SRC_URI = "ftp://arcana.linux.it/pub/gpm/gpm-${PV}.tar.bz2 \
|
|
file://no-docs.patch \
|
|
file://processcreds.patch \
|
|
file://eglibc-2.17.patch \
|
|
file://init"
|
|
|
|
inherit autotools-brokensep update-rc.d
|
|
|
|
INITSCRIPT_NAME = "gpm"
|
|
INITSCRIPT_PARAMS = "defaults"
|
|
|
|
#export LIBS = "-lm"
|
|
|
|
# all fields are /* FIXME: gpm 1.99.13 */
|
|
# gpm-1.99.7/src/lib/libhigh.c:171:43: error: parameter 'clientdata' set but not used [-Werror=unused-but-set-parameter]
|
|
# gpm-1.99.7/src/lib/report-lib.c:28:21: error: parameter 'line' set but not used [-Werror=unused-but-set-parameter]
|
|
# gpm-1.99.7/src/lib/report-lib.c:28:33: error: parameter 'file' set but not used [-Werror=unused-but-set-parameter]
|
|
# gpm-1.99.7/src/drivers/empty/i.c:26:23: error: parameter 'fd' set but not used [-Werror=unused-but-set-parameter]
|
|
# gpm-1.99.7/src/drivers/empty/i.c:26:42: error: parameter 'flags' set but not used [-Werror=unused-but-set-parameter]
|
|
# gpm-1.99.7/src/drivers/etouch/i.c:34:43: error: parameter 'flags' set but not used [-Werror=unused-but-set-parameter]
|
|
# gpm-1.99.7/src/drivers/msc/r.c:32:12: error: variable 'dy' set but not used [-Werror=unused-but-set-variable]
|
|
# gpm-1.99.7/src/drivers/msc/r.c:32:8: error: variable 'dx' set but not used [-Werror=unused-but-set-variable]
|
|
# cc1: all warnings being treated as errors
|
|
CFLAGS += "-Wno-extra -Wno-error=unused-but-set-parameter -Wno-error=unused-but-set-variable"
|
|
|
|
# twiddler is WIP in 1.99.7 and probably not worth fixing (a lot of changes in gpm-2-dev after 1.99.7
|
|
# gpm-1.99.7/src/drivers/twid/twiddler.c:503:14: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
|
|
# /gpm-1.99.7/src/mice.c:221:5: error: (near initialization for 'mice[32].init') [-Werror]
|
|
CFLAGS += "-Wno-error=int-to-pointer-cast -Wno-error"
|
|
|
|
do_install () {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
install -m 0644 src/headers/gpm.h ${D}${includedir}
|
|
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] = "9fdddf5f53cb11d40bb2bb671d3ac544"
|
|
SRC_URI[sha256sum] = "6071378b24494e36ca3ef6377606e7e565040413c86704753a162d2180af32ee"
|
|
|
|
FILES_${PN} += "${datadir}/emacs"
|