blob: 747711fdb0ad02bea4671996a834ee9f9924f820 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpconfig/pptpconfig-20030731.ebuild,v 1.2 2004/09/27 13:39:39 dragonheart Exp $
DESCRIPTION="Configuration and management program for PPTP Client tunnels"
HOMEPAGE="http://pptpclient.sourceforge.net/"
SRC_URI="mirror://sourceforge/pptpclient/pptp-php-gtk-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND=""
RDEPEND="dev-php/php-gtk
net-dialup/pptpclient"
S=${WORKDIR}/pptp-php-gtk-${PV}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog DEVELOPERS NEWS README TODO
sed -i -e "s:#!/usr/bin/php4:#!/usr/bin/php:" ${D}/usr/bin/pptp-php-gtk.php
}
|