diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-18 01:01:16 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-18 01:01:16 +0000 |
commit | 2650645237555cc24c532a4c9ccd81d8c01bcaf7 (patch) | |
tree | 297cb8213bb881f96893b6246a623718af50a8e1 /packages/opencvs/opencvs_cvs.bb | |
parent | 6e012296c2dc513ae301654b3d4d3eb826068c81 (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/01/17 19:01:15-06:00 ti.com!kergoth
Move 'patcher-native' into a PATCH_DEPENDS variable.
2005/01/17 18:35:01-06:00 ti.com!kergoth
Teach base_do_patch to unapply all the patches before it starts applying things. This ensures that a patch being 'already applied' isn't a problem.
BKrev: 41ec5fdcZyPXKe57f5FM3PpA19zcww
Diffstat (limited to 'packages/opencvs/opencvs_cvs.bb')
-rw-r--r-- | packages/opencvs/opencvs_cvs.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/opencvs/opencvs_cvs.bb b/packages/opencvs/opencvs_cvs.bb index e69de29bb2..e57e462b8d 100644 --- a/packages/opencvs/opencvs_cvs.bb +++ b/packages/opencvs/opencvs_cvs.bb @@ -0,0 +1,20 @@ +# 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" +PV = "0.0cvs${CVSDATE}" +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 |