aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/opencvs/opencvs_cvs.bb
blob: 19e8f0bc0b07dc25e3849848df271027ac7c03f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# FIXME: Update to work with some other MD5 implementation.
# It's silly to pull in OpenSSL just for that.
DEPENDS = "openssl"
DESCRIPTION = "BSD-licensed equivalent of the popular versioning system CVS."
LICENSE = "BSD"
PRIORITY = "optional"
SECTION = "console/network"
SRCDATE = "20060814"
PV = "0.0+cvs${SRCDATE}"
PR = "r1"

SRC_URI = "cvs://anoncvs@anoncvs.ca.openbsd.org/cvs;method=ext;module=src/usr.bin/cvs \
	   file://linux.patch;patch=1"
S = "${WORKDIR}/cvs"

inherit autotools

do_clean_tree () {
	rm -rf ${S}/cvs ${S}/cvsd
}
addtask clean_tree after do_patch before do_configure