diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-05-23 23:17:42 +0800 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-05-23 23:17:42 +0800 |
commit | 22db4cbeef3ed4ecd3ce0b5ef94c9bf92d93d1b1 (patch) | |
tree | c7c5b061d90424b8e9dbf7b5987e8fc40bbd665c | |
parent | 31c9673a3f3a2ae17e753fabb8681d3200a8c4f4 (diff) | |
download | freebsd-ports-gnome-22db4cbeef3ed4ecd3ce0b5ef94c9bf92d93d1b1.tar.gz freebsd-ports-gnome-22db4cbeef3ed4ecd3ce0b5ef94c9bf92d93d1b1.tar.zst freebsd-ports-gnome-22db4cbeef3ed4ecd3ce0b5ef94c9bf92d93d1b1.zip |
- Pass maintainership to submitter
- While here, minor cleanup
- Clarify LICENSE
- Add LICENSE_FILE
- Remove unneeded flags
- Don't needlessly and erroneously patch wish path when TCL is disabled and ${WISH} is not defined
- Silence mkdir
PR: 209705
Submitted by: guru@unixarea.de
-rw-r--r-- | x11/xbindkeys/Makefile | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/x11/xbindkeys/Makefile b/x11/xbindkeys/Makefile index f65a9f8b5bcb..030bef23635e 100644 --- a/x11/xbindkeys/Makefile +++ b/x11/xbindkeys/Makefile @@ -7,31 +7,30 @@ PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= http://www.nongnu.org/xbindkeys/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= guru@unixarea.de COMMENT= Allows you to launch shell commands under X with your keyboard -LICENSE= GPLv2 - -OPTIONS_DEFINE= GUILE TCL +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING USE_XORG= x11 xi GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib PLIST_FILES= bin/xbindkeys %%EXAMPLESDIR%%/xbindkeysrc man/man1/xbindkeys.1.gz +OPTIONS_DEFINE= GUILE TCL + TCL_USES= tk TCL_CONFIGURE_OFF= --disable-tk TCL_PLIST_FILES= bin/xbindkeys_show man/man1/xbindkeys_show.1.gz GUILE_LIB_DEPENDS= libguile.so:lang/guile GUILE_CONFIGURE_OFF= --disable-guile -post-patch: +post-patch-TCL-on: @${REINPLACE_CMD} -e 's| wish | ${WISH} |g' ${WRKSRC}/xbindkeys_show post-install: - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/xbindkeysrc ${STAGEDIR}${EXAMPLESDIR} .include <bsd.port.mk> |