1. Summary
  2. Files
  3. Support
  4. Report Spam
  5. Create account
  6. Log in

root/csw/mgar/pkg/clusterit/trunk/Makefile

Revision 16916, 1.5 KB (checked in by dmichelsen, 4 months ago)

WHOLE TREE: Explicitly set GARTYPE to current default 'v2'

Line 
1NAME = clusterit
2VERSION = 2.5
3CATEGORIES = net
4GARTYPE = v2
5
6DESCRIPTION = Suite of tools for managing large clusters of machines
7define 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.
12endef
13
14MASTER_SITES = $(SF_MIRRORS)
15DISTFILES = $(DISTNAME).tar.gz
16
17VENDOR_URL = http://clusterit.sourceforge.net/
18LICENSE = README
19
20# As reported in #3616
21RUNTIME_DEP_PKGS_CSWclusterit += CSWgawk
22# checkpkg cannot detect the use in dshbak
23CHECKPKG_OVERRIDES_CSWclusterit += surplus-dependency|CSWgawk
24
25EXTRA_PAX_ARGS += -s ',$(bindir),/opt/csw/clusterit/bin,'
26EXTRA_PAX_ARGS += -s ',\.1$$,.1clusterit,'
27
28BINS += barrier
29BINS += barrierd
30BINS += clustersed
31BINS += dsh
32BINS += dshbak
33BINS += dtop
34BINS += dvt
35BINS += jsd
36# CSWschilyutils
37COLLIDING_BINS += jsh
38# CSWsynce
39COLLIDING_BINS += pcp
40BINS += pdf
41# CSWsynce
42COLLIDING_BINS += prm
43BINS += rseq
44BINS += run
45BINS += rvt
46
47# This is an example path
48CHECKPKG_OVERRIDES_CSWclusterit += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/pcp.1clusterit
49
50include gar/category.mk
51
52post-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
Note: See TracBrowser for help on using the browser.