mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
9351af18da
applications to use KDE's file dialogs when run under KDE. The Gtk file chooser functions have been overridden to communicate with this KDE module/application. WWW: http://home.freeuk.net/cpdrummomd/ PR: ports/117792 Submitted by: Rashid N. "Citycat" Achilov <citycat4@ngs.ru>
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
# Ports collection makefile for: kgtk
|
|
# Date created: Sep 13, 2007
|
|
# Whom: Rashid N. "Citycat" Achilov <citycat4@ngs.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kgtk
|
|
PORTVERSION= 0.9.4
|
|
CATEGORIES= sysutils kde
|
|
MASTER_SITES= http://home.freeuk.com/cpdrummond/
|
|
DISTNAME= KGtk-${PORTVERSION}
|
|
|
|
MAINTAINER= citycat4@ngs.ru
|
|
COMMENT= Daemon to use KDE dialogs in GTK applications
|
|
|
|
BUILD_DEPENDS= cmake:${PORTSDIR}/devel/cmake
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gtk20
|
|
USE_KDEBASE_VER=3
|
|
|
|
CMAKE_PREFIX= ${LOCALBASE}
|
|
CMAKE_BUILD_DIR=build3
|
|
BUILD_WRKSRC= ${WRKSRC}/${CMAKE_BUILD_DIR}
|
|
INSTALL_WRKSRC= ${WRKSRC}/${CMAKE_BUILD_DIR}
|
|
|
|
.if defined(WITHOUT_NLS)
|
|
PLIST_SUB+= NLS="@comment "
|
|
.else
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's| -ldl||' ${WRKSRC}/gtk2/CMakeLists.txt ${WRKSRC}/qt3/CMakeLists.txt ${WRKSRC}/qt4/CMakeLists.txt
|
|
@${REINPLACE_CMD} -e 's|#!/bin/bash|#!/bin/sh|' ${WRKSRC}/mangled.sh
|
|
|
|
pre-configure:
|
|
@${MKDIR} ${WRKSRC}/${CMAKE_BUILD_DIR}
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC}/${CMAKE_BUILD_DIR} && \
|
|
${CMAKE_PREFIX}/bin/cmake .. \
|
|
-DCMAKE_INSTALL_DIR=${PREFIX} \
|
|
-DQT_INCLUDE_DIR=${QT_PREFIX}/include \
|
|
-DCMAKE_CXX_FLAGS=-I${X11BASE}/include \
|
|
-DCMAKE_EXE_LINKER_FLAGS=${PTHREAD_LIBS} \
|
|
-DCMAKE_INSTALL_PREFIX=${PREFIX}
|
|
|
|
.include <bsd.port.mk>
|