+++ /dev/null
-# ChangeLog for www-client/prozgui
-# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/prozgui/ChangeLog,v 1.2 2005/03/15 21:54:49 seemant Exp $
-
-*prozgui-2.0.5 (15 Mar 2005)
-
- 15 Mar 2005; Seemant Kulleen <seemant@gentoo.org>
- +files/prozgui-2.0.5-configure.patch, +files/prozgui-2.0.5-options.patch,
- +prozgui-2.0.5.ebuild:
- Moved from net-www/prozgui to www-client/prozgui.
-
- 09 Sep 2004; <blubb@gentoo.org> +files/prozgui-2.0.5-options.patch,
- prozgui-2.0.5.ebuild:
- added the options-patch to get the package compile and marked testing on amd64
-
- 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> prozgui-2.0.5.ebuild:
- virtual/glibc -> virtual/libc
-
- 27 Apr 2004; Aron Griffis <agriffis@gentoo.org> prozgui-2.0.5.ebuild:
- Add inherit eutils
-
-*prozgui-2.0.5 (11 Oct 2003)
-
- 11 Oct 2003; Martin Holzer <mholzer@gentoo.org> Changelog,
- prozgui-2.0.5.ebuild:
- Initial ebuild. Submitted by Andrew S. <andrew-news@shaw.ca> in #25220
+++ /dev/null
-MD5 a56c399e9953301d2a6adb9d45dde181 prozgui-2.0.5.ebuild 1152
-MD5 31f5121b9c5bdbe84e28d0c13280d6f6 ChangeLog 1016
-MD5 5f739972c94b80abcd0b1eaa28ec0ae7 files/digest-prozgui-2.0.5 70
-MD5 c7d264f1704e0f1f206255359c6055f7 files/prozgui-2.0.5-configure.patch 668
-MD5 875e27636c38e715f3d93f8b51b24aa0 files/prozgui-2.0.5-options.patch 499
+++ /dev/null
-MD5 b501ecce2844d411ba39be761027ac4e prozgui-2.0.5beta.tar.bz2 777507
+++ /dev/null
---- configure 2003-07-24 18:39:36.000000000 -0600
-+++ configure 2003-07-24 18:38:58.000000000 -0600
-@@ -12347,7 +12347,7 @@
-
-
-
--for ac_header in FL/Fl.H
-+for ac_header in fltk-1.1/FL/Fl.H
- do
- as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
- if eval "test \"\${$as_ac_Header+set}\" = set"; then
-@@ -14258,7 +14258,7 @@
- fi
-
-
--CXXFLAGS="-Wall -ggdb -D_REENTRANT"
-+CXXFLAGS="-Wall -ggdb -D_REENTRANT $CXXFLAGS"
- ac_config_files="$ac_config_files Makefile src/Makefile man/Makefile intl/Makefile po/Makefile.in"
- cat >confcache <<\_ACEOF
- # This file is a shell script that caches the results of configure
+++ /dev/null
---- src/options.cpp 2004-09-09 20:41:15.287609848 +0200
-+++ src/options.cpp 2004-09-09 20:41:51.161156240 +0200
-@@ -191,7 +191,7 @@
- rt.ftp_proxy->username = strdup(in_ftp_proxy_user->value());
- free(rt.ftp_proxy->passwd);
- rt.ftp_proxy->passwd = strdup(in_ftp_proxy_passwd->value());
-- rt.ftp_proxy->type = (enum proxy_type) in_ftp_proxy_type->value();
-+ rt.ftp_proxy->type = (proxy_type) in_ftp_proxy_type->value();
- rt.use_ftp_proxy = in_use_ftp_proxy->value() == 1 ? TRUE : FALSE;
-
-
+++ /dev/null
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/prozgui/prozgui-2.0.5.ebuild,v 1.1 2005/03/15 21:49:08 seemant Exp $
-
-inherit eutils
-
-DESCRIPTION="A Graphical download manager"
-HOMEPAGE="http://prozilla.genesys.ro/"
-SRC_URI="http://prozilla.genesys.ro/downloads/${PN}/tarballs/${P}beta.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~sparc ~ppc ~amd64"
-IUSE=""
-
-DEPEND="virtual/libc
- >=x11-libs/fltk-1.1"
-
-S="${WORKDIR}/${P}beta"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-configure.patch
- epatch ${FILESDIR}/${P}-options.patch
-}
-
-src_compile() {
- ./configure --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- --host=${CHOST} \
- --sysconfdir=/etc \
- --disable-nls \
- --with-fltk-includes=`fltk-config --cflags | cut -d' ' -f1 | sed 's/-I//'` \
- --with-fltk-libs=`fltk-config --ldflags | cut -d' ' -f1 | sed 's/-L//'` || die
- emake || die
-}
-
-src_install () {
- make DESTDIR=${D} \
- sysconfdir=${D}/etc \
- install || die
-
- dodoc ANNOUNCE AUTHORS COPYING CREDITS ChangeLog FAQ NEWS README TODO
-}