- Install configuration files in ${PREFIX}/etc/amap, and preserve user modifications across updates - Do not define PORTDOCS if NOPORTDOCS is defined - Respect ${LOCALBASE}, ${PREFIX}, ${CC} and ${CFLAGS} - Add USE_OPENSSL=yes PR: ports/81354 [1] Submitted by: maintainer [1]
7 lines
164 B
Bash
7 lines
164 B
Bash
#!/bin/sh
|
|
|
|
[ "$2" != "POST-INSTALL" ] && exit 0
|
|
|
|
for f in %%CONF_FILES%%; do
|
|
[ -f "%%CONF_DIR%%/$f" ] || cp -p "%%CONF_DIR%%/$f.default" "%%CONF_DIR%%/$f"
|
|
done
|