Bug 172177 - Missing run time dependencies in devel/xdg-utils
Summary: Missing run time dependencies in devel/xdg-utils
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-gnome (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-30 14:30 UTC by Vladimir Kondratiev
Modified: 2012-12-29 05:30 UTC (History)
0 users

See Also:


Attachments
file.diff (569 bytes, patch)
2012-09-30 14:30 UTC, Vladimir Kondratiev
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Vladimir Kondratiev 2012-09-30 14:30:02 UTC
devel/xdg-utils depends on xset and xprop utilities at a run time

Fix: port Makefile patch is attached

Patch attached with submission follows:
How-To-Repeat: i saw messages like
/usr/local/bin/xdg-screensaver: xprop: not found
/usr/local/bin/xdg-screensaver: xset: not found
while opening video with vlc
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-09-30 14:30:56 UTC
Responsible Changed
From-To: freebsd-ports-bugs->gnome

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-12-29 05:24:59 UTC
Author: mezz
Date: Sat Dec 29 05:24:51 2012
New Revision: 309605
URL: http://svnweb.freebsd.org/changeset/ports/309605

Log:
  Add two missing runtime dependencies, xprop and xset. Those are needing for
  the xdg-screensaver. Bump the PORTREVISION.
  
  PR:		ports/172177
  Submitted by:	Vladimir Kondratiev <wulf@mail.mipt.ru>

Modified:
  head/devel/xdg-utils/Makefile   (contents, props changed)

Modified: head/devel/xdg-utils/Makefile
==============================================================================
--- head/devel/xdg-utils/Makefile	Sat Dec 29 05:18:28 2012	(r309604)
+++ head/devel/xdg-utils/Makefile	Sat Dec 29 05:24:51 2012	(r309605)
@@ -8,7 +8,7 @@
 
 PORTNAME=	xdg-utils
 PORTVERSION=	1.0.2
-PORTREVISION=	7
+PORTREVISION=	8
 CATEGORIES=	devel
 MASTER_SITES=	http://portland.freedesktop.org/download/
 EXTRACT_SUFX=	.tgz
@@ -16,7 +16,9 @@ EXTRACT_SUFX=	.tgz
 MAINTAINER=	gnome@FreeBSD.org
 COMMENT=	Tools to allow all applications to integrate with the free desktop
 
-RUN_DEPENDS=	${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme
+RUN_DEPENDS=	${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme \
+		xprop:${PORTSDIR}/x11/xprop \
+		xset:${PORTSDIR}/x11/xset
 
 GNU_CONFIGURE=	yes
 XDG_FILES=	xdg-desktop-icon \
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Jeremy Messenger freebsd_committer freebsd_triage 2012-12-29 05:25:09 UTC
State Changed
From-To: open->closed

Committed, thanks!