diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2007-12-05 05:20:42 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2007-12-05 05:20:42 +0000 |
commit | 5b9f159709f31c8d8c7953913b55520f6eabcfa5 (patch) | |
tree | 3f312a6a2a9163c92e181a2f4f4011d653ad0576 /www-misc/htdig | |
parent | tidy (diff) | |
download | gentoo-2-5b9f159709f31c8d8c7953913b55520f6eabcfa5.tar.gz gentoo-2-5b9f159709f31c8d8c7953913b55520f6eabcfa5.tar.bz2 gentoo-2-5b9f159709f31c8d8c7953913b55520f6eabcfa5.zip |
-m Removed insecure htdig-3.2.0_beta6-r2 (sec bug #200285).
(Portage version: 2.1.3.14)
Diffstat (limited to 'www-misc/htdig')
-rw-r--r-- | www-misc/htdig/ChangeLog | 5 | ||||
-rw-r--r-- | www-misc/htdig/files/digest-htdig-3.2.0_beta6-r2 | 3 | ||||
-rw-r--r-- | www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild | 61 |
3 files changed, 4 insertions, 65 deletions
diff --git a/www-misc/htdig/ChangeLog b/www-misc/htdig/ChangeLog index d5593cc4c630..15894933eae3 100644 --- a/www-misc/htdig/ChangeLog +++ b/www-misc/htdig/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-misc/htdig # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-misc/htdig/ChangeLog,v 1.41 2007/12/04 19:46:11 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-misc/htdig/ChangeLog,v 1.42 2007/12/05 05:20:41 wrobel Exp $ + + 05 Dec 2007; <wrobel@gentoo.org> -htdig-3.2.0_beta6-r2.ebuild: + -m Removed insecure htdig-3.2.0_beta6-r2 (sec bug #200285). 04 Dec 2007; Tobias Scherbaum <dertobi123@gentoo.org> htdig-3.2.0_beta6-r3.ebuild: diff --git a/www-misc/htdig/files/digest-htdig-3.2.0_beta6-r2 b/www-misc/htdig/files/digest-htdig-3.2.0_beta6-r2 deleted file mode 100644 index 71d425d06977..000000000000 --- a/www-misc/htdig/files/digest-htdig-3.2.0_beta6-r2 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 8a6952f5b97e305dbb7489045bad220f htdig-3.2.0b6.tar.gz 3104936 -RMD160 621e85920f3452bc1a28a61cf7f8b3e08808bc55 htdig-3.2.0b6.tar.gz 3104936 -SHA256 6da9e0ee8627d5302f5685a1b3e5de5f1e6e8df4c0a92c0ca00796bca9e546c8 htdig-3.2.0b6.tar.gz 3104936 diff --git a/www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild b/www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild deleted file mode 100644 index 40e6aaedf5c4..000000000000 --- a/www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild,v 1.14 2007/06/25 14:21:01 armin76 Exp $ - -inherit eutils autotools - -MY_PV=${PV/_beta/b} -S=${WORKDIR}/${PN}-${MY_PV} - -DESCRIPTION="HTTP/HTML indexing and searching system" -SRC_URI="http://www.htdig.org/files/${PN}-${MY_PV}.tar.gz" -HOMEPAGE="http://www.htdig.org" -KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd" -LICENSE="GPL-2" - -DEPEND=">=sys-libs/zlib-1.1.3 - app-arch/unzip - ssl? ( dev-libs/openssl )" - -IUSE="ssl" -SLOT="0" - -src_unpack() { - unpack ${A} - - cd ${S} - epatch ${FILESDIR}/${P}-gcc4.patch - epatch ${FILESDIR}/${P}-as-needed.patch - eautoreconf -} - -src_compile() { - local conf=" - --with-config-dir=/etc/${PN} \ - --with-default-config-file=/etc/${PN}/${PN}.conf \ - --with-database-dir=/var/lib/${PN}/db \ - --with-cgi-bin-dir=/var/www/localhost/cgi-bin \ - --with-search-dir=/var/www/localhost/htdocs/${PN} \ - --with-image-dir=/var/www/localhost/htdocs/${PN} - " - use ssl && conf="${conf} --with-ssl" - - econf ${conf} || die "configure failed" - -# --with-image-url-prefix=file:///var/www/localhost/htdocs/${PN} \ - - emake || die "emake failed" -} - -src_install () { - emake DESTDIR=${D} install || die "make install failed" - - dodoc ChangeLog COPYING README - dohtml -r htdoc - - dosed /etc/${PN}/${PN}.conf - dosed /usr/bin/rundig - - # symlink htsearch so it can be easily found. see bug #62087 - dosym /var/www/localhost/cgi-bin/htsearch /usr/bin/htsearch -} |