| 1 | ##################################################################### |
|---|
| 2 | # OpenCSW build recipe for cadaver |
|---|
| 3 | # |
|---|
| 4 | # Copyright 2009 Yann Rouillard <yann@pleiades.fr.eu.org> |
|---|
| 5 | # All rights reserved. Use is subject to license terms. |
|---|
| 6 | # |
|---|
| 7 | # Redistribution and/or use, with or without modification, is |
|---|
| 8 | # permitted. This software is without warranty of any kind. The |
|---|
| 9 | # author(s) shall not be liable in the event that use of the |
|---|
| 10 | # software causes damage. |
|---|
| 11 | ##################################################################### |
|---|
| 12 | |
|---|
| 13 | ###### Package information ####### |
|---|
| 14 | |
|---|
| 15 | NAME = cadaver |
|---|
| 16 | VERSION = 0.23.3 |
|---|
| 17 | CATEGORIES = net |
|---|
| 18 | GARTYPE = v2 |
|---|
| 19 | |
|---|
| 20 | DESCRIPTION = WebDAV commandline tool |
|---|
| 21 | define BLURB |
|---|
| 22 | cadaver is a command-line WebDAV client. It supports resource upload/download/display, namespace |
|---|
| 23 | operations (copy/move), collection deletion/creation, property manipulation, and locking operations. |
|---|
| 24 | endef |
|---|
| 25 | |
|---|
| 26 | PACKAGES = CSWcadaver |
|---|
| 27 | SPKG_DESC_CSWcadaver = $(DESCRIPTION) |
|---|
| 28 | |
|---|
| 29 | RUNTIME_DEP_PKGS_CSWcadaver = CSWlibssl1-0-0 |
|---|
| 30 | RUNTIME_DEP_PKGS_CSWcadaver += CSWlibintl8 |
|---|
| 31 | RUNTIME_DEP_PKGS_CSWcadaver += CSWlibneon27 |
|---|
| 32 | RUNTIME_DEP_PKGS_CSWcadaver += CSWlibreadline6 |
|---|
| 33 | RUNTIME_DEP_PKGS_CSWcadaver += CSWlibexpat1 |
|---|
| 34 | RUNTIME_DEP_PKGS_CSWcadaver += CSWlibz1 |
|---|
| 35 | |
|---|
| 36 | # Stub package that allow us to rename transparently the package |
|---|
| 37 | # from CSWcadav to CSWcadaver |
|---|
| 38 | OBSOLETED_BY_CSWcadaver = CSWcadav |
|---|
| 39 | CATALOGNAME_CSWcadav = cadaver_stub |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | ###### Upstream and opencsw files information ####### |
|---|
| 43 | |
|---|
| 44 | MASTER_SITES = http://www.webdav.org/cadaver/ |
|---|
| 45 | |
|---|
| 46 | DISTFILES = $(NAME)-$(VERSION).tar.gz |
|---|
| 47 | DISTFILES += changelog.CSW |
|---|
| 48 | |
|---|
| 49 | ##### Build and installation information ##### |
|---|
| 50 | |
|---|
| 51 | CONFIGURE_ARGS = $(DIRPATHS) |
|---|
| 52 | CONFIGURE_ARGS += --enable-nls |
|---|
| 53 | CONFIGURE_ARGS += --with-ssl=openssl |
|---|
| 54 | CONFIGURE_ARGS += --with-expat |
|---|
| 55 | |
|---|
| 56 | TEST_SCRIPTS = |
|---|
| 57 | |
|---|
| 58 | include gar/category.mk |
|---|
| 59 | |
|---|
| 60 | post-merge: |
|---|
| 61 | ginstall -D $(DOWNLOADDIR)/changelog.CSW $(PKGROOT)$(docdir)/$(NAME)/changelog.CSW |
|---|
| 62 | |
|---|
| 63 | |
|---|