5393242c73
Performing substitutions during post-patch breaks tools such as mkpatches, making it very difficult to regenerate correct patches after making changes, and often leading to substituted string replacements being committed.
72 lines
2.3 KiB
Makefile
72 lines
2.3 KiB
Makefile
# $NetBSD: Makefile,v 1.54 2018/07/04 13:40:14 jperkin Exp $
|
|
|
|
DISTNAME= gps-${GPS_VERSION}
|
|
PKGREVISION= 17
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://downloads.dragonlace.net/src/
|
|
DISTFILES= gps-5.2.1-1-src.tgz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/AdaCore/gps
|
|
COMMENT= GNAT Programming Studio - IDE for Ada and many other languages
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
# GPS is no longer buildable and needs to be updated to work with
|
|
# current Ada compilers. The former MAINTAINER abandoned it.
|
|
PKG_FAIL_REASON= Unbuildable with gcc5-aux.
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake sed perl awk pkg-config
|
|
|
|
GPS_VERSION= 5.2.1
|
|
USE_LANGUAGES= c ada c++
|
|
MY_CONFIGURE_ENV+= ADA_PROJECT_PATH=${APP}
|
|
MY_MAKE_ENV+= PROCESSORS=${MAKE_JOBS:U1:Q} \
|
|
ADA_PROJECT_PATH=${APP} \
|
|
PATH=${PREFIX}/gcc5-aux/bin:${PATH}
|
|
MAKE_ARGS= Build=Production
|
|
APP= ${PREFIX}/lib/gnat
|
|
WRKSRC= ${WRKDIR}/gps-release-ide-${GPS_VERSION}-src
|
|
|
|
.include "options.mk"
|
|
|
|
CONFIGURE_ARGS+= --disable-shared --with-gmp=${PREFIX}
|
|
|
|
SUBST_CLASSES+= coll python
|
|
SUBST_STAGE.coll= pre-configure
|
|
SUBST_FILES.coll= gnatlib/src/gnatcoll_readline.gpr.in
|
|
SUBST_SED.coll= -e "s|@PREFIX@|${PREFIX}|g"
|
|
SUBST_SED.coll+= -e "s|-rpath|${LINKER_RPATH_FLAG}|g"
|
|
SUBST_STAGE.python= pre-configure
|
|
SUBST_FILES.python= share/plug-ins/gps_utils/console_process.py
|
|
SUBST_SED.python= -e "s|/usr/bin/python|${PYTHONBIN}|"
|
|
|
|
GENERATE_PLIST= cd ${DESTDIR}${PREFIX}; \
|
|
${FIND} * \( -type f -or -type l \) | ${SORT};
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && ${SETENV} ${MY_CONFIGURE_ENV} \
|
|
./configure ${CONFIGURE_ARGS}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${SETENV} ${MY_MAKE_ENV} gmake ${MAKE_ARGS} default
|
|
|
|
pre-install:
|
|
.if !empty(PKG_OPTIONS:Mpython)
|
|
${PY_COMPILE_ALL} ${WRKSRC}/share/plug-ins
|
|
${PY_COMPILE_ALL} ${WRKSRC}/share/library
|
|
.endif
|
|
|
|
post-install:
|
|
${RM} -rf ${DESTDIR}${PREFIX}/share/doc/gps/html/users_guide/_sources
|
|
${RM} -rf ${DESTDIR}${PREFIX}/share/doc/gps/html/tutorial/_sources
|
|
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx
|
|
BUILDLINK_DEPMETHOD.gprbuild-aux= full
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../x11/gtkada/buildlink3.mk"
|
|
.include "../../textproc/xmlada/buildlink3.mk"
|
|
.include "../../devel/gmp/buildlink3.mk"
|
|
.include "../../devel/gprbuild-aux/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|