public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sergey Popov (pinkbyte)" <pinkbyte@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/pptpd: pptpd-1.3.4-r3.ebuild ChangeLog
Date: Wed, 15 May 2013 10:55:26 +0000 (UTC)	[thread overview]
Message-ID: <20130515105526.E1DCB2171D@flycatcher.gentoo.org> (raw)

pinkbyte    13/05/15 10:55:26

  Modified:             ChangeLog
  Added:                pptpd-1.3.4-r3.ebuild
  Log:
  Revision bump: Add epatch_user, add patch to prevent sandbox violations, use default 'emake install' instead of einstall, add compatibility with Automake 1.13, wrt bug #469476
  
  (Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)

Revision  Changes    Path
1.49                 net-dialup/pptpd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/pptpd/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/pptpd/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/pptpd/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dialup/pptpd/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	25 Mar 2013 13:23:11 -0000	1.48
+++ ChangeLog	15 May 2013 10:55:26 -0000	1.49
@@ -1,6 +1,14 @@
 # ChangeLog for net-dialup/pptpd
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpd/ChangeLog,v 1.48 2013/03/25 13:23:11 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpd/ChangeLog,v 1.49 2013/05/15 10:55:26 pinkbyte Exp $
+
+*pptpd-1.3.4-r3 (15 May 2013)
+
+  15 May 2013; Sergey Popov <pinkbyte@gentoo.org> +pptpd-1.3.4-r3.ebuild,
+  +files/pptpd-1.3.4-sandbox-fix.patch:
+  Revision bump: Add epatch_user, add patch to prevent sandbox violations, use
+  default 'emake install' instead of einstall, add compatibility with Automake
+  1.13, wrt bug #469476
 
   25 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> pptpd-1.3.4-r2.ebuild,
   files/pptpd-1.3.4-gentoo.patch:



1.1                  net-dialup/pptpd/pptpd-1.3.4-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/pptpd/pptpd-1.3.4-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/pptpd/pptpd-1.3.4-r3.ebuild?rev=1.1&content-type=text/plain

Index: pptpd-1.3.4-r3.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpd/pptpd-1.3.4-r3.ebuild,v 1.1 2013/05/15 10:55:26 pinkbyte Exp $

EAPI="5"

inherit autotools eutils flag-o-matic

DESCRIPTION="Linux Point-to-Point Tunnelling Protocol Server"
HOMEPAGE="http://poptop.sourceforge.net/"
SRC_URI="mirror://sourceforge/poptop/${P}.tar.gz"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gre-extreme-debug tcpd"

DEPEND="net-dialup/ppp:=
	tcpd? ( sys-apps/tcp-wrappers )"
RDEPEND="${DEPEND}"

DOCS=( AUTHORS ChangeLog NEWS README TODO )

src_prepare() {
	epatch "${FILESDIR}/${P}-gentoo.patch"
	epatch "${FILESDIR}/${P}-more-reodering-fixes.patch"
	epatch "${FILESDIR}/${P}-sandbox-fix.patch"

	# Match pptpd-logwtmp.so's version with pppd's version (#89895)
	local PPPD_VER=`best_version net-dialup/ppp`
	PPPD_VER=${PPPD_VER#*/*-} #reduce it to ${PV}-${PR}
	PPPD_VER=${PPPD_VER%%[_-]*} # main version without beta/pre/patch/revision
	sed -i -e "s:\\(#define[ \\t]*VERSION[ \\t]*\\)\".*\":\\1\"${PPPD_VER}\":" plugins/patchlevel.h || die

	# respect LDFLAGS
	sed -i -e "/^LDFLAGS/{s:=:+=:}" plugins/Makefile || die

	# Automake 1.13, compatibility, bug #469476
	sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADER/' configure.in || die 'sed on configure.ac failed'

	# remove 'missing' script to prevent warnings
	rm missing || die 'remove missing script failed'

	# respect compiler, bug #461722
	tc-export CC

	# Apply user patches
	epatch_user

	eautoreconf
}

src_configure() {
	use gre-extreme-debug && append-cppflags "-DLOG_DEBUG_GRE_ACCEPTING_PACKET"
	econf \
		--enable-bcrelay \
		$(use tcpd && echo "--with-libwrap")
}

src_compile() {
	emake COPTS="${CFLAGS}"
}

src_install () {
	emake DESTDIR="${D}" install

	insinto /etc
	doins samples/pptpd.conf

	insinto /etc/ppp
	doins samples/options.pptpd

	newinitd "${FILESDIR}/pptpd-init-r2" pptpd
	newconfd "${FILESDIR}/pptpd-confd" pptpd

	dodoc README.*
	docinto samples
	dodoc samples/*
}





             reply	other threads:[~2013-05-15 10:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-15 10:55 Sergey Popov (pinkbyte) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2013-05-15 20:55 [gentoo-commits] gentoo-x86 commit in net-dialup/pptpd: pptpd-1.3.4-r3.ebuild ChangeLog Sergey Popov (pinkbyte)
2013-06-22 19:34 Sergey Popov (pinkbyte)
2013-10-25  9:24 Sergey Popov (pinkbyte)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130515105526.E1DCB2171D@flycatcher.gentoo.org \
    --to=pinkbyte@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox