summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2013-07-21 09:05:52 +0000
committerPacho Ramos <pacho@gentoo.org>2013-07-21 09:05:52 +0000
commit702d739520ff8dea7d633916ceadb0ad81119b05 (patch)
tree78acf15755d94c1b16dbd45b6a312781358c129e /net-dns/ez-ipupdate
parentVersion bump. (diff)
downloadgentoo-2-702d739520ff8dea7d633916ceadb0ad81119b05.tar.gz
gentoo-2-702d739520ff8dea7d633916ceadb0ad81119b05.tar.bz2
gentoo-2-702d739520ff8dea7d633916ceadb0ad81119b05.zip
Cleanup due #92799
(Portage version: 2.1.12.13/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-dns/ez-ipupdate')
-rw-r--r--net-dns/ez-ipupdate/ChangeLog8
-rw-r--r--net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta8-r6.ebuild109
-rw-r--r--net-dns/ez-ipupdate/metadata.xml3
3 files changed, 7 insertions, 113 deletions
diff --git a/net-dns/ez-ipupdate/ChangeLog b/net-dns/ez-ipupdate/ChangeLog
index c33e69aea84f..768a7c6c56a2 100644
--- a/net-dns/ez-ipupdate/ChangeLog
+++ b/net-dns/ez-ipupdate/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-dns/ez-ipupdate
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/ez-ipupdate/ChangeLog,v 1.34 2012/06/14 02:09:47 zmedico Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dns/ez-ipupdate/ChangeLog,v 1.35 2013/07/21 09:05:52 pacho Exp $
+
+ 21 Jul 2013; Pacho Ramos <pacho@gentoo.org>
+ -ez-ipupdate-3.0.11_beta8-r6.ebuild, metadata.xml:
+ Cleanup due #92799
14 Jun 2012; Zac Medico <zmedico@gentoo.org>
ez-ipupdate-3.0.11.13.3_beta8.ebuild, ez-ipupdate-3.0.11_beta8-r6.ebuild:
diff --git a/net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta8-r6.ebuild b/net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta8-r6.ebuild
deleted file mode 100644
index 43a3f20f7cfd..000000000000
--- a/net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta8-r6.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta8-r6.ebuild,v 1.4 2012/06/14 02:09:47 zmedico Exp $
-
-EAPI="2"
-
-inherit eutils user
-
-PATCH_VERSION="10"
-MY_PV="${PV/_beta/b}"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-DESCRIPTION="Dynamic DNS client for lots of dynamic dns services"
-HOMEPAGE="http://ez-ipupdate.com/"
-SRC_URI="mirror://debian/pool/main/e/ez-ipupdate/${PN}_${MY_PV}.orig.tar.gz
- mirror://debian/pool/main/e/ez-ipupdate/${PN}_${MY_PV}-${PATCH_VERSION}.diff.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_prepare() {
- epatch "${WORKDIR}/${PN}_${MY_PV}-${PATCH_VERSION}.diff"
- epatch "${FILESDIR}/${P}-zoneedit.diff"
- epatch "${FILESDIR}/${P}-dnsexit.diff"
- epatch "${FILESDIR}/${P}-3322.diff"
- epatch "${FILESDIR}/${P}-linux.diff"
-
- # comment out obsolete options
- sed -i -e "s:^\(run-as-user.*\):#\1:g" \
- -e "s:^\(cache-file.*\):#\1:g" ex*conf
-
- # make 'missing' executable (bug #103480)
- chmod +x missing
-}
-
-src_configure() {
- econf --bindir=/usr/sbin || die "econf failed"
-}
-
-src_compile() {
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- newinitd "${FILESDIR}/ez-ipupdate.initd" ez-ipupdate
- keepdir /etc/ez-ipupdate /var/cache/ez-ipupdate
-
- # install docs
- dodoc README
- newdoc debian/README.Debian README.debian
- newdoc debian/changelog ChangeLog.debian
- newdoc CHANGELOG ChangeLog
-
- # install example configs
- docinto examples
- dodoc ex*conf
-}
-
-pkg_preinst() {
- enewgroup ez-ipupd
- enewuser ez-ipupd -1 -1 /var/cache/ez-ipupdate ez-ipupd
-}
-
-pkg_postinst() {
- chmod 750 /etc/ez-ipupdate /var/cache/ez-ipupdate
- chown ez-ipupd:ez-ipupd /etc/ez-ipupdate /var/cache/ez-ipupdate
-
- elog
- elog "Please create one or more config files in"
- elog "/etc/ez-ipupdate/. A bunch of samples can"
- elog "be found in the doc directory."
- elog
- elog "All config files must have a '.conf' extension."
- elog
- elog "Please do not use the 'run-as-user', 'run-as-euser',"
- elog "'cache-file' and 'pidfile' options, since these are"
- elog "handled internally by the init-script!"
- elog
- elog "If you want to use ez-ipupdate in daemon mode,"
- elog "please add 'daemon' to the config file(s) and"
- elog "add the ez-ipupdate init-script to the default"
- elog "runlevel."
- elog
- elog "Without the 'daemon' option, you can run the"
- elog "init-script with the 'update' parameter inside"
- elog "your PPP ip-up script."
- elog
-
- if [ -f /etc/ez-ipupdate.conf ]; then
- elog "!!! IMPORTANT UPDATE NOTICE !!!"
- elog
- elog "The ez-ipupdate init-script can now handle more"
- elog "than one config file. New config file location is"
- elog "/etc/ez-ipupdate/*.conf"
- elog
- if [ ! -f /etc/ez-ipupdate/default.conf ]; then
- mv -f /etc/ez-ipupdate.conf /etc/ez-ipupdate/default.conf
- elog "Your old configuration has been moved to"
- elog "/etc/ez-ipupdate/default.conf"
- elog
- fi
- fi
-}
diff --git a/net-dns/ez-ipupdate/metadata.xml b/net-dns/ez-ipupdate/metadata.xml
index 0f5000cea0bf..b63524a497aa 100644
--- a/net-dns/ez-ipupdate/metadata.xml
+++ b/net-dns/ez-ipupdate/metadata.xml
@@ -2,8 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
- <email>sbriesen@gentoo.org</email>
- <name>Stefan Briesenick</name>
+ <email>maintainer-needed@gentoo.org</email>
</maintainer>
<longdescription lang="en">
Ez-ipupdate is a client for the dynamic IP service offered by