genode/repos/dde_rump/ports/dde_rump.port
Sebastian Sumpf 38abfc79f5 rump: reduce size of rump
* integrate rump's contrib code into Genode's build system and build what is
  required by Genode, only
* checkout needed NetBSD sources directly from CVS

fixes #2589
2017-11-30 11:23:19 +01:00

21 lines
502 B
Makefile

LICENSE := BSD
VERSION := cvs
DOWNLOADS := rump.cvs
$(call check_tool, cvs)
URL(rump) := :pserver:anoncvs@anoncvs.netbsd.org:2401/cvsroot
REV(rump) := "20141216 2100UTC"
DIR(rump) := src/lib/dde_rump
HASH_INPUT += $(REP_DIR)/rump.list
PATCHES := $(shell find $(REP_DIR)/patches/*.patch)
PATCH_OPT := -N -d ${DIR(rump)} -p1
%.cvs:
@echo "CVS checkout rump ..."
$(VERBOSE)cat $(REP_DIR)/rump.list | xargs cvs -d $(URL($*)) -Q -z3 export \
-D $(REV($*)) -d $(DIR($*))
# vi: set ft=make :