1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

- Move commands from files/pkg-install.in into post-install

- Kill files/

Submitted by:	Johannes Jost Meixner <xmj@chaot.net> (via irc)
This commit is contained in:
Steve Wills 2014-03-23 22:27:53 +00:00
parent 02f21ee7d9
commit 4032c26e2f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=348896
2 changed files with 5 additions and 24 deletions

View File

@ -20,7 +20,6 @@ PKGNAMESUFFIX= 16
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
@ -65,9 +64,10 @@ do-install:
| ${CPIO} -pdmu -R ${LIBOWN}:${LIBGRP} ${STAGEDIR}${APP_HOME}
post-install:
${SED} -e "s:%%JRE_HOME%%:${APP_HOME}:g; \
s:%%STAGEDIR%%:${STAGEDIR}:" \
< ${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>

View File

@ -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