This is an incremental update and should be much easier to handle than the transition from 4.6.5 to 4.7.2 in the ports tree. The official release notes can be found at http://www.kde.org/announcements/announce-4.7.3.php. Approved by: avilla (mentor), makc (mentor), portmgr (miwi) Feature safe: yes
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# New ports collection makefile for: kdebindings4-ruby
|
|
# Date created: 1 September 2011
|
|
# Whom: Alberto Villa <avilla@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kdebindings
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
CATEGORIES= devel kde
|
|
MASTER_SITES= # empty
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Meta port of Ruby bindings for KDE
|
|
|
|
USE_KDE4= kdeprefix
|
|
USE_RUBY= yes
|
|
RUBY_NO_BUILD_DEPENDS= yes
|
|
RUBY_NO_RUN_DEPENDS= yes
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS= KORUNDUM "KDE bindings (requires QTRUBY)" on \
|
|
KROSSRUBY "Kross Ruby scripting library (broken with ruby19)" on \
|
|
QTRUBY "Qt bindings" on
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if !defined(WITHOUT_KORUNDUM)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/lib/kde4/krubypluginfactory.so:${PORTSDIR}/devel/kdebindings4-ruby-korundum
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_QTRUBY) || !defined(WITHOUT_KORUNDUM)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/lib/libqtruby4shared.so:${PORTSDIR}/devel/kdebindings4-ruby-qtruby
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_KROSSRUBY) && ${RUBY_VER} != 1.9
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/lib/kde4/krossruby.so:${PORTSDIR}/devel/kdebindings4-ruby-krossruby
|
|
.endif
|
|
|
|
do-install:
|
|
${DO_NADA}
|
|
|
|
.include <bsd.port.post.mk>
|