mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# Created by: Yukihiro Nakai <nakai@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= vdk
|
|
PORTVERSION= 2.5.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= SF/${PORTNAME}lib/VDK%20for%20both%20Linux%20and%20Windows%20%28this%20is%20the%20new%20version%29/VDKLIB%20%28C%2B%2B%20wrapper%20for%20GTK%2B%29
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ wrapper for GTK+ toolkit
|
|
|
|
LICENSE= LGPL20
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= pathfix pkgconfig
|
|
USE_GNOME= gtk20
|
|
USE_AUTOTOOLS= libtool
|
|
CONFIGURE_ARGS= --enable-opt=no --enable-doc-html=no --enable-testvdk=no
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= vdk-config-2.1
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lgnuregex ${PTHREAD_LIBS}
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|CXXFLAGS="-s"|CXXFLAGS="$$CXXFLAGS"|g ; \
|
|
s|uname -rmpo|uname -rmp|g' ${WRKSRC}/configure
|
|
.for file in vdk-config.in vdk.pc.in
|
|
@${REINPLACE_CMD} -e 's|-lpthread|${LDFLAGS}|g' ${WRKSRC}/${file}
|
|
.endfor
|
|
.for file in FileDialog.h gtksourcebuffer.h gtksourcetag.h
|
|
@${REINPLACE_CMD} -e \
|
|
's|<.*regex\.h>|<gnu/regex.h>|g' ${WRKSRC}/include/vdk/${file}
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|