4.7.2. The official release notes can be found at: http://kde.org/announcements/announce-4.7.2.php This release ships with many improvements. Read more about them here: http://FreeBSD.kde.org/news.php#itemKDESC472availableinports We'd like to say thanks to all testers and contributors, especially to lwhsu@ for his effort on hosting our test packages. PR: 156293 [1] 159219 [2] 160164 [3] Submitted by: Oleg Sidorkin <osidorkin@gmail.com> [1] Alvaro Castillo <gobledb@gmail.com> [2] dkeav04@gmail.com [3] Tested by: exp-run via pav
41 lines
855 B
Makefile
41 lines
855 B
Makefile
# New ports collection makefile for: kdebindings4
|
|
# Date created: 2008-08-19
|
|
# Whom: Max Brazhnikov <makc@issp.ac.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kdebindings
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
CATEGORIES= devel kde
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= KDE bindings meta port
|
|
|
|
USE_KDE4= kdeprefix
|
|
USE_PYTHON= yes
|
|
PYTHON_NO_DEPENDS= yes
|
|
USE_RUBY= yes
|
|
RUBY_NO_BUILD_DEPENDS= yes
|
|
RUBY_NO_RUN_DEPENDS= yes
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS= PYTHON "Python bindings" on \
|
|
RUBY "Ruby bindings" on
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if !defined(WITHOUT_PYTHON)
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}kdebindings>=4.1.0:${PORTSDIR}/devel/kdebindings4-python
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_RUBY)
|
|
RUN_DEPENDS+= ${RUBY_PKGNAMEPREFIX}kdebindings>=4.7.0:${PORTSDIR}/devel/kdebindings4-ruby
|
|
.endif
|
|
|
|
do-install:
|
|
${DO_NADA}
|
|
|
|
.include <bsd.port.mk>
|