diff options
author | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2023-10-29 12:38:01 -0500 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2023-10-29 12:52:20 -0500 |
commit | 8c962df69fb136431a541f4bbd64e24e8e3eff64 (patch) | |
tree | 2b566a4c50af7095dbbe3a31f4e8ee8d26c3606f /editors/lazarus | |
parent | d8dd6ec7aab4f50b95c0b8a896e7a0a49fe7a82a (diff) | |
download | freebsd-ports-8c962df69fb136431a541f4bbd64e24e8e3eff64.zip |
editors/lazarus-*: Update CONFLICTS
- editors/lazarus-qt5: Bump PORTREVISION. qt5pas was updated
- editors/lazarus-*: Add -p to ${INSTALL_DATA} to Add -p to ${INSTALL_DATA} to
preserves the access and modification times. It avoid issues with checksum
changes and it improves compile time when lazarus ide is rebuild by users.
- Bump PORTREVISION
Diffstat (limited to 'editors/lazarus')
-rw-r--r-- | editors/lazarus/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/lazarus/Makefile b/editors/lazarus/Makefile index d48af3565a26..6f80a1243386 100644 --- a/editors/lazarus/Makefile +++ b/editors/lazarus/Makefile @@ -2,7 +2,7 @@ PORTNAME= lazarus PORTVERSION= 2.2.6 DISTVERSIONSUFFIX= -0 PKGNAMESUFFIX?= -gtk2 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= editors devel MASTER_SITES= SF/${PORTNAME}/Lazarus%20Zip%20_%20GZip/Lazarus%20${PORTVERSION} \ LOCAL/acm/freepascal @@ -12,7 +12,7 @@ MAINTAINER?= acm@FreeBSD.org COMMENT?= Portable Delphi-like IDE for the FreePascal compiler (GTK2) WWW= https://www.lazarus-ide.org/ -CONFLICTS?= ${PORTNAME}-qt5 +CONFLICTS?= lazarus-gtk2-devel lazarus-qt5 lazarus-qt5-devel lazarusqt6-devel BUILD_DEPENDS?= ${LOCALBASE}/bin/as:devel/binutils \ fpcres:lang/fpc-utils @@ -136,7 +136,7 @@ do-install: @${MKDIR} ${STAGEDIR}${DATADIR}/${DIRE} @cd ${WRKSRC}/${DIRE} && \ ${FIND} * -type d -exec ${MKDIR} "${STAGEDIR}${DATADIR}/${DIRE}/{}" \; && \ - ${FIND} * -type f -exec ${INSTALL_DATA} {} "${STAGEDIR}${DATADIR}/${DIRE}/{}" \; + ${FIND} * -type f -exec ${INSTALL_DATA} -p {} "${STAGEDIR}${DATADIR}/${DIRE}/{}" \; .endfor @${CHMOD} +x ${STAGEDIR}${DATADIR}/tools/svn2revisioninc ${STAGEDIR}${DATADIR}/tools/lazres ${STAGEDIR}${DATADIR}/tools/lrstolfm \ ${STAGEDIR}${DATADIR}/tools/updatepofiles |