* [gentoo-commits] repo/gentoo:master commit in: net-dialup/diald/
@ 2017-09-05 7:11 Tim Harder
0 siblings, 0 replies; 4+ messages in thread
From: Tim Harder @ 2017-09-05 7:11 UTC (permalink / raw
To: gentoo-commits
commit: 94b30f4bcc64113eb2db0c199333652fb071051a
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 5 06:47:33 2017 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Tue Sep 5 07:10:53 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b30f4b
net-dialup/diald: drop unused eutils eclass and use emake
net-dialup/diald/diald-1.0-r3.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-dialup/diald/diald-1.0-r3.ebuild b/net-dialup/diald/diald-1.0-r3.ebuild
index 05503d0d211..8a524090ebc 100644
--- a/net-dialup/diald/diald-1.0-r3.ebuild
+++ b/net-dialup/diald/diald-1.0-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit eutils autotools pam
+inherit autotools pam
DESCRIPTION="Daemon that provides on demand IP links via SLIP or PPP"
HOMEPAGE="http://diald.sourceforge.net"
@@ -32,7 +32,7 @@ src_prepare() {
}
src_install() {
- make \
+ emake \
DESTDIR="${D}" \
sysconfdir=/etc \
bindir=/usr/bin \
@@ -42,7 +42,7 @@ src_install() {
BINGRP=root \
ROOTUID=root \
ROOTGRP=root \
- install || die "make failed"
+ install
use pam && pamd_mimic_system diald auth account
dodir /var/cache/diald
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dialup/diald/
@ 2017-09-05 7:11 Tim Harder
0 siblings, 0 replies; 4+ messages in thread
From: Tim Harder @ 2017-09-05 7:11 UTC (permalink / raw
To: gentoo-commits
commit: 6480b7e0bdae597c68342d3953843c63d6480025
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 5 06:50:57 2017 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Tue Sep 5 07:10:54 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6480b7e0
net-dialup/diald: stabilize 1.0-r3 for x86
net-dialup/diald/diald-1.0-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-dialup/diald/diald-1.0-r3.ebuild b/net-dialup/diald/diald-1.0-r3.ebuild
index 8a524090ebc..46729a5be18 100644
--- a/net-dialup/diald/diald-1.0-r3.ebuild
+++ b/net-dialup/diald/diald-1.0-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="Old-MIT GPL-2" # GPL-2 only for init script
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="pam"
DEPEND="pam? ( virtual/pam )
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dialup/diald/
@ 2017-09-05 7:11 Tim Harder
0 siblings, 0 replies; 4+ messages in thread
From: Tim Harder @ 2017-09-05 7:11 UTC (permalink / raw
To: gentoo-commits
commit: 8bf459fb05bf26cd0ff0b408dd0f99fde976921a
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 5 06:52:01 2017 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Tue Sep 5 07:10:54 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bf459fb
net-dialup/diald: remove old
net-dialup/diald/diald-1.0-r2.ebuild | 58 ------------------------------------
1 file changed, 58 deletions(-)
diff --git a/net-dialup/diald/diald-1.0-r2.ebuild b/net-dialup/diald/diald-1.0-r2.ebuild
deleted file mode 100644
index 3eccbf87c45..00000000000
--- a/net-dialup/diald/diald-1.0-r2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils autotools pam
-
-DESCRIPTION="Daemon that provides on demand IP links via SLIP or PPP"
-HOMEPAGE="http://diald.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="Old-MIT GPL-2" # GPL-2 only for init script
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE="pam"
-
-DEPEND="pam? ( virtual/pam )
- sys-apps/tcp-wrappers"
-RDEPEND="${DEPEND}
- net-dialup/ppp"
-
-src_unpack() {
- unpack ${A}
-
- epatch "${FILESDIR}/${P}-posix.patch"
- epatch "${FILESDIR}/${P}-gentoo.patch"
- if ! use pam; then
- epatch "${FILESDIR}/${P}-nopam.patch"
- rm "${S}"/README.pam
- cd "${S}"
- eautoconf
- fi
-}
-
-src_install() {
- make \
- DESTDIR="${D}" \
- sysconfdir=/etc \
- bindir=/usr/bin \
- sbindir=/usr/sbin \
- mandir=/usr/share/man \
- libdir=/usr/lib/diald \
- BINGRP=root \
- ROOTUID=root \
- ROOTGRP=root \
- install || die "make failed"
- use pam && pamd_mimic_system diald auth account
-
- dodir /var/cache/diald
- mknod -m 0660 "${D}/var/cache/diald/diald.ctl" p
-
- dodoc BUGS CHANGES NOTES README* \
- THANKS TODO TODO.budget doc/diald-faq.txt
- docinto setup ; cp -pPR setup/* "${D}/usr/share/doc/${PF}/setup"
- docinto contrib ; cp -pPR contrib/* "${D}/usr/share/doc/${PF}/contrib"
- prepalldocs
-
- insinto /etc/diald ; doins "${FILESDIR}"/{diald.conf,diald.filter}
- newinitd "${FILESDIR}/diald-init" diald
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dialup/diald/
@ 2019-10-12 21:05 Mikle Kolyada
0 siblings, 0 replies; 4+ messages in thread
From: Mikle Kolyada @ 2019-10-12 21:05 UTC (permalink / raw
To: gentoo-commits
commit: eab16400e36d9aa11b5f4b83e535b01914f72eae
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 12 21:05:07 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Oct 12 21:05:07 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eab16400
net-dialup/diald: migrate to sys-libs/pam
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
net-dialup/diald/diald-1.0-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-dialup/diald/diald-1.0-r3.ebuild b/net-dialup/diald/diald-1.0-r3.ebuild
index 46729a5be18..eef22960360 100644
--- a/net-dialup/diald/diald-1.0-r3.ebuild
+++ b/net-dialup/diald/diald-1.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -14,7 +14,7 @@ SLOT="0"
KEYWORDS="~amd64 x86"
IUSE="pam"
-DEPEND="pam? ( virtual/pam )
+DEPEND="pam? ( sys-libs/pam )
sys-apps/tcp-wrappers"
RDEPEND="${DEPEND}
net-dialup/ppp"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-10-12 21:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-05 7:11 [gentoo-commits] repo/gentoo:master commit in: net-dialup/diald/ Tim Harder
-- strict thread matches above, loose matches on Subject: below --
2019-10-12 21:05 Mikle Kolyada
2017-09-05 7:11 Tim Harder
2017-09-05 7:11 Tim Harder
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox