diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 18:02:39 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 18:02:39 +0000 |
commit | a0f02d43a548c0278d24cd6699fa2f741d98e4b0 (patch) | |
tree | 915e6f7c498d11e5f9a477c67cf5b4ad5d8dd98f /dev-libs/libstroke | |
parent | Jaxp was a repack of various apache projects under a very restrictive Sun lic... (diff) | |
download | historical-a0f02d43a548c0278d24cd6699fa2f741d98e4b0.tar.gz historical-a0f02d43a548c0278d24cd6699fa2f741d98e4b0.tar.bz2 historical-a0f02d43a548c0278d24cd6699fa2f741d98e4b0.zip |
repoman'd
Diffstat (limited to 'dev-libs/libstroke')
-rw-r--r-- | dev-libs/libstroke/libstroke-0.4.ebuild | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/dev-libs/libstroke/libstroke-0.4.ebuild b/dev-libs/libstroke/libstroke-0.4.ebuild index 8751e8070b41..b0f9d3ac935e 100644 --- a/dev-libs/libstroke/libstroke-0.4.ebuild +++ b/dev-libs/libstroke/libstroke-0.4.ebuild @@ -1,28 +1,25 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libstroke/libstroke-0.4.ebuild,v 1.5 2002/08/01 11:59:01 seemant Exp $ - +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libstroke/libstroke-0.4.ebuild,v 1.6 2002/08/01 18:02:38 seemant Exp $ 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" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" 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 - + econf || die + emake || die } src_install () { - - cd ${S} - try make DESTDIR=${D} install - dodoc COPYING COPYRIGHT CREDITS ChangeLog README + make DESTDIR=${D} install || die + dodoc COPYING COPYRIGHT CREDITS ChangeLog README } |