summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrakash Shetty <crux@gentoo.org>2001-07-05 09:01:00 +0000
committerPrakash Shetty <crux@gentoo.org>2001-07-05 09:01:00 +0000
commit9f856e798fde10b62b232ff7b19067a9df5b12e7 (patch)
treee24412b2556f2cff6425533aa220e2bdea0e5558 /dev-libs/libstroke
parentremoved mozilla 0.9.2, not incompatible after update to Galeon 0.11.1 (diff)
downloadgentoo-2-9f856e798fde10b62b232ff7b19067a9df5b12e7.tar.gz
gentoo-2-9f856e798fde10b62b232ff7b19067a9df5b12e7.tar.bz2
gentoo-2-9f856e798fde10b62b232ff7b19067a9df5b12e7.zip
added Libstroke - A stroke and Guesture library and modified the fvwm ebuild to use it
Diffstat (limited to 'dev-libs/libstroke')
-rw-r--r--dev-libs/libstroke/files/digest-libstroke-0.41
-rw-r--r--dev-libs/libstroke/libstroke-0.4.ebuild27
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-libs/libstroke/files/digest-libstroke-0.4 b/dev-libs/libstroke/files/digest-libstroke-0.4
new file mode 100644
index 000000000000..4dd873ff81a8
--- /dev/null
+++ b/dev-libs/libstroke/files/digest-libstroke-0.4
@@ -0,0 +1 @@
+MD5 741e62d85d24597d01af8f01f8169189 libstroke-0.4.tar.gz
diff --git a/dev-libs/libstroke/libstroke-0.4.ebuild b/dev-libs/libstroke/libstroke-0.4.ebuild
new file mode 100644
index 000000000000..08e22553c281
--- /dev/null
+++ b/dev-libs/libstroke/libstroke-0.4.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2000 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Prakash Shetty (Crux) <crux@gentoo.org>
+
+S=${WORKDIR}/${P}
+DESCRIPTION="A Stroke and Guesture recognition Library"
+SRC_URI="http://www.etla.net/libstroke/${P}.tar.gz"
+HOMEPAGE="http://www.etla.net/libstroke"
+
+
+DEPEND=">=sys-libs/glibc-2.1.3
+ >=x11-base/xfree-4.0.3"
+
+src_compile() {
+
+ cd ${S}
+ try ./configure --prefix=/usr --host=${CHOST} --mandir=/usr/share/man --infodir=/usr/share/info
+ try make
+
+}
+
+src_install () {
+
+ cd ${S}
+ try make DESTDIR=${D} install
+ dodoc COPYING COPYRIGHT CREDITS ChangeLog README
+}