mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
998442cfd9
- IGNORE when using pkgng, these ports only work with pkg-tools. PR: ports/176700 Submitted by: Hannes <h2+fbsdports@fsfe.org> (maintainer)
72 lines
1.6 KiB
Makefile
72 lines
1.6 KiB
Makefile
# Created by: Hannes Hauswedell <hannes.hauswedell@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kports
|
|
PORTVERSION= 0.8.2
|
|
PORTREVISION= 5
|
|
CATEGORIES= ports-mgmt kde
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= h2+fbsdports@fsfe.org
|
|
COMMENT= Qt4-Version of your favorite frontend to the Ports
|
|
|
|
RUN_DEPENDS= portaudit:${PORTSDIR}/ports-mgmt/portaudit \
|
|
uma:${PORTSDIR}/sysutils/bsdadminscripts
|
|
|
|
CONFLICTS= kports-0.[0-7]*
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_QT4= corelib gui network qmake_build moc_build uic_build rcc_build
|
|
QMAKE_ARGS+= PREFIX=${PREFIX}
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
LATEST_LINK= kports-qt4
|
|
|
|
OPTIONS_DEFINE= DEBUG OXYGEN KDEBASE
|
|
OPTIONS_DEFAULT= OXYGEN KDEBASE
|
|
OXYGEN_DESC= Pull in Oxygen icons (recommended)
|
|
KDEBASE_DESC= Pull in kdebase-runtime for kdesu
|
|
|
|
.if defined(WITH_PKGNG)
|
|
IGNORE= only works with traditional pkg-tools
|
|
.endif
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MOXYGEN}
|
|
USE_KDE4= oxygen
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MKDEBASE}
|
|
USE_KDE4= runtime
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g' ${WRKSRC}/data/kports.desktop
|
|
|
|
.if ${PORT_OPTIONS:MDEBUG}
|
|
pre-configure:
|
|
@(${ECHO_CMD} "CONFIG += debug" >> ${WRKSRC}/src/src.pro)
|
|
@(${ECHO_CMD} "CONFIG -= release warn_off" >> ${WRKSRC}/src/src.pro)
|
|
@(${ECHO_CMD} "CONFIG += debug warn_on" >> ${WRKSRC}/src/src.pro)
|
|
@(${ECHO_CMD} "DEFINES -= QT_NO_DEBUG_OUTPUT" >> ${WRKSRC}/src/src.pro)
|
|
.endif
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
|
|
${QMAKE} -unix ${QMAKE_ARGS} kports.pro
|
|
|
|
post-install:
|
|
.if ! ${PORT_OPTIONS:MOXYGEN}
|
|
@${CAT} pkg-message.nooxygen
|
|
.endif
|
|
|
|
.if ! ${PORT_OPTIONS:MKDEBASE}
|
|
@${CAT} pkg-message.nokdebase
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|