From owner-svn-ports-head@FreeBSD.ORG Thu Dec 6 17:33:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0CB52FC; Thu, 6 Dec 2012 17:33:19 +0000 (UTC) (envelope-from duchateau.olivier@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 90EC08FC12; Thu, 6 Dec 2012 17:33:18 +0000 (UTC) Received: by mail-ob0-f182.google.com with SMTP id 16so8302296obc.13 for ; Thu, 06 Dec 2012 09:33:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=fZo3BRh6TLske9zIVPOdYOe9m5djcoRpDAN/f57IXgQ=; b=y8/DUE8d210oWW75zI5zElYaNYZfuwZFRtRjHwjT0fee4DQ3Ck/Ow6I7L4P9mAMolf /mdIBw6MLODA6edqh5Bq/A2Q3TLLfrTmRz+rGMYy46n0yNLl/W7g33IPSTTfc+MpOx5W xe0yQSYoULv/UDaIn9mO2siPHW7BRRMeHTtTD5saSoXjTUsAbWg/1QlpKUs7D5UU/oKb TYqiXoKmzM/Y8ocNsa1seFtu9akhA9eWVffXiHy6xD/rC5+gwnYF8CTgXeSC2jQoAq79 c6V+R6cjTi3ZqBdZE4N1mU0EAW/8E207hk/Tn7c1LO/StJAUlWCwZ41GH8vS2tmdJ1oZ 4asQ== MIME-Version: 1.0 Received: by 10.182.245.20 with SMTP id xk20mr1477300obc.89.1354815197970; Thu, 06 Dec 2012 09:33:17 -0800 (PST) Received: by 10.76.22.196 with HTTP; Thu, 6 Dec 2012 09:33:17 -0800 (PST) In-Reply-To: <201212060002.qB602jXR014210@svn.freebsd.org> References: <201212060002.qB602jXR014210@svn.freebsd.org> Date: Thu, 6 Dec 2012 18:33:17 +0100 Message-ID: Subject: Re: svn commit: r308356 - in head/sysutils: . gigolo From: Olivier Duchateau To: Jason Helfman Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Dec 2012 17:33:19 -0000 In past, I worked on this port, but I think it needs to be enhanced: - It's right it depends of devel/gvfs, but FUSE needs to be installed, otherwise Gigolo don't work (my latest test was 2 years ago). - As it needs FUSE, this port works only on i386 and amd64 architectures. You can see my work here, http://code.google.com/p/olivier-freebsd-ports/source/browse/sysutils/gigolo 2012/12/6 Jason Helfman : > Author: jgh > Date: Thu Dec 6 00:02:45 2012 > New Revision: 308356 > URL: http://svnweb.freebsd.org/changeset/ports/308356 > > Log: > add new port: sysutils/gigolo > > Gigolo is a frontend to easily manage connections to local and > remote filesystems using GIO/GVfs. It allows you to > quickly connect/mount a remote filesystem and manage bookmarks of such. > > It is part of the Xfce Goodies project and the Subversion respository > is hosted on the Xfce servers though it does not have any hard > Xfce dependencies and can be used on other desktop environments as well. > The only hard dependency is GTK2. > > WWW: http://www.uvena.de/gigolo/ > > PR: 170020 > Submitted by: nemysis@gmx.ch > Feature safe: yes > > Added: > head/sysutils/gigolo/ > head/sysutils/gigolo/Makefile (contents, props changed) > head/sysutils/gigolo/distinfo (contents, props changed) > head/sysutils/gigolo/pkg-descr (contents, props changed) > head/sysutils/gigolo/pkg-plist (contents, props changed) > Modified: > head/sysutils/Makefile > > Modified: head/sysutils/Makefile > ============================================================================== > --- head/sysutils/Makefile Wed Dec 5 23:52:35 2012 (r308355) > +++ head/sysutils/Makefile Thu Dec 6 00:02:45 2012 (r308356) > @@ -311,6 +311,7 @@ > SUBDIR += geomgui > SUBDIR += getdelta > SUBDIR += geteltorito > + SUBDIR += gigolo > SUBDIR += gkfreq > SUBDIR += gkleds2 > SUBDIR += gkrellfire > > Added: head/sysutils/gigolo/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sysutils/gigolo/Makefile Thu Dec 6 00:02:45 2012 (r308356) > @@ -0,0 +1,36 @@ > +# Created by: nemysis@gmx.ch > +# $FreeBSD$ > + > +PORTNAME= gigolo > +PORTVERSION= 0.4.1 > +CATEGORIES= sysutils > +MASTER_SITES= http://files.uvena.de/gigolo/ > + > +MAINTAINER= nemysis@gmx.ch > +COMMENT= Frontend to easily manage filesystem connections > + > +LICENSE= GPLv2 > + > +BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser > +LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo > + > +USE_BZIP2= yes > +USE_GNOME= gtk20 gvfs > +USE_XORG= x11 > +USE_PYTHON= yes > +USE_GETTEXT= yes > + > +MAN1= gigolo.1 > + > +PORTDOCS= AUTHORS ChangeLog NEWS README TODO COPYING > + > +do-configure: > + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./waf configure --mandir=${PREFIX}/man > + > +do-build: > + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./waf build > + > +do-install: > + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./waf install > + > +.include > > Added: head/sysutils/gigolo/distinfo > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sysutils/gigolo/distinfo Thu Dec 6 00:02:45 2012 (r308356) > @@ -0,0 +1,2 @@ > +SHA256 (gigolo-0.4.1.tar.bz2) = 82f3b5f0ce3ff19c1facac1c89117d67bdf1d4fac66e42fb7a98a8b0d74a17f9 > +SIZE (gigolo-0.4.1.tar.bz2) = 194112 > > Added: head/sysutils/gigolo/pkg-descr > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sysutils/gigolo/pkg-descr Thu Dec 6 00:02:45 2012 (r308356) > @@ -0,0 +1,10 @@ > +Gigolo is a frontend to easily manage connections to local and > +remote filesystems using GIO/GVfs. It allows you to > +quickly connect/mount a remote filesystem and manage bookmarks of such. > + > +It is part of the Xfce Goodies project and the Subversion respository > +is hosted on the Xfce servers though it does not have any hard > +Xfce dependencies and can be used on other desktop environments as well. > +The only hard dependency is GTK2. > + > +WWW: http://www.uvena.de/gigolo/ > > Added: head/sysutils/gigolo/pkg-plist > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sysutils/gigolo/pkg-plist Thu Dec 6 00:02:45 2012 (r308356) > @@ -0,0 +1,44 @@ > +bin/gigolo > +share/applications/gigolo.desktop > +share/locale/bg/LC_MESSAGES/gigolo.mo > +share/locale/ca/LC_MESSAGES/gigolo.mo > +share/locale/cs/LC_MESSAGES/gigolo.mo > +share/locale/da/LC_MESSAGES/gigolo.mo > +share/locale/de/LC_MESSAGES/gigolo.mo > +share/locale/el/LC_MESSAGES/gigolo.mo > +share/locale/es/LC_MESSAGES/gigolo.mo > +share/locale/eu/LC_MESSAGES/gigolo.mo > +share/locale/fi/LC_MESSAGES/gigolo.mo > +share/locale/fr/LC_MESSAGES/gigolo.mo > +share/locale/gl/LC_MESSAGES/gigolo.mo > +share/locale/hr/LC_MESSAGES/gigolo.mo > +share/locale/hu/LC_MESSAGES/gigolo.mo > +share/locale/id/LC_MESSAGES/gigolo.mo > +share/locale/it/LC_MESSAGES/gigolo.mo > +share/locale/ja/LC_MESSAGES/gigolo.mo > +share/locale/lv/LC_MESSAGES/gigolo.mo > +share/locale/nl/LC_MESSAGES/gigolo.mo > +share/locale/pl/LC_MESSAGES/gigolo.mo > +share/locale/pt/LC_MESSAGES/gigolo.mo > +share/locale/pt_BR/LC_MESSAGES/gigolo.mo > +share/locale/ru/LC_MESSAGES/gigolo.mo > +share/locale/sk/LC_MESSAGES/gigolo.mo > +share/locale/sv/LC_MESSAGES/gigolo.mo > +share/locale/tr/LC_MESSAGES/gigolo.mo > +share/locale/uk/LC_MESSAGES/gigolo.mo > +share/locale/zh_CN/LC_MESSAGES/gigolo.mo > +share/locale/ast/LC_MESSAGES/gigolo.mo > +share/locale/kk/LC_MESSAGES/gigolo.mo > +share/locale/ug/LC_MESSAGES/gigolo.mo > +share/locale/ur/LC_MESSAGES/gigolo.mo > +share/locale/ur_PK/LC_MESSAGES/gigolo.mo > +@dirrmtry share/locale/ur_PK/LC_MESSAGES > +@dirrmtry share/locale/ur_PK > +@dirrmtry share/locale/ur > +@dirrmtry share/locale/ug/LC_MESSAGES > +@dirrmtry share/locale/ug > +@dirrmtry share/locale/kk/LC_MESSAGES > +@dirrmtry share/locale/kk > +@dirrmtry share/locale/ast/LC_MESSAGES > +@dirrmtry share/locale/ast > +@dirrmtry share/applications -- olivier