aboutsummaryrefslogtreecommitdiff
path: root/port-files/Makefile
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-10-21 11:12:05 -0400
committerKen Moore <ken@pcbsd.org>2014-10-21 11:12:05 -0400
commitee1f511431529323765ed9cb8cc8b5d23e7bf94a (patch)
treec69c2207d0080acb7611e71eb2e6ce273c8f8f81 /port-files/Makefile
parentAdjust how the backend for the system tray works: (diff)
downloadlumina-ee1f511431529323765ed9cb8cc8b5d23e7bf94a.tar.gz
lumina-ee1f511431529323765ed9cb8cc8b5d23e7bf94a.tar.bz2
lumina-ee1f511431529323765ed9cb8cc8b5d23e7bf94a.zip
Add a couple missing dependencies to the FreeBSD port for Lumina:
1) x11/xorg (for some reason it is not making sure this is also installed) 2) graphics/qt4-imageformats (via the USE_QT4 line, required for jpeg support)
Diffstat (limited to 'port-files/Makefile')
-rw-r--r--port-files/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/port-files/Makefile b/port-files/Makefile
index aae5603e..0bd2d2bc 100644
--- a/port-files/Makefile
+++ b/port-files/Makefile
@@ -15,7 +15,8 @@ COMMENT= Lumina Desktop Environment
LICENSE= BSD3CLAUSE
-RUN_DEPENDS= fluxbox:${PORTSDIR}/x11-wm/fluxbox \
+RUN_DEPENDS= xorg>=0:${PORTSDIR}/x11/xorg \
+ fluxbox:${PORTSDIR}/x11-wm/fluxbox \
fluxbox-tenr-styles-pack>=0:${PORTSDIR}/x11-themes/fluxbox-tenr-styles-pack \
kde4-icons-oxygen>=0:${PORTSDIR}/x11-themes/kde4-icons-oxygen \
xscreensaver:${PORTSDIR}/x11/xscreensaver \
@@ -30,8 +31,8 @@ LIB_DEPENDS= libQtSolutions_SingleApplication-head.so:${PORTSDIR}/devel/qt4-qtso
MAKE_JOBS_UNSAFE=yes
USE_XORG= x11 xcomposite xdamage xrender
USE_LDCONFIG= yes
-USE_QT4= corelib gui network svg linguist phonon \
- moc_build rcc_build uic_build
+USE_QT4= corelib gui network svg linguist phonon imageformats \
+ moc_build rcc_build uic_build
USES= qmake tar:bzip2
WRKSRC= ${WRKDIR}/lumina
bgstack15