diff options
author | Alan Eldridge <alane@FreeBSD.org> | 2002-09-21 03:44:43 +0000 |
---|---|---|
committer | Alan Eldridge <alane@FreeBSD.org> | 2002-09-21 03:44:43 +0000 |
commit | 62631eb080c009e2cf97a77c25484142627c3b5d (patch) | |
tree | d76c033879e37f423dfe55587f01ff33bdc21e5f /deskutils/krss/Makefile | |
parent | d2b241ba32858c5e872b0b9ee36f46ef38b93f0f (diff) |
Notes
Diffstat (limited to 'deskutils/krss/Makefile')
-rw-r--r-- | deskutils/krss/Makefile | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/deskutils/krss/Makefile b/deskutils/krss/Makefile index f67bea935a0a..990cfc3904b9 100644 --- a/deskutils/krss/Makefile +++ b/deskutils/krss/Makefile @@ -8,22 +8,35 @@ PORTNAME= krss PORTVERSION= 2.6 +PORTREVISION= 1 CATEGORIES= deskutils kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= kde@freebsd.org +BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ + automake14:${PORTSDIR}/devel/automake14 + LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ png:${PORTSDIR}/graphics/png -USE_REINPLACE= yes -USE_KDEBASE_VER= 2 +USE_KDEBASE_VER=3 GNU_CONFIGURE= yes +QTCFGLIBS+= -pthread +CONFIGURE_ENV+= LIBQT="-lqt-mt" USE_GMAKE= yes MAKE_ENV= ${CONFIGURE_ENV} -post-patch: - @${REINPLACE_CMD} -e "s,-lqt,-lqt2,g" ${WRKSRC}/configure +pre-configure: + ${MKDIR} ${WRKSRC}/auto-bin +.for AC in autoconf autoheader + ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} +.endfor +.for AM in automake aclocal + ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} +.endfor + cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ + ${GMAKE} -f Makefile.dist .include <bsd.port.mk> |