32 lines
		
	
	
		
			614 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			614 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Copyright 2020 Julian Ospald <hasufell@posteo.de>
 | |
| # Distributed under the terms of the GNU General Public License v2
 | |
| 
 | |
| require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.15 ] ]
 | |
| 
 | |
| SUMMARY="An input event router"
 | |
| DOWNLOADS="https://files.bedroomlan.org/debian/pool/main/e/evrouter/evrouter_${PV}.tar.gz"
 | |
| 
 | |
| LICENCES="GPL-2"
 | |
| SLOT="0"
 | |
| PLATFORMS="~amd64 ~x86"
 | |
| MYOPTIONS=""
 | |
| 
 | |
| RESTRICT="test"
 | |
| 
 | |
| DEPENDENCIES="
 | |
|     build+run:
 | |
|         x11-libs/libX11
 | |
|         x11-libs/libXtst
 | |
| "
 | |
| 
 | |
| BUGS_TO="hasufell@posteo.de"
 | |
| 
 | |
| DEFAULT_SRC_CONFIGURE_PARAMS=(
 | |
|     --without-xmms
 | |
| )
 | |
| 
 | |
| src_prepare() {
 | |
|     default
 | |
|     eautoreconf
 | |
| }
 |