summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2009-01-04 07:35:31 +0000
committerDaniel Black <dragonheart@gentoo.org>2009-01-04 07:35:31 +0000
commit17c032057efb202b8223da5214080c9bc5aa4a16 (patch)
tree0e53ce4094ca097a2329c4b52274187182ebed89 /net-dns/noip-updater
parentversion bump as per bug #253655 thanks to craig (diff)
downloadgentoo-2-17c032057efb202b8223da5214080c9bc5aa4a16.tar.gz
gentoo-2-17c032057efb202b8223da5214080c9bc5aa4a16.tar.bz2
gentoo-2-17c032057efb202b8223da5214080c9bc5aa4a16.zip
vulnerable version cleanout
(Portage version: 2.2_rc20/cvs/Linux 2.6.26-gentoo-r4 x86_64)
Diffstat (limited to 'net-dns/noip-updater')
-rw-r--r--net-dns/noip-updater/ChangeLog9
-rw-r--r--net-dns/noip-updater/files/noip-2.1.3-cflags.patch11
-rw-r--r--net-dns/noip-updater/files/noip-2.1.4-daemon.patch21
-rw-r--r--net-dns/noip-updater/noip-updater-2.1.7-r1.ebuild57
-rw-r--r--net-dns/noip-updater/noip-updater-2.1.7.ebuild57
5 files changed, 7 insertions, 148 deletions
diff --git a/net-dns/noip-updater/ChangeLog b/net-dns/noip-updater/ChangeLog
index 7bf14044e615..2fd1cbe806bd 100644
--- a/net-dns/noip-updater/ChangeLog
+++ b/net-dns/noip-updater/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-dns/noip-updater
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/noip-updater/ChangeLog,v 1.37 2008/12/22 20:29:54 armin76 Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dns/noip-updater/ChangeLog,v 1.38 2009/01/04 07:35:31 dragonheart Exp $
+
+ 04 Jan 2009; Daniel Black <dragonheart@gentoo.org>
+ -files/noip-2.1.3-cflags.patch, -files/noip-2.1.4-daemon.patch,
+ -noip-updater-2.1.7.ebuild, -noip-updater-2.1.7-r1.ebuild:
+ vulnerable version cleanout
22 Dec 2008; Raúl Porcel <armin76@gentoo.org> noip-updater-2.1.9.ebuild:
ia64/sparc stable wrt #248709
diff --git a/net-dns/noip-updater/files/noip-2.1.3-cflags.patch b/net-dns/noip-updater/files/noip-2.1.3-cflags.patch
deleted file mode 100644
index 307100c72175..000000000000
--- a/net-dns/noip-updater/files/noip-2.1.3-cflags.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- noip-2.1.3.orig/Makefile 2006-09-07 09:52:55.000000000 +0200
-+++ noip-2.1.3/Makefile 2006-09-07 09:54:54.000000000 +0200
-@@ -21,7 +21,7 @@
- # ARCH=sun
-
- ${TGT}: Makefile ${TGT}.c
-- ${CC} -Wall -g -O2 -D${ARCH} -DPREFIX=\"${PREFIX}\" ${TGT}.c -o ${TGT} ${LIBS}
-+ ${CC} ${CFLAGS} -D${ARCH} -DPREFIX=\"${PREFIX}\" ${TGT}.c -o ${TGT} ${LIBS}
-
- install: ${TGT}
- if [ ! -d ${BINDIR} ]; then mkdir -p ${BINDIR};fi
diff --git a/net-dns/noip-updater/files/noip-2.1.4-daemon.patch b/net-dns/noip-updater/files/noip-2.1.4-daemon.patch
deleted file mode 100644
index 73c26e4d1b93..000000000000
--- a/net-dns/noip-updater/files/noip-2.1.4-daemon.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ur a/noip2.c b/noip2.c
---- a/noip2.c 2004-01-09 14:18:39.000000000 +0000
-+++ b/noip2.c 2007-07-20 14:02:41.100377515 +0100
-@@ -894,16 +894,13 @@
- int x, delay;
- char *err_string;
-
-- x = fork();
-+ x = daemon (0, 0);
- switch (x) {
- case -1: // error
- err_string = strerror(errno);
- Msg( "Can't fork!! (%s) Ending!\n", err_string);
- return FATALERR;
-- default: // parent
-- exit(0);
- case 0: //child
-- setsid();
- if (get_shm_info() == FATALERR)
- return FATALERR;
- log2syslog++;
diff --git a/net-dns/noip-updater/noip-updater-2.1.7-r1.ebuild b/net-dns/noip-updater/noip-updater-2.1.7-r1.ebuild
deleted file mode 100644
index 0e73a632a3be..000000000000
--- a/net-dns/noip-updater/noip-updater-2.1.7-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/noip-updater/noip-updater-2.1.7-r1.ebuild,v 1.1 2008/05/01 21:19:04 dragonheart Exp $
-
-inherit eutils toolchain-funcs
-
-MY_P=${P/-updater/}
-DESCRIPTION="no-ip.com dynamic DNS updater"
-HOMEPAGE="http://www.no-ip.com"
-SRC_URI="http://www.no-ip.com/client/linux/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~mips ~ppc ppc64 sparc x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="sys-devel/gcc"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/noip-2.1.3-cflags.patch
- epatch "${FILESDIR}"/noip-2.1.4-daemon.patch
- sed -i \
- -e "s:\(#define CONFIG_FILEPATH\).*:\1 \"/etc\":" \
- -e "s:\(#define CONFIG_FILENAME\).*:\1 \"/etc/no-ip2.conf\":" \
- noip2.c || die
-}
-
-src_compile() {
- emake \
- CC=$(tc-getCC) \
- PREFIX=/usr \
- CONFDIR=/etc || die "emake failed"
-}
-
-src_install() {
- dosbin noip2
- dodoc README.FIRST
- newinitd "${FILESDIR}"/noip2.start noip
-}
-
-pkg_postinst() {
- elog "Configuration can be done manually via:"
- elog "/usr/sbin/noip2 -C or "
- elog "first time you use the /etc/init.d/noip script; or"
- elog "by using this ebuild's config option."
-}
-
-pkg_config() {
- cd /tmp
- einfo "Answer the following questions."
- noip2 -C || die
-}
diff --git a/net-dns/noip-updater/noip-updater-2.1.7.ebuild b/net-dns/noip-updater/noip-updater-2.1.7.ebuild
deleted file mode 100644
index 7581fadf0d92..000000000000
--- a/net-dns/noip-updater/noip-updater-2.1.7.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/noip-updater/noip-updater-2.1.7.ebuild,v 1.6 2008/03/05 19:37:16 coldwind Exp $
-
-inherit eutils toolchain-funcs
-
-MY_P=${P/-updater/}
-DESCRIPTION="no-ip.com dynamic DNS updater"
-HOMEPAGE="http://www.no-ip.com"
-SRC_URI="http://www.no-ip.com/client/linux/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~mips ~ppc ppc64 sparc x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="sys-devel/gcc"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/noip-2.1.3-cflags.patch
- epatch "${FILESDIR}"/noip-2.1.4-daemon.patch
- sed -i \
- -e "s:\(#define CONFIG_FILEPATH\).*:\1 \"/etc\":" \
- -e "s:\(#define CONFIG_FILENAME\).*:\1 \"/etc/no-ip2.conf\":" \
- noip2.c || die
-}
-
-src_compile() {
- emake \
- CC=$(tc-getCC) \
- PREFIX=/usr \
- CONFDIR=/etc || die "emake failed"
-}
-
-src_install() {
- dosbin noip2
- dodoc README.FIRST
- newinitd "${FILESDIR}"/noip2.start noip
-}
-
-pkg_postinst() {
- elog "Configuration can be done manually via:"
- elog "/usr/sbin/noip2 -C or "
- elog "first time you use the /etc/init.d/noip script; or"
- elog "by using this ebuild's config option."
-}
-
-pkg_config() {
- cd /tmp
- einfo "Answer the following questions."
- noip2 -C || die
-}