diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-06-18 16:38:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-06-18 16:38:19 +0000 |
commit | 082f4bf11a151450aa782a05b016e58e6c57b1d4 (patch) | |
tree | e90a1fdf4eb447bbfe6f303e4b63ea2b96c11daa /net-misc/wget | |
parent | Version bump (diff) | |
download | gentoo-2-082f4bf11a151450aa782a05b016e58e6c57b1d4.tar.gz gentoo-2-082f4bf11a151450aa782a05b016e58e6c57b1d4.tar.bz2 gentoo-2-082f4bf11a151450aa782a05b016e58e6c57b1d4.zip |
Version bump #228045 by Conrad Kostecki.
(Portage version: 2.2_pre8/cvs/Linux 2.6.25 x86_64)
Diffstat (limited to 'net-misc/wget')
-rw-r--r-- | net-misc/wget/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/wget/wget-1.11.3.ebuild | 67 |
2 files changed, 73 insertions, 1 deletions
diff --git a/net-misc/wget/ChangeLog b/net-misc/wget/ChangeLog index 0bda75631517..2ee203530a4a 100644 --- a/net-misc/wget/ChangeLog +++ b/net-misc/wget/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/wget # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.98 2008/05/07 20:54:13 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.99 2008/06/18 16:38:19 vapier Exp $ + +*wget-1.11.3 (18 Jun 2008) + + 18 Jun 2008; Mike Frysinger <vapier@gentoo.org> +wget-1.11.3.ebuild: + Version bump #228045 by Conrad Kostecki. 07 May 2008; Markus Meier <maekke@gentoo.org> wget-1.11.1.ebuild: amd64 stable, bug #220569 diff --git a/net-misc/wget/wget-1.11.3.ebuild b/net-misc/wget/wget-1.11.3.ebuild new file mode 100644 index 000000000000..2574b86490fb --- /dev/null +++ b/net-misc/wget/wget-1.11.3.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.11.3.ebuild,v 1.1 2008/06/18 16:38:19 vapier Exp $ + +inherit eutils flag-o-matic + +DESCRIPTION="Network utility to retrieve files from the WWW" +HOMEPAGE="http://www.gnu.org/software/wget/" +SRC_URI="mirror://gnu/wget/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="debug ipv6 nls socks5 ssl static" + +RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b ) + socks5? ( net-proxy/dante )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-1.11-linking.patch +} + +src_compile() { + # openssl-0.9.8 now builds with -pthread on the BSD's + use elibc_FreeBSD && use ssl && append-ldflags -pthread + + use static && append-ldflags -static + econf \ + $(use_with ssl) $(use_enable ssl opie) $(use_enable ssl digest) \ + $(use_enable ipv6) \ + $(use_enable nls) \ + $(use_enable debug) \ + $(use_with socks5 socks) \ + || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog* MAILING-LIST NEWS README + dodoc doc/sample.wgetrc + + use ipv6 && cat "${FILESDIR}"/wgetrc-ipv6 >> "${D}"/etc/wgetrc + + sed -i \ + -e 's:/usr/local/etc:/etc:g' \ + "${D}"/etc/wgetrc \ + "${D}"/usr/share/man/man1/wget.1 \ + "${D}"/usr/share/info/wget.info +} + +pkg_preinst() { + ewarn "The /etc/wget/wgetrc file has been relocated to /etc/wgetrc" + if [[ -e ${ROOT}/etc/wget/wgetrc ]] ; then + if [[ -e ${ROOT}/etc/wgetrc ]] ; then + ewarn "You have both /etc/wget/wgetrc and /etc/wgetrc ... you should delete the former" + else + einfo "Moving /etc/wget/wgetrc to /etc/wgetrc for you" + mv "${ROOT}"/etc/wget/wgetrc "${ROOT}"/etc/wgetrc + rmdir "${ROOT}"/etc/wget 2>/dev/null + fi + fi +} |