diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-10-16 16:21:05 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-10-16 16:21:05 +0000 |
commit | 82810b0fc7d58c9fa9759b1de10ed32736581861 (patch) | |
tree | 8c85c5609ac50efe3b15fbd4d751a76d7977af07 /net-im/eva/Makefile | |
parent | Add dependency for japanese/kasumi. The author highly recommend to (diff) |
- Update to 0.3.2
- Remove net/evaq, project was renamed
PR: 87250, 87253
Submitted by: hamigua <hamigua@cuc.cn> (maintainer)
Approved by: novel (mentor) (implicit)
Diffstat (limited to 'net-im/eva/Makefile')
-rw-r--r-- | net-im/eva/Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/net-im/eva/Makefile b/net-im/eva/Makefile index 17ae95516e0f..6eb2d3631b88 100644 --- a/net-im/eva/Makefile +++ b/net-im/eva/Makefile @@ -5,31 +5,34 @@ # $FreeBSD$ # -PORTNAME= evaq -PORTVERSION= 0.3.1 +PORTNAME= eva +PORTVERSION= 0.3.2 CATEGORIES= net kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= eva-${PORTVERSION} +MASTER_SITE_SUBDIR= evaq +DISTNAME= ${PORTNAME}-${PORTVERSION}-1 MAINTAINER= hamigua@cuc.cn COMMENT= QQ IM Client for KDE3 -WRKSRC= ${WRKDIR}/eva-${PORTVERSION} USE_KDELIBS_VER=3 GNU_CONFIGURE= yes USE_REINPLACE= yes USE_GMAKE= yes USE_BZIP2= yes +WRKSRC= ${WRKDIR}/${PORTNAME} + .include <bsd.port.pre.mk> .if ${OSVERSION} < 500000 BROKEN= "does not compile" .endif -pre-patch: - ${REINPLACE_CMD} -e 's/-pedantic //g; s/-O2//g; \ +post-patch: + @${REINPLACE_CMD} -e 's|^\(LIBS\ =\ @LIBS@\)|\1 -pthread|' \ + ${WRKSRC}/src/Makefile.in + @${REINPLACE_CMD} -e 's/-pedantic //g; s/-O2//g; \ s/-lpthread/${PTHREAD_LIBS}/g' ${WRKSRC}/configure .include <bsd.port.post.mk> |