forked from Lainports/freebsd-ports
See original release announcement for details: http://kde.org/announcements/announce-4.2.3.php New ports: devel/kdebindings4: Meta port of KDE bindings for C#, Java, PHP, Python and Ruby. Currently only Python bindings are supported. devel/kdebindings4-python, devel/kdebindings4-python-krosspython, devel/kdebindings4-python-pykde4: Python bindings for KDE. print/kdeutils4-printer-applet: printer-applet is a system tray utility. It shows current print jobs, shows printer warnings and errors and shows when printers that have been plugged in for the first time are being auto-configured by hal-cups-utils. It replaces kjobviewer in KDE 3. print/system-config-printer-kde A port of Gnome system-config-printer to KDE.
35 lines
848 B
Makefile
35 lines
848 B
Makefile
# New ports collection makefile for: kdebindings4-python
|
|
# Date created: 2009-02-13
|
|
# Whom: Max Brazhnikov <makc@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kdebindings
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
CATEGORIES= devel kde
|
|
MASTER_SITES= # empty
|
|
PKGNAMESUFFIX= -python
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Meta port of Python bindings for KDE
|
|
|
|
USE_KDE4= kdeprefix
|
|
NO_BUILD= yes
|
|
NO_INSTALL= yes
|
|
|
|
OPTIONS+= KROSSPYTHON "Kross Python scripting library" on
|
|
OPTIONS+= PYKDE4 "Kde bindings" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_KROSSPYTHON)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/lib/kde4/krosspython.so:${PORTSDIR}/devel/kdebindings4-python-krosspython
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_PYKDE4)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/lib/kde4/kpythonpluginfactory.so:${PORTSDIR}/devel/kdebindings4-python-pykde4
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|