diff options
author | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2006-08-05 13:01:07 +0000 |
---|---|---|
committer | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2006-08-05 13:01:07 +0000 |
commit | 6b83dd83ccda7884fefdff691d935a845a37bc13 (patch) | |
tree | 8769212a5cee7bc130220c39efa7f9f35672e1db /encap/tools/bcfg2-server/bcfg2-gamin-0.1.7.ep | |
parent | b1be6267f0f52b1e06039bc4d213727ee80b5101 (diff) | |
download | bcfg2-6b83dd83ccda7884fefdff691d935a845a37bc13.tar.gz bcfg2-6b83dd83ccda7884fefdff691d935a845a37bc13.tar.bz2 bcfg2-6b83dd83ccda7884fefdff691d935a845a37bc13.zip |
* Added server-only encaps (glib and gamin)
* Fixes for daemontools and ostiary
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2044 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'encap/tools/bcfg2-server/bcfg2-gamin-0.1.7.ep')
-rw-r--r-- | encap/tools/bcfg2-server/bcfg2-gamin-0.1.7.ep | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/encap/tools/bcfg2-server/bcfg2-gamin-0.1.7.ep b/encap/tools/bcfg2-server/bcfg2-gamin-0.1.7.ep new file mode 100644 index 000000000..db2c2037d --- /dev/null +++ b/encap/tools/bcfg2-server/bcfg2-gamin-0.1.7.ep @@ -0,0 +1,79 @@ +<?xml version="1.0"?> + +<!-- $Id$ --> + +<encap_profile + profile_ver="1.0" + pkgspec="bcfg2-gamin-0.1.7" +> + +<prereq package="bcfg2-glib-2.8.6" /> + +<environment + variable="CC" + value="gcc" + type="set" +/> + +<environment + variable="PATH" +PLATFORM_IF_MATCH(solaris) + value="/usr/local/lib/bcfg2/bin:/usr/local/bin:/usr/sfw/bin:/usr/ccs/bin:" +PLATFORM_ELSE + value="/usr/local/lib/bcfg2/bin:/usr/local/bin:" +PLATFORM_ENDIF + type="prepend" +/> + +PLATFORM_IF_MATCH(linux) +PLATFORM_ELSE +<environment + variable="MAKE" + value="gmake" + type="set" +/> +PLATFORM_ENDIF + +<environment + variable="LDFLAGS" +PLATFORM_IF_MATCH(linux) + value="-L/usr/local/lib/bcfg2/lib -Wl,-rpath,/usr/local/lib/bcfg2/lib" +PLATFORM_ELSE_IF_MATCH(aix) + value="-L/usr/local/lib/bcfg2/lib -Wl,-blibpath:/usr/local/lib/bcfg2/lib:/usr/lib" +PLATFORM_ELSE_IF_MATCH(solaris) + value="-L/usr/local/lib/bcfg2/lib -R/usr/local/lib/bcfg2/lib:/usr/lib -YP,/usr/local/lib/bcfg2/lib:/usr/lib" +PLATFORM_ELSE +PLATFORM_ENDIF + type="set" +/> + +<environment + variable="CPPFLAGS" + value="-I/usr/local/lib/bcfg2/include" + type="set" +/> + +<source +url="http://www.pobox.com/users/dclark/mirror/gamin/gamin-0.1.7.tar.gz + http://www.gnome.org/~veillard/gamin/sources/gamin-0.1.7.tar.gz" +> + +<configure> +./configure \ + --prefix="${ENCAP_SOURCE}/${ENCAP_PKGNAME}/lib/bcfg2" +</configure> + +</source> + +<prepackage type="set"> +mkdir var 2>/dev/null || exit 0 +mkdir var/encap 2>/dev/null || exit 0 +touch var/encap/${ENCAP_PKGNAME} +</prepackage> + +<encapinfo> +description Gamin - The File Alteration Monitor +prereq pkgspec >= bcfg2-glib-2.8.6 +</encapinfo> + +</encap_profile> |