diff options
author | shaun <shaun@FreeBSD.org> | 2006-10-19 07:56:28 +0800 |
---|---|---|
committer | shaun <shaun@FreeBSD.org> | 2006-10-19 07:56:28 +0800 |
commit | 4d9f874dc1062c54969c79007bd8f428e8a25c99 (patch) | |
tree | cdefa5ca567d419fa4e0bb37f68fb4968f1854cc /devel/gauche-readline | |
parent | c12218686b18323c98103e9cc20c9da1959b2c0e (diff) | |
download | freebsd-ports-gnome-4d9f874dc1062c54969c79007bd8f428e8a25c99.tar.gz freebsd-ports-gnome-4d9f874dc1062c54969c79007bd8f428e8a25c99.tar.zst freebsd-ports-gnome-4d9f874dc1062c54969c79007bd8f428e8a25c99.zip |
Unbreak port by fixing do-install.
PR: ports/104494
Submitted by: Frank J. Laszlo <laszlof@vonostingroup.com>
Approved by: portmgr (marcus),
Erik Greenwald <erik@smluc.org> (maintainer)
Diffstat (limited to 'devel/gauche-readline')
-rw-r--r-- | devel/gauche-readline/Makefile | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/devel/gauche-readline/Makefile b/devel/gauche-readline/Makefile index 2b0edc3ce000..93490d4b1907 100644 --- a/devel/gauche-readline/Makefile +++ b/devel/gauche-readline/Makefile @@ -20,23 +20,18 @@ COMMENT= A pure gauche/scheme implementation of the Readline library RUN_DEPENDS= gosh:${PORTSDIR}/lang/gauche BUILD_DEPENDS= gauche-config:${PORTSDIR}/lang/gauche -BROKEN= Changes permissions on installed file - GAUCHE_LIBDIR= share/gauche/site/lib -PLIST_SUB+= GAUCHE_LIBDIR=${GAUCHE_LIBDIR} +GAUCHE_FILES= readline/history.scm readline/keymap.scm readline/term-util.scm -# XXX: exists untill it will be committed to bsd.port.mk -COPYTREE_SHARE= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ - 2>&1) && \ - ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} $$1 && \ - ${FIND} $$1/ -type d -exec ${CHMOD} 755 {} \; && \ - ${FIND} $$1/ -type f -exec ${CHMOD} ${SHAREMODE} {} \;' -- +PLIST_SUB+= GAUCHE_LIBDIR=${GAUCHE_LIBDIR} do-install: -.if !exists(${PREFIX}/share/gauche/site/lib) - ${MKDIR} ${PREFIX}/share/gauche/site/lib +.if !exists(${PREFIX}/${GAUCHE_LIBDIR}/readline) + ${MKDIR} ${PREFIX}/${GAUCHE_LIBDIR}/readline .endif - @(cd ${WRKSRC} && ${COPYTREE_SHARE} "readline.scm readline" \ - ${PREFIX}/share/gauche/site/lib) + ${INSTALL_DATA} ${WRKSRC}/readline.scm ${PREFIX}/${GAUCHE_LIBDIR} +. for f in ${GAUCHE_FILES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/${GAUCHE_LIBDIR}/readline +. endfor .include <bsd.port.mk> |