commit:     869a1d167c73725fceb873e0f36fe689deac156e
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 12 20:37:56 2023 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Wed Apr 12 20:51:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=869a1d16

net-dialup/ppp: add 2.5.0 without KEYWORDS

ebuild changes:

- EAPI 8
- autotools
- Drop dhcpc plugin (fails to build)
- Enable eap-tls, ipv6, radius unconditionally

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 net-dialup/ppp/Manifest         |   2 +
 net-dialup/ppp/ppp-2.5.0.ebuild | 113 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 115 insertions(+)

diff --git a/net-dialup/ppp/Manifest b/net-dialup/ppp/Manifest
index 8c80bdd736d5..4582f760fc8f 100644
--- a/net-dialup/ppp/Manifest
+++ b/net-dialup/ppp/Manifest
@@ -1,3 +1,5 @@
 DIST ppp-2.4.9-patches-03.tar.xz 18520 BLAKE2B 
b3da095672fa57727ba11a5dba761ea3f24ee330f27252f0379dab5761d5381809176faafed86d97a6b89cc8a4cb958baa07f4900e22fe6e76b6c852e0703f0c
 SHA512 
9a035acf1915225340c12e6242f0c5db399b5f5970888d7f1799a5f125cf97b95d9fcb8c9aa2f6bd56c1544d2b10585f772d4fc1025002e3e8403011e3d2c029
 DIST ppp-2.4.9.tar.gz 719904 BLAKE2B 
7ba3eb8c98fec5599635dbd302399617e1075f3a1df090f1a94ce2bb8a5c7631e6eea82246adc33711aba5fe95e7ba7c982e2cbf1fb0d71e45f877d9b092ffb7
 SHA512 
c309f8f69f534c05547cd2f66dade0e0f198ea4c2928a7e899e660280786b3e965437a67b8c5bb81c59d0fa1818b4eb7b701d2dce015a420d380422d2bca4e1a
+DIST ppp-2.5.0.tar.gz 1170057 BLAKE2B 
6a0e9efcbff3cb499705071cc7d0e3411cf4871fd53b2bfedbb1f2cf3ad80728eb436050cf33b78e36d473be64f15907a21da17f283337455f0af379bc18272d
 SHA512 
094368ea2aa6c6e8dfba4443509857a7c1c7ff839bb6d6657743802477208c01e87db31593cef0932d3725c640e9c103179da6b742825034cda82bd31ddcc2ed
 DIST ppp-dhcpc.tgz 33497 BLAKE2B 
ca59130012f007cf45af6bcfa468c112b0d521c8b11f42d42c566dd9de55bd6d6f1b1ceb83cbae18cfe79cb5cb36ba6c6858a4718915acc6987295008aca53da
 SHA512 
aeaf791b14f5a09c0e2079072a157e65132cbff46e608bc0724e6a5827a01da934f5006e2774eb7105f83e607a52cb4987238f4385cf6f5cc86cbe305a556738
+DIST pppgetpass.8 154398 BLAKE2B 
0e74b96df6171b7382874ce08375d0122df2b564ce8c3e8081022c38ef433e22d15ad13a51d553c6e18ee6277d9c67302b50afa59126bf74a6e3dcd1b03a2b2b
 SHA512 
aca33e489d3e78a7accced4d3c33c03d933cf4c0b6607e8a6bbefef202c853248fa85caa36b53b9cbaf8b21ae60bb00fb3f95577418112630dfa6d67ad700359

diff --git a/net-dialup/ppp/ppp-2.5.0.ebuild b/net-dialup/ppp/ppp-2.5.0.ebuild
new file mode 100644
index 000000000000..7213230de0e6
--- /dev/null
+++ b/net-dialup/ppp/ppp-2.5.0.ebuild
@@ -0,0 +1,113 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit linux-info pam
+
+PATCH_TARBALL_NAME="${PN}-2.4.9-patches-03"
+DESCRIPTION="Point-to-Point Protocol (PPP)"
+HOMEPAGE="https://ppp.samba.org/";
+SRC_URI="https://download.samba.org/pub/ppp/${P}.tar.gz
+       
https://github.com/ppp-project/ppp/blob/${P}/contrib/pppgetpass/pppgetpass.8";
+#https://dev.gentoo.org/~polynomial-c/${PATCH_TARBALL_NAME}.tar.xz
+
+LICENSE="BSD GPL-2"
+SLOT="0/${PV}"
+#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+IUSE="activefilter atm gtk pam systemd"
+
+DEPEND="
+       dev-libs/openssl:0=
+       virtual/libcrypt:=
+       activefilter? ( net-libs/libpcap )
+       atm? ( net-dialup/linux-atm )
+       gtk? ( x11-libs/gtk+:2 )
+       pam? ( sys-libs/pam )
+       systemd? ( sys-apps/systemd )
+"
+RDEPEND="${DEPEND}
+       !<net-misc/netifrc-0.7.1-r2"
+BDEPEND="virtual/pkgconfig"
+PDEPEND="net-dialup/ppp-scripts"
+
+src_configure() {
+       local args=(
+               --localstatedir="${EPREFIX}"/var
+               --runstatedir="${EPREFIX}"/run
+               $(use_enable systemd)
+               $(use_with atm)
+               $(use_with pam)
+               $(use_with activefilter pcap)
+               $(use_with gtk)
+               --enable-cbcp
+       )
+       econf "${args[@]}"
+}
+
+src_compile() {
+       default
+}
+
+src_install() {
+       default
+
+       find "${ED}" -name '*.la' -type f -delete || die
+
+       if use pam; then
+               pamd_mimic_system ppp auth account session
+       fi
+
+       insinto /etc/modprobe.d
+       newins "${FILESDIR}/modules.ppp" ppp.conf
+
+       dobin scripts/p{on,off,log}
+       doman scripts/pon.1
+
+       # Adding misc. specialized scripts to doc dir
+       dodoc -r scripts
+
+       if use gtk ; then
+               dosbin contrib/pppgetpass/pppgetpass.{gtk,vt}
+               newsbin contrib/pppgetpass/pppgetpass.sh pppgetpass
+       else
+               newsbin contrib/pppgetpass/pppgetpass.vt pppgetpass
+       fi
+       # Missing from upstream tarball
+       # https://github.com/ppp-project/ppp/pull/412
+       #doman contrib/pppgetpass/pppgetpass.8
+       doman "${DISTDIR}/pppgetpass.8"
+}
+
+pkg_postinst() {
+       if linux-info_get_any_version && linux_config_src_exists ; then
+               echo
+               ewarn "If the following test report contains a missing kernel 
configuration option that you need,"
+               ewarn "you should reconfigure and rebuild your kernel before 
running pppd."
+               CONFIG_CHECK="~PPP ~PPP_ASYNC ~PPP_SYNC_TTY"
+               local ERROR_PPP="CONFIG_PPP:\t missing PPP support (REQUIRED)"
+               local ERROR_PPP_ASYNC="CONFIG_PPP_ASYNC:\t missing asynchronous 
serial line discipline (optional, but highly recommended)"
+               local WARNING_PPP_SYNC_TTY="CONFIG_PPP_SYNC_TTY:\t missing 
synchronous serial line discipline (optional; used by 'sync' pppd option)"
+               if use activefilter ; then
+                       CONFIG_CHECK="${CONFIG_CHECK} ~PPP_FILTER"
+                       local ERROR_PPP_FILTER="CONFIG_PPP_FILTER:\t missing 
PPP filtering support (REQUIRED)"
+               fi
+               CONFIG_CHECK="${CONFIG_CHECK} ~PPP_DEFLATE ~PPP_BSDCOMP 
~PPP_MPPE"
+               local ERROR_PPP_DEFLATE="CONFIG_PPP_DEFLATE:\t missing Deflate 
compression (optional, but highly recommended)"
+               local ERROR_PPP_BSDCOMP="CONFIG_PPP_BSDCOMP:\t missing 
BSD-Compress compression (optional, but highly recommended)"
+               local WARNING_PPP_MPPE="CONFIG_PPP_MPPE:\t missing MPPE 
encryption (optional, mostly used by PPTP links)"
+               CONFIG_CHECK="${CONFIG_CHECK} ~PPPOE ~PACKET"
+               local WARNING_PPPOE="CONFIG_PPPOE:\t missing PPPoE support 
(optional, needed by pppoe plugin)"
+               local WARNING_PACKET="CONFIG_PACKET:\t missing AF_PACKET 
support (optional, used by pppoe plugin)"
+               if use atm ; then
+                       CONFIG_CHECK="${CONFIG_CHECK} ~PPPOATM"
+                       local WARNING_PPPOATM="CONFIG_PPPOATM:\t missing PPPoA 
support (optional, needed by pppoatm plugin)"
+               fi
+               check_extra_config
+       fi
+
+       echo
+       elog "pon, poff and plog scripts have been supplied for experienced 
users."
+       elog "Users needing particular scripts (ssh,rsh,etc.) should check out 
the"
+       elog "/usr/share/doc/${PF}/scripts directory."
+}

Reply via email to