svn commit: r484317 - in head/sysutils: . jstest-gtk

Tobias Kortkamp tobik at FreeBSD.org
Tue Nov 6 20:25:00 UTC 2018


On Tue, Nov 6, 2018, at 20:15, Eugene Grosbein wrote:
> Author: eugen
> Date: Tue Nov  6 19:15:39 2018
> New Revision: 484317
> URL: https://svnweb.freebsd.org/changeset/ports/484317
> 
> Log:
>   New port sysutils/jstest-gtk: simple joystick tester based on Gtk+.
>   
>   PR:		231218
>   Submitted by:	Ivan Rozhuk <rozhuk.im at gmail.com>
> 
> Added:
>   head/sysutils/jstest-gtk/
>   head/sysutils/jstest-gtk/Makefile   (contents, props changed)
>   head/sysutils/jstest-gtk/distinfo   (contents, props changed)
>   head/sysutils/jstest-gtk/pkg-descr   (contents, props changed)
>   head/sysutils/jstest-gtk/pkg-message   (contents, props changed)
>   head/sysutils/jstest-gtk/pkg-plist   (contents, props changed)
> Modified:
>   head/sysutils/Makefile
> 
> Modified: head/sysutils/Makefile
> ==============================================================================
> --- head/sysutils/Makefile	Tue Nov  6 19:00:50 2018	(r484316)
> +++ head/sysutils/Makefile	Tue Nov  6 19:15:39 2018	(r484317)
> @@ -550,6 +550,7 @@
>      SUBDIR += jkill
>      SUBDIR += jobd
>      SUBDIR += jps
> +    SUBDIR += jstest-gtk
>      SUBDIR += jtop
>      SUBDIR += jtopen
>      SUBDIR += jvmtop
> 
> Added: head/sysutils/jstest-gtk/Makefile
> ==============================================================================
> --- /dev/null	00:00:00 1970	(empty, because file is newly added)
> +++ head/sysutils/jstest-gtk/Makefile	Tue Nov  6 19:15:39 2018	(r484317)
> @@ -0,0 +1,35 @@
> +# $FreeBSD$
> +
> +PORTNAME=	jstest-gtk
> +PORTVERSION=	20180710
> +CATEGORIES=	sysutils
> +
> +MAINTAINER=	rozhuk.im at gmail.com
> +COMMENT=	Simple joystick tester based on Gtk+
> +
> +LICENSE=	GPLv3
> +LICENSE_FILE=	${WRKSRC}/COPYING
> +
> +USES=		cmake pkgconfig libtool localbase:ldflags
> +USE_GNOME=	gtkmm30 libsigc++20
> +
> +INSTALLS_ICONS=	yes
> +
> +# gitlab variables
> +USE_GITLAB=	yes
> +GL_ACCOUNT=	jstest-gtk
> +GL_COMMIT=	62f6e2d7d44620e503149510c428df9e004c9f3b
> +
> +post-extract:
> +	@${MKDIR} ${WRKSRC}/src/linux/
> +	@${CP} -f ${FILESDIR}/input.h ${WRKSRC}/src/linux/
> +	@${CP} -f ${FILESDIR}/input-event-codes.h ${WRKSRC}/src/linux/
> +	@${CP} -f ${FILESDIR}/joystick.h ${WRKSRC}/src/linux/
> +	@${CP} -f ${FILESDIR}/types.h ${WRKSRC}/src/linux/

I think you forgot to commit files/.  Though a copy of the evdev
headers are also in /usr/include/dev/evdev so probably don't need
to be added to the ports tree.


More information about the svn-ports-all mailing list