mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
scap: dropped
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2932 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -1,9 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Upload Screenshot
|
|
||||||
Comment=Upload a screenshot to http://handhelds.org/scap
|
|
||||||
Exec=scap
|
|
||||||
Terminal=0
|
|
||||||
Type=Application
|
|
||||||
Icon=scap.png
|
|
||||||
Categories=Action
|
|
||||||
StartupNotify=False
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 628 B |
@@ -1,20 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
sleep 2
|
|
||||||
if [ -x /usr/bin/bl ]; then
|
|
||||||
bl toggle
|
|
||||||
fi
|
|
||||||
MODEL=`cat /proc/cpuinfo | grep ^Hardware | sed "s/.* //"`
|
|
||||||
test -e /etc/scap.conf && USER=`cat /etc/scap.conf`
|
|
||||||
RES=`fbset 2>/dev/null | awk "/geometry/ { print \$2 "x" \$3 }"`
|
|
||||||
(echo "POST /scap/capture.cgi?$MODEL+$USER+$RES HTTP/1.1"
|
|
||||||
echo -n Content-length:
|
|
||||||
cat /dev/fb0 | wc -c
|
|
||||||
echo "Content-Type: image/gif"
|
|
||||||
echo "Host: www.handhelds.org"
|
|
||||||
echo ""
|
|
||||||
cat /dev/fb0) | nc www.handhelds.org 80
|
|
||||||
if [ -x /usr/bin/bl ]; then
|
|
||||||
bl toggle
|
|
||||||
fi
|
|
||||||
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
LICENSE = "OSL"
|
|
||||||
PR = "r4"
|
|
||||||
|
|
||||||
DESCRIPTION = "handhelds.org screen capture utility"
|
|
||||||
SRC_URI = "file://scap.sh file://scap.desktop file://scap.png"
|
|
||||||
|
|
||||||
do_install() {
|
|
||||||
install -d ${D}${bindir}
|
|
||||||
install ${WORKDIR}/scap.sh ${D}${bindir}/scap
|
|
||||||
install -d ${D}${datadir}/applications
|
|
||||||
install -m 0644 ${WORKDIR}/scap.desktop ${D}${datadir}/applications/
|
|
||||||
install -d ${D}${datadir}/pixmaps
|
|
||||||
install -m 0644 ${WORKDIR}/scap.png ${D}${datadir}/pixmaps/
|
|
||||||
}
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user