diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2003-02-12 10:46:09 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2003-02-12 10:46:09 +0000 |
commit | 5d13fc87c625981b59e20838388a2cca589b9071 (patch) | |
tree | 798ab6a5c55ff57a9e8e4a07b9bdb9d7e4668ba4 /x11-misc | |
parent | Fixed mask (diff) | |
download | historical-5d13fc87c625981b59e20838388a2cca589b9071.tar.gz historical-5d13fc87c625981b59e20838388a2cca589b9071.tar.bz2 historical-5d13fc87c625981b59e20838388a2cca589b9071.zip |
initial import
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/lineakd/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/lineakd/files/digest-lineakd-0.4_pre3 | 1 | ||||
-rw-r--r-- | x11-misc/lineakd/lineakd-0.4_pre3.ebuild | 32 |
3 files changed, 41 insertions, 0 deletions
diff --git a/x11-misc/lineakd/ChangeLog b/x11-misc/lineakd/ChangeLog new file mode 100644 index 000000000000..9f5f09ef41bf --- /dev/null +++ b/x11-misc/lineakd/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for x11-misc/lineakd +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lineakd/ChangeLog,v 1.1 2003/02/12 10:46:09 aliz Exp $ + +*lineakd-0.4_pre3 (12 Feb 2003) + + 12 Feb 2003; Daniel Ahlberg <aliz@gentoo.org> : + Initial import. Ebuild submitted by Evan Teran <emt3734@rit.edu> in #6240. diff --git a/x11-misc/lineakd/files/digest-lineakd-0.4_pre3 b/x11-misc/lineakd/files/digest-lineakd-0.4_pre3 new file mode 100644 index 000000000000..bd8ab518ba30 --- /dev/null +++ b/x11-misc/lineakd/files/digest-lineakd-0.4_pre3 @@ -0,0 +1 @@ +MD5 4606ec63a8af63aa9086395f9be42cba lineakd-0.4pre3.tar.gz 225474 diff --git a/x11-misc/lineakd/lineakd-0.4_pre3.ebuild b/x11-misc/lineakd/lineakd-0.4_pre3.ebuild new file mode 100644 index 000000000000..db2020cf0c66 --- /dev/null +++ b/x11-misc/lineakd/lineakd-0.4_pre3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lineakd/lineakd-0.4_pre3.ebuild,v 1.1 2003/02/12 10:46:09 aliz Exp $ + +MY_P=${P/_} +S=${WORKDIR}/${MY_P} +SRC_URI="mirror://sourceforge/lineak/${MY_P}.tar.gz" +DESCRIPTION=" Linux support for Easy Access and Internet Keyboards features X11 support" +HOMEPAGE="http://lineak.sourceforge.net/" +IUSE="nls" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND="virtual/glibc + virtual/x11 + nls? ( sys-devel/gettext )" + +#RDEPEND="" + +src_compile() { + local myconf + use nls || myconf="--disable-nls" + + econf ${myconf} || die + emake || die +} + +src_install () { + make DESTDIR=${D} lineakddocdir=/usr/share/doc/${P} install || die +} + |