From owner-svn-ports-head@FreeBSD.ORG Sun Jul 21 14:35:01 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 752AEF1C; Sun, 21 Jul 2013 14:35:01 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 683CB102; Sun, 21 Jul 2013 14:35:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6LEZ1i5051223; Sun, 21 Jul 2013 14:35:01 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6LEZ0Zv051211; Sun, 21 Jul 2013 14:35:00 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201307211435.r6LEZ0Zv051211@svn.freebsd.org> From: John Marino Date: Sun, 21 Jul 2013 14:35:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323395 - in head/x11-toolkits: . qtada X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jul 2013 14:35:01 -0000 Author: marino Date: Sun Jul 21 14:35:00 2013 New Revision: 323395 URL: http://svnweb.freebsd.org/changeset/ports/323395 Log: Add new port: x11-toolkits/qtada This is the Ada bindings for Qt 4.8, the GPL licensed version. Approved by: bapt (mentor) Added: head/x11-toolkits/qtada/ head/x11-toolkits/qtada/Makefile (contents, props changed) head/x11-toolkits/qtada/distinfo (contents, props changed) head/x11-toolkits/qtada/pkg-descr (contents, props changed) Modified: head/x11-toolkits/Makefile Modified: head/x11-toolkits/Makefile ============================================================================== --- head/x11-toolkits/Makefile Sun Jul 21 14:31:45 2013 (r323394) +++ head/x11-toolkits/Makefile Sun Jul 21 14:35:00 2013 (r323395) @@ -223,6 +223,7 @@ SUBDIR += qt33 SUBDIR += qt4-gui SUBDIR += qt4pas + SUBDIR += qtada SUBDIR += qwt4 SUBDIR += qwt5 SUBDIR += qwt5-designerplugin Added: head/x11-toolkits/qtada/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/qtada/Makefile Sun Jul 21 14:35:00 2013 (r323395) @@ -0,0 +1,42 @@ +# Created by: John Marino +# $FreeBSD$ + +PORTNAME= qtada +PORTVERSION= 3.2.0.0 +CATEGORIES= x11-toolkits +MASTER_SITES= http://download.qtada.com/ +DISTNAME= ${PORTNAME}-gpl-3.2.0-20120708-3871 + +MAINTAINER= marino@FreeBSD.org +COMMENT= Ada2005 language bindings to Qt4 framework + +BUILD_DEPENDS= gprbuild>=20120510:${PORTSDIR}/devel/gprbuild \ + gnat_util>=2013:${PORTSDIR}/lang/gnat_util \ + asis>=2011:${PORTSDIR}/lang/asis + +USES= ada gmake pkgconfig +GNU_CONFIGURE= yes +USE_QT4= corelib gui xml designer sql opengl webkit +DESTINY= ${WRKDIR}/destino +MAKE_ENV= DESTDIR=${DESTINY} + +#CONFIGURE_ARGS= --with-gtkada=NO + +post-install: + ${MV} ${DESTINY}${PREFIX}/examples ${DESTINY}${PREFIX}/share/ + ${CP} -pR ${DESTINY}${PREFIX}/ ${PREFIX}/ + @cd ${DESTINY}${PREFIX}; ${FIND} * \( -type f -or -type l \) | \ + ${SORT} > ${WRKDIR}/PLIST.all + @cd ${DESTINY}${PREFIX}; ${FIND} * -type d | ${AWK} '/\//' | \ + ${SORT} -r | ${SED} -e '/lib\/gnat$$/d' -e '/share\/doc$$/d' \ + -e '/share\/gps$$/d' -e '/share\/gps\/plug-ins$$/d' \ + -e '/share\/gprconfig$$/d' -e 's/^/@dirrm /g' \ + >> ${WRKDIR}/PLIST.all + @echo "@unexec rmdir %D/lib/gnat 2>/dev/null || true" >> ${WRKDIR}/PLIST.all + @echo "@unexec rmdir %D/share/doc 2>/dev/null || true" >> ${WRKDIR}/PLIST.all + @echo "@unexec rmdir %D/share/gprconfig 2>/dev/null || true" >> ${WRKDIR}/PLIST.all + @echo "@unexec rmdir %D/share/gps/plug-ins 2>/dev/null || true" >> ${WRKDIR}/PLIST.all + @echo "@unexec rmdir %D/share/gps 2>/dev/null || true" >> ${WRKDIR}/PLIST.all + @${CAT} ${WRKDIR}/PLIST.all >> ${TMPPLIST} + +.include Added: head/x11-toolkits/qtada/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/qtada/distinfo Sun Jul 21 14:35:00 2013 (r323395) @@ -0,0 +1,2 @@ +SHA256 (qtada-gpl-3.2.0-20120708-3871.tar.gz) = f6d07d5399bc62717191d1c298b969bf72b4c02c3fed950c07b63978edc5bd63 +SIZE (qtada-gpl-3.2.0-20120708-3871.tar.gz) = 3082986 Added: head/x11-toolkits/qtada/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/qtada/pkg-descr Sun Jul 21 14:35:00 2013 (r323395) @@ -0,0 +1,15 @@ +QtAda is an Ada 2005 language binding to the Qt libraries and a set of +useful tools. Qt versions 4.6 and later are supported. + +QtAda easily enables powerful cross-platform graphical user interfaces +completely on Ada 2005. QtAda applications work on all popular platforms +without any changes or platform-specific coding. QtAda applications have +the platforms' native look and feel. + +It is possible to develop custom widgets and integrate them into the Qt +designer for rapid GUI development. + +QtAda has excellent support for localization and internationalization, and +usings native safe threading for transparent integration with Ada tasks. + +WWW: http://www.qtada.com