summaryrefslogtreecommitdiff
path: root/mk/misc
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2013-02-10 13:04:08 +0000
committerobache <obache@pkgsrc.org>2013-02-10 13:04:08 +0000
commit0f68409a88462e546dd31a091584198c456aa299 (patch)
tree95edf713b78fee9eaed602093138f6ee6a99e271 /mk/misc
parent87a50e21df66bd49c31862e774f163b202665745 (diff)
downloadpkgsrc-0f68409a88462e546dd31a091584198c456aa299.tar.gz
Experimental support of manifest files for Windows UAC.
For Windows Vista or later, executable files including special keywords (install, update, patch, and so on) in its name are expected as requireing privileged permissions by default (UAC). If not, it must be specified with manifest file, or it will be failed to execute as "Permission denied".
Diffstat (limited to 'mk/misc')
-rw-r--r--mk/misc/uac-manifest14
-rw-r--r--mk/misc/uac-manifest.mk39
2 files changed, 53 insertions, 0 deletions
diff --git a/mk/misc/uac-manifest b/mk/misc/uac-manifest
new file mode 100644
index 00000000000..80713804a7f
--- /dev/null
+++ b/mk/misc/uac-manifest
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!-- $NetBSD: uac-manifest,v 1.1 2013/02/10 13:04:08 obache Exp $ -->
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+ <assemblyIdentity version="1.0.0.0"
+ name="pkgsrc.@PKGNAME@.@PROGNAME@"
+ type="win32"/>
+ <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
+ <security>
+ <requestedPrivileges>
+ <requestedExecutionLevel level="asInvoker" uiAccess="false"/>
+ </requestedPrivileges>
+ </security>
+ </trustInfo>
+</assembly>
diff --git a/mk/misc/uac-manifest.mk b/mk/misc/uac-manifest.mk
new file mode 100644
index 00000000000..4900fa62b5b
--- /dev/null
+++ b/mk/misc/uac-manifest.mk
@@ -0,0 +1,39 @@
+# $NetBSD: uac-manifest.mk,v 1.1 2013/02/10 13:04:08 obache Exp $
+#
+# This file generate manifest files for Windows.
+# For Windows Vista or later, executable files including special keywords
+# (install, update, patch, and so on) in its name are expected as requireing
+# privileged permissions by default (UAC).
+# If not, it must be specified with manifest file, or it will be failed to
+# execute as "Permission denied".
+#
+# Package-settable variables:
+#
+# UAC_REQD_EXECS
+# A list of files requireing manifest file for UAC.
+# Paths are relative to PREFIX.
+#
+# Default value: not defined
+#
+
+GENERATE_PLIST+= ${UAC_MANIFEST_GENERATE_PLIST}
+UAC_MANIFEST_GENERATE_PLIST= \
+ ${ECHO} "@comment The following lines are automatically generated." && \
+ ( cd ${DESTDIR}${PREFIX}; \
+ for file in ${UAC_REQD_EXECS}; do \
+ ${TEST} $${file} -ef $${file}.exe && file=$${file}.exe; \
+ ${ECHO} $${file}.manifest; \
+ done)
+
+.PHONY: generate-uac-manifests
+post-install: generate-uac-manifests
+generate-uac-manifests:
+.for file in ${UAC_REQD_EXECS}
+ ${RUN} progname=`basename ${file} .exe`; \
+ filename=${file}; \
+ cd ${DESTDIR}${PREFIX}; \
+ ${TEST} ${file} -ef ${file}.exe && filename=${file}.exe; \
+ ${SED} -e s,@PKGNAME@,${PKGBASE}, -e s,@PROGNAME@,$${progname}, \
+ ${PKGSRCDIR}/mk/misc/uac-manifest \
+ > $${filename}.manifest
+.endfor \ No newline at end of file