mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
- Move commands from files/pkg-install.in into post-install
- Kill files/ PR: ports/187537 (second half) Submitted by: Johannes Jost Meixner <xmj@chaot.net>
This commit is contained in:
parent
20c08e16d1
commit
d65be6ab55
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=348883
@ -18,7 +18,6 @@ PKGNAMESUFFIX= 17
|
||||
|
||||
WRKSRC= ${WRKDIR}/jre${DL_JRE_VERSION}
|
||||
PLIST_SUB+= T=${APP_HOME:S/^${PREFIX}\///} PORTVERSION=${PORTVERSION}
|
||||
PKGINSTALL= ${WRKDIR}/pkg-install
|
||||
|
||||
NO_BUILD= yes
|
||||
USE_LINUX= yes
|
||||
@ -59,9 +58,10 @@ do-install:
|
||||
.endfor
|
||||
|
||||
post-install:
|
||||
@${SED} -e "s:%%JRE_HOME%%:${APP_HOME}:g; \
|
||||
s:%%STAGEDIR%%:${STAGEDIR}:g" \
|
||||
< ${FILESDIR}/pkg-install.in > ${PKGINSTALL}
|
||||
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
||||
${MKDIR} ${STAGEDIR}${APP_HOME}/.systemPrefs
|
||||
${TOUCH} ${STAGEDIR}${APP_HOME}/.systemPrefs/.system.lock
|
||||
${TOUCH} ${STAGEDIR}${APP_HOME}/.systemPrefs/.systemRootModFile
|
||||
${CHMOD} 644 ${STAGEDIR}${APP_HOME}/.systemPrefs/.system.lock
|
||||
${CHMOD} 644 ${STAGEDIR}${APP_HOME}/.systemPrefs/.systemRootModFile
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
@ -1,19 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# System preference location
|
||||
PREFS_LOCATION=%%JRE_HOME%%
|
||||
|
||||
# Set up system preferences during post install
|
||||
if [ "$2" = "POST-INSTALL" ]; then
|
||||
if [ ! -d "%%STAGEDIR%%${PREFS_LOCATION}/.systemPrefs" ] ; then
|
||||
mkdir -m 755 "%%STAGEDIR%%${PREFS_LOCATION}/.systemPrefs"
|
||||
fi
|
||||
if [ ! -f "%%STAGEDIR%%${PREFS_LOCATION}/.systemPrefs/.system.lock" ] ; then
|
||||
touch "%%STAGEDIR%%${PREFS_LOCATION}/.systemPrefs/.system.lock"
|
||||
chmod 644 "%%STAGEDIR%%${PREFS_LOCATION}/.systemPrefs/.system.lock"
|
||||
fi
|
||||
if [ ! -f "%%STAGEDIR%%${PREFS_LOCATION}/.systemPrefs/.systemRootModFile" ] ; then
|
||||
touch "%%STAGEDIR%%${PREFS_LOCATION}/.systemPrefs/.systemRootModFile"
|
||||
chmod 644 "%%STAGEDIR%%${PREFS_LOCATION}/.systemPrefs/.systemRootModFile"
|
||||
fi
|
||||
fi
|
Loading…
Reference in New Issue
Block a user