summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2004-12-19 09:28:53 +0000
committerAlin Năstac <mrness@gentoo.org>2004-12-19 09:28:53 +0000
commit526dce197c2d9456cba7bee915efc1e2498b7980 (patch)
treec95cbae7b061caf69364c2a839132aa503fd0988 /net-dialup/pptpd
parentreadd xface use flag. fixes bug #74860. (Manifest recommit) (diff)
downloadgentoo-2-526dce197c2d9456cba7bee915efc1e2498b7980.tar.gz
gentoo-2-526dce197c2d9456cba7bee915efc1e2498b7980.tar.bz2
gentoo-2-526dce197c2d9456cba7bee915efc1e2498b7980.zip
fix autotools generated files and mark it stable on x86
Diffstat (limited to 'net-dialup/pptpd')
-rw-r--r--net-dialup/pptpd/ChangeLog5
-rw-r--r--net-dialup/pptpd/pptpd-1.1.4_beta4.ebuild18
2 files changed, 19 insertions, 4 deletions
diff --git a/net-dialup/pptpd/ChangeLog b/net-dialup/pptpd/ChangeLog
index 8d8c60f95a7b..dc82dd547ec9 100644
--- a/net-dialup/pptpd/ChangeLog
+++ b/net-dialup/pptpd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-dialup/pptpd
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpd/ChangeLog,v 1.10 2004/08/25 02:48:52 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpd/ChangeLog,v 1.11 2004/12/19 09:28:53 mrness Exp $
+
+ 19 Dec 2004; Alin Nastac <mrness@gentoo.org> pptpd-1.1.4_beta4.ebuild:
+ Fix autotools generated files (#72744) and mark it stable on x86.
25 Aug 2004; Sven Wegener <swegener@gentoo.org> pptpd-1.1.3.ebuild:
Changed SRC_URI to use mirror:// syntax.
diff --git a/net-dialup/pptpd/pptpd-1.1.4_beta4.ebuild b/net-dialup/pptpd/pptpd-1.1.4_beta4.ebuild
index 669a6fcb8b1d..569f3d87a255 100644
--- a/net-dialup/pptpd/pptpd-1.1.4_beta4.ebuild
+++ b/net-dialup/pptpd/pptpd-1.1.4_beta4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpd/pptpd-1.1.4_beta4.ebuild,v 1.3 2004/07/01 22:09:29 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpd/pptpd-1.1.4_beta4.ebuild,v 1.4 2004/12/19 09:28:53 mrness Exp $
S=${WORKDIR}/poptop-1.1.4
DESCRIPTION="Linux Point-to-Point Tunnelling Protocol Server"
@@ -8,15 +8,27 @@ SRC_URI="mirror://sourceforge/poptop/pptpd-1.1.4-b4.tar.gz"
HOMEPAGE="http://www.poptop.org/"
DEPEND="virtual/libc
+ sys-devel/autoconf
+ sys-devel/automake
net-dialup/ppp
tcpd? ( sys-apps/tcp-wrappers )"
-RDEPEND="$DEPEND"
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~x86"
+KEYWORDS="x86"
IUSE="tcpd"
+src_unpack() {
+ unpack ${A} ; cd ${S}
+ sed -i "s/^CFLAGS = -O2/CFLAGS = ${CFLAGS}/" Makefile.am || die "sed failed"
+}
+
src_compile() {
+ ebegin "Updating autotools-generated files"
+ aclocal && \
+ automake -a && \
+ autoconf
+ eend $?
+
local myconf
use tcpd && myconf="--with-libwrap"
econf --with-bcrelay \