diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-03-23 23:01:12 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-03-23 23:01:12 +0000 |
commit | b20bd239402a8b460cd00b4acbec56c1a17a0680 (patch) | |
tree | 6f56e3731a60207cf35b343454aedc116440e1ac /net-dialup/pptpconfig | |
parent | Fixing bug #111236, adding -lutil to link command (diff) | |
download | gentoo-2-b20bd239402a8b460cd00b4acbec56c1a17a0680.tar.gz gentoo-2-b20bd239402a8b460cd00b4acbec56c1a17a0680.tar.bz2 gentoo-2-b20bd239402a8b460cd00b4acbec56c1a17a0680.zip |
Check if php was build with the required USE flags (#127062).
(Portage version: 2.0.54)
Diffstat (limited to 'net-dialup/pptpconfig')
-rw-r--r-- | net-dialup/pptpconfig/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/pptpconfig/Manifest | 12 | ||||
-rw-r--r-- | net-dialup/pptpconfig/pptpconfig-20060222.ebuild | 8 |
3 files changed, 12 insertions, 13 deletions
diff --git a/net-dialup/pptpconfig/ChangeLog b/net-dialup/pptpconfig/ChangeLog index db492baf88b9..628d4b6eea32 100644 --- a/net-dialup/pptpconfig/ChangeLog +++ b/net-dialup/pptpconfig/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/pptpconfig # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpconfig/ChangeLog,v 1.8 2006/03/16 20:02:51 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpconfig/ChangeLog,v 1.9 2006/03/23 23:01:12 mrness Exp $ + + 23 Mar 2006; Alin Nastac <mrness@gentoo.org> pptpconfig-20060222.ebuild: + Check if php was build with the required USE flags (#127062). *pptpconfig-20060222 (16 Mar 2006) diff --git a/net-dialup/pptpconfig/Manifest b/net-dialup/pptpconfig/Manifest index f6a6d6e70fad..068599887849 100644 --- a/net-dialup/pptpconfig/Manifest +++ b/net-dialup/pptpconfig/Manifest @@ -1,16 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 9e09531959e5bb37fed497f0f5eaebd6 ChangeLog 1667 MD5 6d09d5d24ab4cc325fb857c2f54be505 files/digest-pptpconfig-20040722 70 MD5 b2a676ca5dac90e0ecc8b58d6c22ab25 files/digest-pptpconfig-20060222 70 MD5 ec2f84816306825d125d0c01bd86758d metadata.xml 163 MD5 208dc406b938224b15e815ab83230d28 pptpconfig-20040722.ebuild 785 -MD5 2dd2a51a68b854ac91b089bdab39f86c pptpconfig-20060222.ebuild 767 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2.2 (GNU/Linux) - -iD8DBQFEGcSAjG8pv1lIUX4RAnXkAKCAVYC8JyUjpnEUeEy+WlQv/l9T2ACeLyr3 -xI6VyWJOQ1ZYVGYPqlptn+E= -=fZYE ------END PGP SIGNATURE----- +MD5 bc7370c6e06ed0c2278909c0eaf4d8cb pptpconfig-20060222.ebuild 855 diff --git a/net-dialup/pptpconfig/pptpconfig-20060222.ebuild b/net-dialup/pptpconfig/pptpconfig-20060222.ebuild index dec8b9b49de3..739da267b109 100644 --- a/net-dialup/pptpconfig/pptpconfig-20060222.ebuild +++ b/net-dialup/pptpconfig/pptpconfig-20060222.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpconfig/pptpconfig-20060222.ebuild,v 1.1 2006/03/16 20:02:51 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpconfig/pptpconfig-20060222.ebuild,v 1.2 2006/03/23 23:01:12 mrness Exp $ + +inherit depend.php DESCRIPTION="Configuration and management program for PPTP Client tunnels" HOMEPAGE="http://pptpclient.sourceforge.net/" @@ -15,6 +17,10 @@ RDEPEND="|| ( dev-php4/php-gtk dev-php/php-gtk ) net-dialup/pptpclient sys-apps/iproute2" +pkg_setup() { + require_php_with_use cli pcntl pcre posix session +} + src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog DEVELOPERS NEWS README TODO |