Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Dec 2016 17:59:39 +0000 (UTC)
From:      Olivier Duchateau <olivierd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r428080 - branches/2016Q4/sysutils/xfburn
Message-ID:  <201612071759.uB7HxdcG090188@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olivierd
Date: Wed Dec  7 17:59:39 2016
New Revision: 428080
URL: https://svnweb.freebsd.org/changeset/ports/428080

Log:
  MFH: r427981
  
  - Fix run dependencies (see error message below)
  - Bump PORTREVISION
  
  Shared object "libburn.so.4" not found, required by "xfburn"
  Shared object "libisofs.so.6" not found, required by "xfburn"
  
  PR:		214170
  Reported by:	<rumen.yotov@gmail.com>, <doug@safeport.com> (freebsd-xfce list)
  
  Approved by:	ports-secteam (junovitch@)

Modified:
  branches/2016Q4/sysutils/xfburn/Makefile
Directory Properties:
  branches/2016Q4/   (props changed)

Modified: branches/2016Q4/sysutils/xfburn/Makefile
==============================================================================
--- branches/2016Q4/sysutils/xfburn/Makefile	Wed Dec  7 16:50:25 2016	(r428079)
+++ branches/2016Q4/sysutils/xfburn/Makefile	Wed Dec  7 17:59:39 2016	(r428080)
@@ -3,7 +3,7 @@
 
 PORTNAME=	xfburn
 PORTVERSION=	0.5.4
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	sysutils
 MASTER_SITES=	XFCE/src/apps/${PORTNAME}/${PORTVERSION:R}
 DIST_SUBDIR=	xfce4
@@ -15,7 +15,9 @@ LICENSE=	GPLv2
 
 LIB_DEPENDS=	libburn.so:devel/libburn \
 		libisofs.so:devel/libisofs
-RUN_DEPENDS=	cdrdao:sysutils/cdrdao
+RUN_DEPENDS=	cdrdao:sysutils/cdrdao \
+	${LOCALBASE}/include/libburn/libburn.h:devel/libburn \
+	${LOCALBASE}/include/libisofs/libisofs.h:devel/libisofs
 
 GNU_CONFIGURE=	yes
 USE_GNOME=	intltool intlhack glib20 gtk20



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612071759.uB7HxdcG090188>