- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
# Created by: Golyashov Sergei <svvord@mail.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kdevelop
|
|
DISTVERSION= ${KDEVELOP_VERSION}
|
|
CATEGORIES= devel kde
|
|
MASTER_SITES= KDE/${KDEVELOP_BRANCH}/kdevelop/${DISTVERSION}/src
|
|
DIST_SUBDIR= KDE/kdevelop/${KDEVELOP_VERSION}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Plugin extensible IDE for KDE
|
|
|
|
LIB_DEPENDS= libkdevplatforminterfaces.so:${PORTSDIR}/devel/kdevplatform
|
|
RUN_DEPENDS= gmake:${PORTSDIR}/devel/gmake
|
|
|
|
USE_KDE4= kdelibs kdeprefix workspace automoc4
|
|
USE_QT4= qmake_build moc_build uic_build rcc_build \
|
|
corelib declarative gui help script webkit xml
|
|
USES= cmake:outsource compiler:c++11-lib gmake shared-mime-info tar:xz
|
|
|
|
OPTIONS_DEFINE= OKTETA PHP NLS
|
|
OPTIONS_DEFAULT= OKTETA PHP
|
|
OPTIONS_SUB= yes
|
|
|
|
OKTETA_DESC= Hex editing support via Okteta
|
|
OKTETA_LIB_DEPENDS= libokteta1core.so:${PORTSDIR}/devel/okteta
|
|
OKTETA_CMAKE_OFF= -DWITH_LibOktetaKasten:BOOL=OFF
|
|
OKTETA_CMAKE_ON= -DWITH_LibOktetaKasten:BOOL=ON
|
|
|
|
PHP_DESC= PHP support for KDevelop
|
|
PHP_RUN_DEPENDS= ${KDE4_PREFIX}/lib/kde4/kdevphplanguagesupport.so:${PORTSDIR}/devel/kdevelop-php
|
|
|
|
NLS_USES= gettext
|
|
NLS_CMAKE_OFF= -DBUILD_po:BOOL=FALSE
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/^update_xdg_mimetypes/ d; /SharedMimeInfo/ d' \
|
|
${PATCH_WRKSRC}/app/CMakeLists.txt
|
|
|
|
.include <bsd.port.mk>
|