diff options
author | makc <makc@FreeBSD.org> | 2015-02-28 00:30:40 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2015-02-28 00:30:40 +0800 |
commit | 201d08f29d3c2d8256e4b71a87e7439510ee9308 (patch) | |
tree | 1916b6a6f94f55bc65a92e4e4d01b57e479ca1ef /cad | |
parent | 5b933ea828a732eb43f6a82f7d1e3b97ec3b2c77 (diff) | |
download | freebsd-ports-gnome-201d08f29d3c2d8256e4b71a87e7439510ee9308.tar.gz freebsd-ports-gnome-201d08f29d3c2d8256e4b71a87e7439510ee9308.tar.zst freebsd-ports-gnome-201d08f29d3c2d8256e4b71a87e7439510ee9308.zip |
Fix DESKTOP_ENTRIES:
- Icon field must be either absolute path or icon name if installation follows Icon Theme Specification
- Remove invalid categories
- StartupNotify field must be literally false/true, not ${FALSE}/${TRUE}
Diffstat (limited to 'cad')
-rw-r--r-- | cad/electric-ng/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cad/electric-ng/Makefile b/cad/electric-ng/Makefile index 84484b4c4eea..2b4e738a5afb 100644 --- a/cad/electric-ng/Makefile +++ b/cad/electric-ng/Makefile @@ -42,7 +42,7 @@ J3DLIB= ${JAVA_HOME}/jre/lib/ext/j3dcore.jar PLUGINDIR= ${PREFIX}/libexec/${PORTNAME}${PKGNAMESUFFIX} DESKTOP_ENTRIES="Electric-NG" "${COMMENT}" "${PORTNAME}${PKGNAMESUFFIX}" \ - "${PORTNAME}${PKGNAMESUFFIX}" "Development;Electronics;Engineering;" ${FALSE} + "${PORTNAME}${PKGNAMESUFFIX}" "Development;Electronics;Engineering;" false .include <bsd.port.options.mk> |