mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
Update to 1.3.1
Install ists-preload as well [1] Fix startup script to only copy example configs if installed [2] PR: ports/171680 [1], ports/171683 [2] Submitted by: kaltheat <kaltheat@gmail.com> (pr) zeising (patches) Approved by: kwm (mentor)
This commit is contained in:
parent
12bd2d4537
commit
8dcaf09198
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=304901
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= xombrero
|
||||
PORTVERSION= 1.3.0
|
||||
PORTVERSION= 1.3.1
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= https://opensource.conformal.com/snapshots/xombrero/
|
||||
EXTRACT_SUFX= .tgz
|
||||
@ -58,7 +58,7 @@ do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/xombreroicon${i}.png ${PREFIX}/share/icons/hicolor/${i}x${i}/apps
|
||||
.endfor
|
||||
${MKDIR} ${DATADIR}
|
||||
.for i in style.css tld-rules
|
||||
.for i in hsts-preload style.css tld-rules
|
||||
${INSTALL_DATA} ${WRKSRC}/${i} ${DATADIR}
|
||||
.endfor
|
||||
${MKDIR} ${PREFIX}/share/applications
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (xombrero-1.3.0.tgz) = 42d831953cd011a81d1c5914ea9e14b14be240b400c1ed94c4cc26ba89f9dde2
|
||||
SIZE (xombrero-1.3.0.tgz) = 253343
|
||||
SHA256 (xombrero-1.3.1.tgz) = b7eee30e68ad2d71352b9c4d7ca34f025df64277f82e87d6178aa1ad9a291231
|
||||
SIZE (xombrero-1.3.1.tgz) = 259149
|
||||
|
@ -9,12 +9,12 @@ if [ ! -d "$HOME/.xombrero" ]; then
|
||||
mkdir -p -m 700 $HOME/.xombrero
|
||||
fi
|
||||
|
||||
if [ ! -f "$HOME/.xombrero.conf" ]; then
|
||||
if [ -f "%%EXAMPLESDIR%%/xombrero.conf" ] && [ ! -f "$HOME/.xombrero.conf" ]; then
|
||||
cp %%EXAMPLESDIR%%/xombrero.conf $HOME/.xombrero.conf
|
||||
chmod +w $HOME/.xombrero.conf
|
||||
fi
|
||||
|
||||
if [ ! -f "$HOME/.xombrero/playflash.sh" ]; then
|
||||
if [ -f "%%EXAMPLESDIR%%/playflash.sh" ] && [ ! -f "$HOME/.xombrero/playflash.sh" ]; then
|
||||
cp %%EXAMPLESDIR%%/playflash.sh $HOME/.xombrero/playflash.sh
|
||||
chmod +x $HOME/.xombrero/playflash.sh
|
||||
fi
|
||||
|
@ -6,6 +6,7 @@ share/icons/hicolor/16x16/apps/xombreroicon16.png
|
||||
share/icons/hicolor/32x32/apps/xombreroicon32.png
|
||||
share/icons/hicolor/48x48/apps/xombreroicon48.png
|
||||
share/icons/hicolor/64x64/apps/xombreroicon64.png
|
||||
%%DATADIR%%/hsts-preload
|
||||
%%DATADIR%%/style.css
|
||||
%%DATADIR%%/tld-rules
|
||||
@dirrm %%DATADIR%%
|
||||
|
Loading…
Reference in New Issue
Block a user