diff options
author | Stanislav Brabec <utx@gentoo.org> | 2003-04-22 16:40:43 +0000 |
---|---|---|
committer | Stanislav Brabec <utx@gentoo.org> | 2003-04-22 16:40:43 +0000 |
commit | e287ad5790e674a578864c92942f3ad33f3587b5 (patch) | |
tree | 5ef37e3cffbc90279f2b04f8bb3563ba2c437084 /net-misc | |
parent | fix misplaced scrollkeeper dir (diff) | |
download | gentoo-2-e287ad5790e674a578864c92942f3ad33f3587b5.tar.gz gentoo-2-e287ad5790e674a578864c92942f3ad33f3587b5.tar.bz2 gentoo-2-e287ad5790e674a578864c92942f3ad33f3587b5.zip |
initial ebuild
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/tkusr/files/digest-tkusr-0.80 | 1 | ||||
-rw-r--r-- | net-misc/tkusr/tkusr-0.80.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/net-misc/tkusr/files/digest-tkusr-0.80 b/net-misc/tkusr/files/digest-tkusr-0.80 new file mode 100644 index 000000000000..4a30ed59b6cb --- /dev/null +++ b/net-misc/tkusr/files/digest-tkusr-0.80 @@ -0,0 +1 @@ +MD5 053ee4801adfa1daf681a27d8b00842d tkusr_0.80.tar.gz 70707 diff --git a/net-misc/tkusr/tkusr-0.80.ebuild b/net-misc/tkusr/tkusr-0.80.ebuild new file mode 100644 index 000000000000..ee90c182877c --- /dev/null +++ b/net-misc/tkusr/tkusr-0.80.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/tkusr/tkusr-0.80.ebuild,v 1.1 2003/04/22 16:40:43 utx Exp $ + +DESCRIPTION="TkUsr is a small program that allows you to manage the Self-mode of USR/3COM Message (Plus), Professional Message modems." +HOMEPAGE="http://www.drolez.com/tkusr" +SRC_URI="http://www.drolez.com/tkusr/${PN}_${PV}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +S="${WORKDIR}/${P}" + +DEPEND=">=tcl-8.0 + >=tk-8.0" + +RDEPEND=">=tcl-8.0 + >=tk-8.0" + +src_unpack() { + unpack "${PN}_${PV}.tar.gz" + cd "${S}" +} + +src_compile() { + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc COPYING README +} + +pkg_postinst() { + einfo + einfo "To use tkusr with your modem, please make a symbolic link of your modem device to /dev/modem." + einfo "ie. ln -sf /dev/tts/0 /dev/modem" + einfo + einfo "Make sure you have sufficient rights to access the modem (you have to be in the tty group)." + einfo +} |