aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/opencvs/opencvs_cvs.bb
blob: aa71ff25e0a093d274ad63b8c0e62bfafcae93ff (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;module=src/usr.bin/cvs;method=ext \
	   file://linux.patch"
S = "${WORKDIR}/cvs"

inherit autotools

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