diff options
author | Alin Năstac <mrness@gentoo.org> | 2009-12-05 08:51:41 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2009-12-05 08:51:41 +0000 |
commit | aa738522e406dfae78eb62e6d6876bcb69489269 (patch) | |
tree | a9fff77fb5d42a74d70d73be78737f1828cbc58e /net-dialup | |
parent | xvmc is gone (diff) | |
download | gentoo-2-aa738522e406dfae78eb62e6d6876bcb69489269.tar.gz gentoo-2-aa738522e406dfae78eb62e6d6876bcb69489269.tar.bz2 gentoo-2-aa738522e406dfae78eb62e6d6876bcb69489269.zip |
Use selected CC and LDFLAGS (#293577). Install pptpsetup and man pages (#293885).
(Portage version: 2.1.6.13/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/pptpclient/ChangeLog | 9 | ||||
-rw-r--r-- | net-dialup/pptpclient/pptpclient-1.7.2-r2.ebuild (renamed from net-dialup/pptpclient/pptpclient-1.7.2-r1.ebuild) | 10 |
2 files changed, 12 insertions, 7 deletions
diff --git a/net-dialup/pptpclient/ChangeLog b/net-dialup/pptpclient/ChangeLog index e34096d539c4..65918be1d54e 100644 --- a/net-dialup/pptpclient/ChangeLog +++ b/net-dialup/pptpclient/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-dialup/pptpclient # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/ChangeLog,v 1.54 2009/09/30 22:15:33 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/ChangeLog,v 1.55 2009/12/05 08:51:41 mrness Exp $ + +*pptpclient-1.7.2-r2 (05 Dec 2009) + + 05 Dec 2009; Alin Năstac <mrness@gentoo.org> -pptpclient-1.7.2-r1.ebuild, + +pptpclient-1.7.2-r2.ebuild: + Use selected CC and LDFLAGS (#293577). Install pptpsetup and man pages + (#293885). 30 Sep 2009; Alin Năstac <mrness@gentoo.org> pptpclient-1.7.2-r1.ebuild: Add sys-apps/iproute2 to RDEPEND (#284460). diff --git a/net-dialup/pptpclient/pptpclient-1.7.2-r1.ebuild b/net-dialup/pptpclient/pptpclient-1.7.2-r2.ebuild index b2a3093f384d..34b799e0571c 100644 --- a/net-dialup/pptpclient/pptpclient-1.7.2-r1.ebuild +++ b/net-dialup/pptpclient/pptpclient-1.7.2-r2.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/pptpclient-1.7.2-r1.ebuild,v 1.5 2009/09/30 22:15:33 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/pptpclient-1.7.2-r2.ebuild,v 1.1 2009/12/05 08:51:41 mrness Exp $ EAPI="2" -inherit eutils +inherit eutils toolchain-funcs MY_P=${P/client} MY_CMD=pptp-command-20050401 @@ -35,19 +35,17 @@ src_prepare() { } src_compile() { - emake OPTIMISE= DEBUG= CFLAGS="${CFLAGS}" || die "make failed" + emake OPTIMISE= DEBUG= CFLAGS="${CFLAGS}" LDFLAGS=${LDFLAGS} CC=$(tc-getCC) || die "emake failed" } src_install() { - dosbin pptp + emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog DEVELOPERS NEWS README TODO USING dodoc Documentation/* dodir /etc/pptp.d # The current version of pptp-linux doesn't include the # RH-specific portions, so include them ourselves. - insinto /etc/ppp - doins options.pptp newsbin "${WORKDIR}/${MY_CMD}" pptp-command dosbin "${FILESDIR}/pptp_fe.pl" use tk && dosbin "${FILESDIR}/xpptp_fe.pl" |