|
Revision 16916, 1.5 KB
(checked in by dmichelsen, 4 months ago)
|
|
WHOLE TREE: Explicitly set GARTYPE to current default 'v2'
|
| Line | |
|---|
| 1 | NAME = clusterit |
|---|
| 2 | VERSION = 2.5 |
|---|
| 3 | CATEGORIES = net |
|---|
| 4 | GARTYPE = v2 |
|---|
| 5 | |
|---|
| 6 | DESCRIPTION = Suite of tools for managing large clusters of machines |
|---|
| 7 | define BLURB |
|---|
| 8 | This is a collection of clustering tools, to turn your ordinary everyday pile of |
|---|
| 9 | UNIX workstations into a speedy parallel beast. Initially this work was based on |
|---|
| 10 | the work of IBM's PSSP, and copied heavily from the ideas there. |
|---|
| 11 | Its also lightly based on the work pioneered in GLUnix. |
|---|
| 12 | endef |
|---|
| 13 | |
|---|
| 14 | MASTER_SITES = $(SF_MIRRORS) |
|---|
| 15 | DISTFILES = $(DISTNAME).tar.gz |
|---|
| 16 | |
|---|
| 17 | VENDOR_URL = http://clusterit.sourceforge.net/ |
|---|
| 18 | LICENSE = README |
|---|
| 19 | |
|---|
| 20 | # As reported in #3616 |
|---|
| 21 | RUNTIME_DEP_PKGS_CSWclusterit += CSWgawk |
|---|
| 22 | # checkpkg cannot detect the use in dshbak |
|---|
| 23 | CHECKPKG_OVERRIDES_CSWclusterit += surplus-dependency|CSWgawk |
|---|
| 24 | |
|---|
| 25 | EXTRA_PAX_ARGS += -s ',$(bindir),/opt/csw/clusterit/bin,' |
|---|
| 26 | EXTRA_PAX_ARGS += -s ',\.1$$,.1clusterit,' |
|---|
| 27 | |
|---|
| 28 | BINS += barrier |
|---|
| 29 | BINS += barrierd |
|---|
| 30 | BINS += clustersed |
|---|
| 31 | BINS += dsh |
|---|
| 32 | BINS += dshbak |
|---|
| 33 | BINS += dtop |
|---|
| 34 | BINS += dvt |
|---|
| 35 | BINS += jsd |
|---|
| 36 | # CSWschilyutils |
|---|
| 37 | COLLIDING_BINS += jsh |
|---|
| 38 | # CSWsynce |
|---|
| 39 | COLLIDING_BINS += pcp |
|---|
| 40 | BINS += pdf |
|---|
| 41 | # CSWsynce |
|---|
| 42 | COLLIDING_BINS += prm |
|---|
| 43 | BINS += rseq |
|---|
| 44 | BINS += run |
|---|
| 45 | BINS += rvt |
|---|
| 46 | |
|---|
| 47 | # This is an example path |
|---|
| 48 | CHECKPKG_OVERRIDES_CSWclusterit += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/pcp.1clusterit |
|---|
| 49 | |
|---|
| 50 | include gar/category.mk |
|---|
| 51 | |
|---|
| 52 | post-merge: |
|---|
| 53 | if [ ! -d $(PKGROOT)/opt/csw/bin ] ; then mkdir -p $(PKGROOT)/opt/csw/bin ; fi |
|---|
| 54 | $(foreach B,$(BINS),ln -s ../clusterit/bin/$B $(PKGROOT)/opt/csw/bin/$B;) |
|---|
| 55 | $(foreach B,$(COLLIDING_BINS),ln -s ../clusterit/bin/$B $(PKGROOT)/opt/csw/bin/$B-clusterit;) |
|---|
| 56 | @$(MAKECOOKIE) |
|---|
| 57 | |
|---|