xwd: remove package 'xwd'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2011-01-01 19:12:10 +01:00
parent 8611e79bad
commit e8fa4e7c5b
4 changed files with 0 additions and 47 deletions

View File

@ -1,11 +0,0 @@
#!/bin/sh
. config/options $1
cd $PKG_BUILD
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--sysconfdir=/etc \
make

View File

@ -1,7 +0,0 @@
#!/bin/sh
. config/options $1
mkdir -p $INSTALL/usr/bin
cp $PKG_BUILD/$1 $INSTALL/usr/bin
cp $PKG_DIR/scripts/screenshot $INSTALL/usr/bin

View File

@ -1,16 +0,0 @@
PKG_NAME="xwd"
PKG_VERSION="1.0.4"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="OSS"
PKG_SITE="http://www.X.org"
PKG_URL="http://xorg.freedesktop.org/archive/individual/app/$PKG_NAME-$PKG_VERSION.tar.bz2"
PKG_DEPENDS=""
PKG_BUILD_DEPENDS="toolchain util-macros"
PKG_PRIORITY="optional"
PKG_SECTION="x11/app"
PKG_SHORTDESC="xwd: Dumps an image of an X window"
PKG_LONGDESC="Xwd is an X Window System window dumping utility. Xwd allows X users to store window images in a specially formatted dump file."
PKG_IS_ADDON="no"
PKG_AUTORECONF="yes"

View File

@ -1,13 +0,0 @@
#!/bin/sh
# Screenshot script
#
# Author Tómas Edwardsson <tommi@tommi.org>
WHERE="$HOME/screenshots/`date +%Y/%m/%d`"
FILE="$WHERE`date +/screenshot-%H%M`"
mkdir -p $WHERE
/usr/bin/xwd -display :0.0 -root -out $FILE.xwd
#/usr/bin/convert $FILE.xwd $FILE.png
#/bin/rm -f $FILE.xwd