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

root/csw/mgar/pkg/trac/trunk/Makefile

Revision 16927, 2.9 KB (checked in by rthurner, 4 months ago)

trac-0.12.2, checkpkg adjustments

  • Property svn:keywords set to Id
Line 
1# $Id$
2
3NAME = Trac
4VERSION = 0.12.2
5CATEGORIES = python
6GARTYPE = v2
7
8DESCRIPTION = Integrated SCM and Project Management
9define BLURB
10        Trac is an enhanced wiki and issue tracking system for software development
11        projects. Trac uses a minimalistic approach to web-based software project
12        management. Our mission; to help developers write great software while
13        staying out of the way. Trac should impose as little as possible on a team's
14        established development process and policies.
15endef
16
17MASTER_SITES           = http://ftp.edgewall.com/pub/trac/
18SPKG_SOURCEURL         = http://trac.edgewall.org/wiki/TracDownload
19DISTFILES              = $(NAME)-$(VERSION).tar.gz
20UFILES_REGEX           = (\d+(?:\.\d+)*).tar.gz
21
22PACKAGES = CSWtrac
23RUNTIME_DEP_PKGS_CSWtrac  = CSWpysetuptools CSWpythonsvn CSWgenshi
24ARCHALL_CSWtrac = 1
25
26CATALOGNAME_CSWtrac    = trac
27SPKG_DESC_CSWtrac      = Integrated SCM and Project Management
28
29CHECKPKG_OVERRIDES_CSWtrac += pkgname-does-not-start-with-CSWpy-
30CHECKPKG_OVERRIDES_CSWtrac += catalogname-does-not-start-with-py_
31CHECKPKG_OVERRIDES_CSWtrac += surplus-dependency|CSWpysetuptools
32CHECKPKG_OVERRIDES_CSWtrac += surplus-dependency|CSWgenshi
33CHECKPKG_OVERRIDES_CSWtrac += surplus-dependency|CSWpythonsvn
34CHECKPKG_OVERRIDES_CSWtrac += file-with-bad-content|/usr/local|root/opt/csw/share/doc/trac/contrib/bugzilla2trac.py
35CHECKPKG_OVERRIDES_CSWtrac += file-with-bad-content|/usr/local|root/opt/csw/share/doc/trac/contrib/trac-svn-hook
36CHECKPKG_OVERRIDES_CSWtrac += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/trac/wiki/default-pages/TracModPython
37CHECKPKG_OVERRIDES_CSWtrac += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/trac/wiki/default-pages/TracPlugins
38CHECKPKG_OVERRIDES_CSWtrac += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/trac/wiki/default-pages/TracModWSGI
39CHECKPKG_OVERRIDES_CSWtrac += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/trac/wiki/default-pages/TracFineGrainedPermissions
40CHECKPKG_OVERRIDES_CSWtrac += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/trac/wiki/default-pages/TracInstall
41CHECKPKG_OVERRIDES_CSWtrac += file-with-bad-content|/usr/share|root/opt/csw/lib/python/site-packages/trac/wiki/default-pages/TracModPython
42CHECKPKG_OVERRIDES_CSWtrac += file-with-bad-content|/usr/share|root/opt/csw/lib/python/site-packages/trac/wiki/default-pages/TracFastCgi
43CHECKPKG_OVERRIDES_CSWtrac += file-with-bad-content|/usr/share|root/opt/csw/lib/python/site-packages/trac/wiki/default-pages/TracInstall
44
45
46TEST_SCRIPTS           =
47
48include gar/category.mk
49
50post-install-modulated: copy-docs
51        @$(DONADA)
52
53copy-docs:
54        @install -d $(DESTDIR)$(docdir)/trac
55        @cp -R $(WORKSRC)/contrib $(DESTDIR)$(docdir)/trac
56        @for f in COPYING ChangeLog INSTALL README README.tracd UPGRADE ; do \
57                ginstall -m 0644 $(WORKSRC)/$$f $(DESTDIR)$(docdir)/trac ; \
58        done
59        @$(DONADA)
60
Note: See TracBrowser for help on using the browser.