diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-19 07:26:29 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-19 07:26:29 +0000 |
commit | e1117391bc0f55fd93902578671f6d5c72346b40 (patch) | |
tree | f72813e76c1166ddbe337ed5e3954987c2a57b47 /x11-misc/xstroke | |
parent | better way to use webapp-detect (diff) | |
download | historical-e1117391bc0f55fd93902578671f6d5c72346b40.tar.gz historical-e1117391bc0f55fd93902578671f6d5c72346b40.tar.bz2 historical-e1117391bc0f55fd93902578671f6d5c72346b40.zip |
virtual/x11; use emake; tidy
Diffstat (limited to 'x11-misc/xstroke')
-rw-r--r-- | x11-misc/xstroke/ChangeLog | 6 | ||||
-rw-r--r-- | x11-misc/xstroke/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/xstroke/xstroke-0.5.12-r1.ebuild | 23 |
3 files changed, 17 insertions, 16 deletions
diff --git a/x11-misc/xstroke/ChangeLog b/x11-misc/xstroke/ChangeLog index 5e44db17795f..7d26e237d54a 100644 --- a/x11-misc/xstroke/ChangeLog +++ b/x11-misc/xstroke/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/xstroke # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xstroke/ChangeLog,v 1.10 2004/04/11 17:48:39 pyrania Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xstroke/ChangeLog,v 1.11 2004/04/19 07:26:29 mr_bones_ Exp $ + + 19 Apr 2004; Michael Sterrett <mr_bones_@gentoo.org> + xstroke-0.5.12-r1.ebuild: + virtual/x11; use emake; tidy 11 Apr 2004; Markus Nigbur <pyrania@gentoo.org> xstroke-0.5.12-r1.ebuild: Ebuild fixups. diff --git a/x11-misc/xstroke/Manifest b/x11-misc/xstroke/Manifest index f6cfd1ea64d6..490ef3eeee04 100644 --- a/x11-misc/xstroke/Manifest +++ b/x11-misc/xstroke/Manifest @@ -1,4 +1,4 @@ -MD5 259c61db9ac6ea30126dcd48bf7b3fe0 xstroke-0.5.12-r1.ebuild 946 -MD5 f09a716b2f7af3b85515c8a754b28a6f ChangeLog 1563 +MD5 5c5fc1df47adee9e40c706fa2a2e5fae ChangeLog 1680 +MD5 fd01fdd1730257dce82bdf228c221303 xstroke-0.5.12-r1.ebuild 952 MD5 cdb11033a3fa6525334cecf938961c07 metadata.xml 166 MD5 cc5958392fa37b59c913ee1c87e5bf57 files/digest-xstroke-0.5.12-r1 66 diff --git a/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild b/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild index 1b9e36bc92b9..378887b1bab9 100644 --- a/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild +++ b/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild @@ -1,38 +1,35 @@ # Copyright 1999-2004 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-r1.ebuild,v 1.3 2004/04/11 17:48:39 pyrania Exp $ - -inherit eutils - -IUSE="" +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild,v 1.4 2004/04/19 07:26:29 mr_bones_ Exp $ DESCRIPTION="Gesture/Handwriting recognition engine for X" 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" +SLOT="0" KEYWORDS="x86 ~ppc sparc ~alpha ~mips hppa" +IUSE="" -DEPEND=">=x11-base/xfree-4.1.0" +DEPEND="virtual/x11" src_unpack() { unpack ${A} - # generate Makefile from Imakefile - cd ${S}; xmkmf -a + cd ${S} + xmkmf -a # generate Makefile from Imakefile } src_compile() { # otherwise it'll include the wrong freetype headers. - make \ + emake \ INCLUDES="-I/usr/include/freetype2" \ DEFINES="-DXK_XKB_KEYS" \ - || die + || die "emake failed" } src_install() { - make DESTDIR=${D} BINDIR=/usr/bin install || die + make DESTDIR="${D}" BINDIR=/usr/bin install || die "make install failed" newman xstroke.man xstroke.1 - dodoc AUTHORS COPYING ChangeLog README TODO + dodoc AUTHORS ChangeLog README TODO dohtml -r doc } |