blob: b99c11df1f7f4b0df348909a037a3614b06e7743 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Created by: John Marino <marino@FreeBSD.org>
# $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
NO_STAGE= yes
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 <bsd.port.mk>
|