Import gwget-1.0.4 as wip/gwget.

Gwget is a download manager for the Gnome Desktop. The main features are:

* Resume: By default, gwget tries to continue any download.
* Notification: Gwget tries to use the Gnome notification area support,
  if available. You can close the main window and gwget runs in the background.
* Recursivity: Gwget detects when you put a html, php, asp or a web page dir in
  the url to download, and ask you to only download certain files (multimedia,
  only the index, and so on).
* Drag & Drop: You can d&d a url to the main gwget window or the notification
  area icon to add a new download.
This commit is contained in:
Kamel Ibn Aziz Derouiche 2010-03-19 19:40:00 +00:00 committed by Thomas Klausner
parent 565e8dd108
commit 1ba74166e7
5 changed files with 133 additions and 0 deletions

10
gwget/DESCR Normal file
View file

@ -0,0 +1,10 @@
Gwget is a download manager for the Gnome Desktop. The main features are:
* Resume: By default, gwget tries to continue any download.
* Notification: Gwget tries to use the Gnome notification area support,
if available. You can close the main window and gwget runs in the background.
* Recursivity: Gwget detects when you put a html, php, asp or a web page dir in
the url to download, and ask you to only download certain files (multimedia,
only the index, and so on).
* Drag & Drop: You can d&d a url to the main gwget window or the notification
area icon to add a new download.

35
gwget/Makefile Normal file
View file

@ -0,0 +1,35 @@
# $NetBSD: Makefile,v 1.1.1.1 2010/03/19 19:40:00 jihbed Exp $
#
DISTNAME= gwget-1.0.4
CATEGORIES= gnome net
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gwget/1.0/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc.gnome@gmail.com
HOMEPAGE= http://projects.gnome.org/gwget/
COMMENT= GNOME wget front-end
LICENSE= gnu-gpl-v2
DEPENDS+= wget>=1.12:../../net/wget
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_TOOLS+= pkg-config intltool msgfmt gmake
GCONF_SCHEMAS+= data/gwget.schemas
.include "options.mk"
.include "../../devel/GConf/schemas.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../devel/libgnome/buildlink3.mk"
.include "../../devel/libgnomeui/buildlink3.mk"
.include "../../devel/libglade/buildlink3.mk"
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../sysutils/dbus-glib/buildlink3.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../x11/gtk2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

58
gwget/PLIST Normal file
View file

@ -0,0 +1,58 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2010/03/19 19:40:00 jihbed Exp $
bin/gwget
lib/epiphany/2.28/extensions/gwget.xml
lib/epiphany/2.28/extensions/libgwgetextension.la
share/applications/gwget.desktop
share/dbus-1/services/org.gnome.gwget.service
share/gconf/schemas/gwget.schemas
share/gwget/downloading.png
share/gwget/gwget-large.png
share/gwget/gwget-off.png
share/gwget/gwget.png
share/gwget/gwget.ui
share/gwget/gwget.xpm
share/gwget/newdownload.png
share/gwget/preferences.ui
share/locale/ar/LC_MESSAGES/gwget.mo
share/locale/bg/LC_MESSAGES/gwget.mo
share/locale/ca/LC_MESSAGES/gwget.mo
share/locale/cs/LC_MESSAGES/gwget.mo
share/locale/da/LC_MESSAGES/gwget.mo
share/locale/de/LC_MESSAGES/gwget.mo
share/locale/dz/LC_MESSAGES/gwget.mo
share/locale/el/LC_MESSAGES/gwget.mo
share/locale/en_CA/LC_MESSAGES/gwget.mo
share/locale/en_GB/LC_MESSAGES/gwget.mo
share/locale/es/LC_MESSAGES/gwget.mo
share/locale/eu/LC_MESSAGES/gwget.mo
share/locale/fi/LC_MESSAGES/gwget.mo
share/locale/fr/LC_MESSAGES/gwget.mo
share/locale/he/LC_MESSAGES/gwget.mo
share/locale/hu/LC_MESSAGES/gwget.mo
share/locale/it/LC_MESSAGES/gwget.mo
share/locale/ja/LC_MESSAGES/gwget.mo
share/locale/lt/LC_MESSAGES/gwget.mo
share/locale/lv/LC_MESSAGES/gwget.mo
share/locale/mk/LC_MESSAGES/gwget.mo
share/locale/nb/LC_MESSAGES/gwget.mo
share/locale/ne/LC_MESSAGES/gwget.mo
share/locale/nl/LC_MESSAGES/gwget.mo
share/locale/oc/LC_MESSAGES/gwget.mo
share/locale/pa/LC_MESSAGES/gwget.mo
share/locale/pl/LC_MESSAGES/gwget.mo
share/locale/pt/LC_MESSAGES/gwget.mo
share/locale/pt_BR/LC_MESSAGES/gwget.mo
share/locale/ro/LC_MESSAGES/gwget.mo
share/locale/ru/LC_MESSAGES/gwget.mo
share/locale/rw/LC_MESSAGES/gwget.mo
share/locale/sk/LC_MESSAGES/gwget.mo
share/locale/sq/LC_MESSAGES/gwget.mo
share/locale/sv/LC_MESSAGES/gwget.mo
share/locale/th/LC_MESSAGES/gwget.mo
share/locale/tr/LC_MESSAGES/gwget.mo
share/locale/uk/LC_MESSAGES/gwget.mo
share/locale/vi/LC_MESSAGES/gwget.mo
share/locale/zh_CN/LC_MESSAGES/gwget.mo
share/locale/zh_HK/LC_MESSAGES/gwget.mo
share/locale/zh_TW/LC_MESSAGES/gwget.mo
share/pixmaps/gwget.png

5
gwget/distinfo Normal file
View file

@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.1.1.1 2010/03/19 19:40:00 jihbed Exp $
SHA1 (gwget-1.0.4.tar.bz2) = d2cc6eafb23488798939f99f6aad4e1a87f1d7c0
RMD160 (gwget-1.0.4.tar.bz2) = 461bc7823aaf5043def1dbf15b07fb098216086d
Size (gwget-1.0.4.tar.bz2) = 444843 bytes

25
gwget/options.mk Normal file
View file

@ -0,0 +1,25 @@
# $NetBSD: options.mk,v 1.1.1.1 2010/03/19 19:40:00 jihbed Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.gwget
PKG_SUPPORTED_OPTIONS= libnotify epiphany-extension epiphany-version
PKG_SUGGESTED_OPTIONS= libnotify epiphany-extension epiphany-version
.include "../../mk/bsd.options.mk"
.if !empty (PKG_OPTIONS:Mepiphany-extension)
DEPENDS+= epiphany-extensions>=2.28.1:../../www/epiphany-extensions
CONFIGURE_ARGS+= --enable-epiphany-extension
.endif
.if !empty(PKG_OPTIONS:Mepiphany-version)
CONFIGURE_ARGS+= --with-epiphany-version
. include "../../www/epiphany/buildlink3.mk"
.endif
.if !empty (PKG_OPTIONS:Mlibnotify)
BUILDLINK_API_DEPENDS.libnotify+= libnotify>=0.3.2
. include "../../sysutils/libnotify/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-libnotify
.endif