diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-11 08:06:57 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-11 08:06:57 +0000 |
commit | 5824e76ff5e2709dbb05a2120b99e65f1c0766a9 (patch) | |
tree | 1d023d89b48e2ef9323388b884c9ebfb21493014 /x11-misc/xstroke | |
parent | repoman fix (diff) | |
download | gentoo-2-5824e76ff5e2709dbb05a2120b99e65f1c0766a9.tar.gz gentoo-2-5824e76ff5e2709dbb05a2120b99e65f1c0766a9.tar.bz2 gentoo-2-5824e76ff5e2709dbb05a2120b99e65f1c0766a9.zip |
many many fixes
Diffstat (limited to 'x11-misc/xstroke')
-rw-r--r-- | x11-misc/xstroke/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/xstroke/files/digest-xstroke-0.5.12 | 2 | ||||
-rw-r--r-- | x11-misc/xstroke/files/digest-xstroke-0.5.12-r1 | 1 | ||||
-rw-r--r-- | x11-misc/xstroke/xstroke-0.5.12-r1.ebuild (renamed from x11-misc/xstroke/xstroke-0.5.12.ebuild) | 16 |
4 files changed, 19 insertions, 8 deletions
diff --git a/x11-misc/xstroke/ChangeLog b/x11-misc/xstroke/ChangeLog index 7b7a581ce7a5..2983383a9ca0 100644 --- a/x11-misc/xstroke/ChangeLog +++ b/x11-misc/xstroke/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/xstroke # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xstroke/ChangeLog,v 1.6 2003/02/17 00:32:42 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xstroke/ChangeLog,v 1.7 2003/03/11 08:06:57 seemant Exp $ + +*xstroke-0.5.12-r1 (11 Mar 2003) + + 11 Mar 2003; Seemant Kulleen <seemant@gentoo.org> xstroke-0.5.12-r1.ebuild: + compile fix, and SRC_URI update; both thanks to: Thomas Weidner + <yasea@gmx.net> in bug #17137. Also, man page is now installed. *xstroke-0.5.12 (31 May 2002) diff --git a/x11-misc/xstroke/files/digest-xstroke-0.5.12 b/x11-misc/xstroke/files/digest-xstroke-0.5.12 deleted file mode 100644 index 947dcbbee980..000000000000 --- a/x11-misc/xstroke/files/digest-xstroke-0.5.12 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 7ceca671324530cb78cfe02ce913e08a xstroke-0.5.12.tar.gz 166494 -MD5 4d8b12031d67eb2c61e3411d809259a0 xstroke-0.5.12-gentoo.diff.bz2 9461 diff --git a/x11-misc/xstroke/files/digest-xstroke-0.5.12-r1 b/x11-misc/xstroke/files/digest-xstroke-0.5.12-r1 new file mode 100644 index 000000000000..5b3b81cf70eb --- /dev/null +++ b/x11-misc/xstroke/files/digest-xstroke-0.5.12-r1 @@ -0,0 +1 @@ +MD5 7ceca671324530cb78cfe02ce913e08a xstroke-0.5.12.tar.gz 166494 diff --git a/x11-misc/xstroke/xstroke-0.5.12.ebuild b/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild index 1e11335eac43..4a644cc5b824 100644 --- a/x11-misc/xstroke/xstroke-0.5.12.ebuild +++ b/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xstroke/xstroke-0.5.12.ebuild,v 1.8 2003/02/17 00:32:42 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild,v 1.1 2003/03/11 08:06:57 seemant Exp $ inherit eutils @@ -8,11 +8,12 @@ IUSE="" S=${WORKDIR}/${P} DESCRIPTION="Gesture/Handwriting recognition engine for X" -HOMEPAGE="http://www.east.isi.edu/projects/DSN/xstroke/" +HOMEPAGE="http://dsn.east.isi.edu/xstroke/" SRC_URI="ftp://ftp.handhelds.org/pub/projects/${PN}/release-0.5/${P}.tar.gz" + SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86 sparc" +KEYWORDS="x86 ~ppc sparc ~alpha ~mips ~hppa" DEPEND=">=x11-base/xfree-4.1.0" @@ -24,10 +25,15 @@ src_unpack() { src_compile() { # otherwise it'll include the wrong freetype headers. - make INCLUDES="-I/usr/include/freetype2" || die + make \ + INCLUDES="-I/usr/include/freetype2" \ + DEFINES="-DXK_XKB_KEYS" \ + || die } src_install() { make DESTDIR=${D} BINDIR=/usr/bin install || die + newman xstroke.man xstroke.1 + dodoc AUTHORS COPYING ChangeLog README TODO + dohtml -r doc } - |