diff options
Diffstat (limited to 'games/kdegames4/Makefile')
-rw-r--r-- | games/kdegames4/Makefile | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/games/kdegames4/Makefile b/games/kdegames4/Makefile index 7cbd1a4f8da1..7c90f95c2625 100644 --- a/games/kdegames4/Makefile +++ b/games/kdegames4/Makefile @@ -6,25 +6,31 @@ # PORTNAME= kdegames -PORTVERSION= 1.90 +PORTVERSION= 20000724A CATEGORIES= games kde -MASTER_SITES= $(MASTER_SITE_KDE) -MASTER_SITE_SUBDIR= unstable/distribution/tar/src +MASTER_SITES= $(MASTER_SITE_LOCAL) +MASTER_SITE_SUBDIR= will MAINTAINER= will@FreeBSD.org -LIB_DEPENDS= kdecore.4:${PORTSDIR}/x11/kdelibs2 - -BROKEN= "Does not compile/run properly" +LIB_DEPENDS= qt2.4:${PORTSDIR}/x11-toolkits/qt22 \ + kdecore.4:${PORTSDIR}/x11/kdelibs2 +WRKSRC= ${WRKDIR}/kdegames MOC?= ${X11BASE}/bin/moc2 USE_BZIP2= yes -USE_QT2= yes -GNU_CONFIGURE= yes +USE_NEWGCC= yes +USE_AUTOCONF= yes CONFIGURE_ARGS+=--with-qt-dir=${X11BASE} \ --with-qt-includes=${X11BASE}/include/qt2 \ - --with-qt-libraries=${X11BASE}/lib -CONFIGURE_ENV+= MOC="${MOC}" + --with-qt-libraries=${X11BASE}/lib \ + --with-extra-libs=${LOCALBASE}/lib +CONFIGURE_ENV+= MOC="${MOC}" LIBQT="-lqt2" LIBQTFILE="libqt2" \ + LIBS="-Wl,-export-dynamic -L${X11BASE}/lib -lqt2 -L${LOCALBASE}/lib -ljpeg -lgcc -lstdc++" \ + CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" USE_GMAKE= yes +pre-install: + @(find ${WRKSRC} -name CVS | xargs rm -rf) + .include <bsd.port.mk> |