diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2012-05-30 16:49:12 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2012-05-30 16:49:12 +0000 |
commit | 4b68fc723bc6478544954fa1a7554ca5c269f611 (patch) | |
tree | 752bd2703b89f85a96b337b223e14ab4bb621705 /x11-wm/xfce4-panel | |
parent | 66521294b08078847ba4c56a6423c20cf34d68f8 (diff) | |
download | ports-4b68fc723bc6478544954fa1a7554ca5c269f611.tar.gz ports-4b68fc723bc6478544954fa1a7554ca5c269f611.zip |
- Convert complete XFCE to new options framework
While here some extra work:
- Remove 6.X gruft
- Correct NOPORTDOCS
- Pet portlint
- Whitespaces fixes
Reviewed by: beat, bapt (thx!)
Notes
Notes:
svn path=/head/; revision=297800
Diffstat (limited to 'x11-wm/xfce4-panel')
-rw-r--r-- | x11-wm/xfce4-panel/Makefile | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/x11-wm/xfce4-panel/Makefile b/x11-wm/xfce4-panel/Makefile index facd6adf37bb..982e4359f05a 100644 --- a/x11-wm/xfce4-panel/Makefile +++ b/x11-wm/xfce4-panel/Makefile @@ -31,14 +31,13 @@ USE_XFCE= configenv garcon libexo libmenu libutil xfconf USE_XORG= x11 sm CONFIGURE_ARGS+=--enable-gio-unix \ - --disable-gtk-doc-html + --disable-gtk-doc-html -OPTIONS= NLS "Enable Native Language Support" on \ - APIDOCS "Install api documentation" off +OPTIONS_DEFINE= NLS DOCS -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if !defined(WITHOUT_NLS) +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes CONFIGURE_ARGS+=--enable-nls PLIST_SUB+= NLS="" @@ -47,15 +46,15 @@ CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " .endif -.if defined(WITHOUT_APIDOCS) -CONFIGURE_ARGS+=--without-html-dir -PLIST_SUB+= APIDOCS="@comment " -.else +.if ${PORT_OPTIONS:MDOCS} CONFIGURE_ARGS+=--with-html-dir=${PREFIX}/share/gtk-doc/html PLIST_SUB+= APIDOCS="" +.else +CONFIGURE_ARGS+=--without-html-dir +PLIST_SUB+= APIDOCS="@comment " .endif post-install: @-update-desktop-database -.include <bsd.port.post.mk> +.include <bsd.port.mk> |