summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-07-28 14:40:26 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-07-28 14:40:26 +0000
commit0ce78c9f4588f365d5c3f945000d7903ed1e4359 (patch)
treea18013764221fd969b3f49eacaca693b50f14581 /net-im/silc-toolkit
parentRemove vulnerable version, bug 271703 (diff)
downloadgentoo-2-0ce78c9f4588f365d5c3f945000d7903ed1e4359.tar.gz
gentoo-2-0ce78c9f4588f365d5c3f945000d7903ed1e4359.tar.bz2
gentoo-2-0ce78c9f4588f365d5c3f945000d7903ed1e4359.zip
Remove vulnerable version, bu 271733
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'net-im/silc-toolkit')
-rw-r--r--net-im/silc-toolkit/ChangeLog5
-rw-r--r--net-im/silc-toolkit/silc-toolkit-1.0.ebuild61
2 files changed, 4 insertions, 62 deletions
diff --git a/net-im/silc-toolkit/ChangeLog b/net-im/silc-toolkit/ChangeLog
index e405da309c93..5a4d39f93cfe 100644
--- a/net-im/silc-toolkit/ChangeLog
+++ b/net-im/silc-toolkit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-im/silc-toolkit
# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/silc-toolkit/ChangeLog,v 1.93 2009/03/14 18:30:12 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/silc-toolkit/ChangeLog,v 1.94 2009/07/28 14:40:26 darkside Exp $
+
+ 28 Jul 2009; Jeremy Olexa <darkside@gentoo.org> -silc-toolkit-1.0.ebuild:
+ Remove vulnerable version, bu 271733
14 Mar 2009; Raúl Porcel <armin76@gentoo.org>
-silc-toolkit-1.1.2-r2.ebuild, silc-toolkit-1.1.7.ebuild,
diff --git a/net-im/silc-toolkit/silc-toolkit-1.0.ebuild b/net-im/silc-toolkit/silc-toolkit-1.0.ebuild
deleted file mode 100644
index 77bb3b04d928..000000000000
--- a/net-im/silc-toolkit/silc-toolkit-1.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/silc-toolkit/silc-toolkit-1.0.ebuild,v 1.16 2008/03/31 09:03:00 armin76 Exp $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="SDK for the SILC protocol"
-HOMEPAGE="http://silcnet.org/"
-SRC_URI="http://silcnet.org/download/toolkit/sources/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sparc x86"
-IUSE="debug ipv6"
-
-RDEPEND="!<=net-im/silc-client-1.0.1"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_unpack() {
- unpack ${A}
-
- # They have incorrect DESTDIR usage
- sed -i '/\$(srcdir)\/tutorial/s/\$(prefix)/\$(docdir)/' "${S}"/Makefile.am
- sed -i '/\$(srcdir)\/tutorial/s/\$(prefix)/\$(docdir)/' "${S}"/Makefile.in
-
- # Stop them from unsetting our CFLAGS
- sed -i '/^CFLAGS=$/d' "${S}"/configure || die
-}
-
-src_compile() {
- econf \
- --datadir=/usr/share/${PN} \
- --mandir=/usr/share/man \
- --includedir=/usr/include/${PN} \
- --with-etcdir=/etc/silc \
- --with-helpdir=/usr/share/${PN}/help \
- --with-simdir=/usr/$(get_libdir)/${PN} \
- --with-docdir=/usr/share/doc/${PF} \
- --with-logsdir=/var/log/${PN} \
- --enable-shared \
- --enable-static \
- $(use_enable debug) \
- $(use_enable ipv6)
-
- emake || die "emake failed"
- emake -C lib || die "emake -C lib failed"
-}
-
-src_install() {
- make install DESTDIR="${D}" || die "make install failed"
-
- rm -rf \
- "${D}"/etc/${PN}/silcd.conf \
- "${D}"/usr/share/man \
- "${D}"/usr/share/doc/${PF}/examples \
- "${D}"/usr/share/silc-toolkit \
- "${D}"/var/log/silc-toolkit \
- "${D}"/etc/silc
-}