From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 17 22:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21BD9106566B for ; Sat, 17 Dec 2011 22:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F20B58FC0A for ; Sat, 17 Dec 2011 22:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBHMKAmv097887 for ; Sat, 17 Dec 2011 22:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBHMKAhu097886; Sat, 17 Dec 2011 22:20:10 GMT (envelope-from gnats) Resent-Date: Sat, 17 Dec 2011 22:20:10 GMT Resent-Message-Id: <201112172220.pBHMKAhu097886@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Olivier Duchateau Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D053106566C for ; Sat, 17 Dec 2011 22:19:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E5D428FC08 for ; Sat, 17 Dec 2011 22:19:35 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id pBHMJZY0024393 for ; Sat, 17 Dec 2011 22:19:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id pBHMJZc8024392; Sat, 17 Dec 2011 22:19:35 GMT (envelope-from nobody) Message-Id: <201112172219.pBHMJZc8024392@red.freebsd.org> Date: Sat, 17 Dec 2011 22:19:35 GMT From: Olivier Duchateau To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/163419: [PATCH] textproc/xfce4-dict-plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Dec 2011 22:20:11 -0000 >Number: 163419 >Category: ports >Synopsis: [PATCH] textproc/xfce4-dict-plugin >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 17 22:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Olivier Duchateau >Release: FreeBSD 8.2-RELEASE-p3 i386 >Organization: >Environment: >Description: Fix dependancies (XFCE, and GNOME) in Makefile. Correct link in pkg-descr. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -u /usr/ports/textproc/xfce4-dict-plugin/Makefile xfce4-dict-plugin/Makefile --- /usr/ports/textproc/xfce4-dict-plugin/Makefile 2011-10-23 15:45:58.000000000 +0200 +++ xfce4-dict-plugin/Makefile 2011-12-17 23:07:37.000000000 +0100 @@ -7,25 +7,25 @@ PORTNAME= xfce4-dict PORTVERSION= 0.6.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc xfce MASTER_SITES= ${MASTER_SITE_XFCE} -MASTER_SITE_SUBDIR=/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITE_SUBDIR= src/apps/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 PKGNAMESUFFIX= -plugin MAINTAINER= xfce@FreeBSD.org COMMENT= Xfce Plugin for searching for the translation or explanation of a word -BROKEN= does not configure - USE_BZIP2= yes GNU_CONFIGURE= yes INSTALLS_ICONS= yes USE_GETTEXT= yes USE_GMAKE= yes -USE_GNOME= gtk20 intltool intlhack pkgconfig -USE_XFCE= configenv panel +USE_GNOME= gtk20 intltool intlhack pkgconfig desktopfileutils +USE_XFCE= configenv libgui libutil panel +USE_XORG= x11 + MAN1= xfce4-dict.1 .include diff -u /usr/ports/textproc/xfce4-dict-plugin/pkg-descr xfce4-dict-plugin/pkg-descr --- /usr/ports/textproc/xfce4-dict-plugin/pkg-descr 2007-01-23 17:30:54.000000000 +0100 +++ xfce4-dict-plugin/pkg-descr 2011-12-17 22:58:29.000000000 +0100 @@ -1,5 +1,5 @@ -With this plugin you can query a dictionary server(see RFC 2229) to search for +With this plugin you can query a dictionary server (see RFC 2229) to search for the translation or explanation of a word. You can also choose a dictionary offered by the server to improve your search results. -WWW: http://goodies.xfce.org/projects/panel-plugins/xfce4-dict-plugin +WWW: http://goodies.xfce.org/projects/applications/xfce4-dict diff -u /usr/ports/textproc/xfce4-dict-plugin/pkg-plist xfce4-dict-plugin/pkg-plist --- /usr/ports/textproc/xfce4-dict-plugin/pkg-plist 2010-03-11 22:25:26.000000000 +0100 +++ xfce4-dict-plugin/pkg-plist 2011-12-17 23:07:37.000000000 +0100 @@ -41,6 +41,7 @@ @dirrmtry share/locale/ur @dirrmtry share/locale/ast/LC_MESSAGES @dirrmtry share/locale/ast -@dirrmtry share/applications @dirrmtry libexec/xfce4/panel-plugins @dirrmtry libexec/xfce4 +@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true >Release-Note: >Audit-Trail: >Unformatted: