svn commit: r427981 - head/sysutils/xfburn

Olivier Duchateau olivierd at FreeBSD.org
Tue Dec 6 18:22:15 UTC 2016


Author: olivierd
Date: Tue Dec  6 18:22:14 2016
New Revision: 427981
URL: https://svnweb.freebsd.org/changeset/ports/427981

Log:
  - 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 at gmail.com>, <doug at safeport.com> (freebsd-xfce list)
  MFH:		2016Q4

Modified:
  head/sysutils/xfburn/Makefile

Modified: head/sysutils/xfburn/Makefile
==============================================================================
--- head/sysutils/xfburn/Makefile	Tue Dec  6 17:49:20 2016	(r427980)
+++ head/sysutils/xfburn/Makefile	Tue Dec  6 18:22:14 2016	(r427981)
@@ -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


More information about the svn-ports-all mailing list