blob: 970759482444231be98e9b207b3a776052519148 (
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
26
27
28
29
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/gmasqdialer/gmasqdialer-0.99.13.ebuild,v 1.1 2003/11/28 01:14:26 brandy Exp $
DESCRIPTION="GMasqdialer - A GNOME Client for MasqDialer"
HOMEPAGE="http://www.dpinson.com/software/gmasqdialer/index.php"
SRC_URI="http://www.dpinson.com/software/gmasqdialer/files/${P}.tar.gz"
LICENSE="GPL-2"
IUSE=""
KEYWORDS="~x86"
SLOT="0"
DEPEND="virtual/glibc
>=gtk+-2.0"
src_compile() {
econf || die "econf failed."
emake || die "parallel make failed."
}
src_install() {
einstall || die "install failed."
dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
}
|