mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
1cc2283a20
QConf allows you to have a nice configure script for your qmake-based project. It is intended for developers who don't need (or want) to use the more complex GNU autotools. With qconf/qmake, it is easy to maintain a cross-platform project that uses a familiar configuration interface on unix. WWW: http://delta.affinix.com/qconf/ PR: based on ports/151028 Submitted by: Andreev Maxim <andreevmaxim at gmail.com>
28 lines
591 B
Makefile
28 lines
591 B
Makefile
# New ports collection makefile for: qconf
|
|
# Date created: 2010-10-28
|
|
# Whom: Andreev Maxim <andreevmaxim@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= qconf
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://delta.affinix.com/download/
|
|
|
|
MAINTAINER= andreevmaxim@gmail.com
|
|
COMMENT= Tool to create configure script for qmake-based project
|
|
|
|
USE_BZIP2= yes
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= corelib xml moc_build qmake_build
|
|
HAS_CONFIGURE= yes
|
|
QT_NONSTANDARD= yes
|
|
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--datadir=${DATADIR:S,/qconf,,} \
|
|
--qtdir=${QT_PREFIX} \
|
|
--verbose
|
|
|
|
.include <bsd.port.mk>
|