blob: a7f5a0fd782465262e03c3a4b90d3bf90d4adf82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/mclient/mclient-2.8.ebuild,v 1.1 2003/11/22 20:57:01 lanius Exp $
DESCRIPTION="Simple command line Masqdialer client"
HOMEPAGE="http://cpwright.com/mserver/"
SRC_URI="http://cpwright.com/cli-mclient/cli-${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="virtual/glibc"
src_compile() {
sed -i -e "s:-O2:${CFLAGS}:" Makefile
emake || die
}
src_install() {
exeinto /usr/bin
doexe mclient
dodoc CHANGES DISCLAIMER LICENSE
}
|