]> git.pld-linux.org Git - packages/eventum.git/blob - eventum.spec
- very raw. NFY at all
[packages/eventum.git] / eventum.spec
1 # TODO
2 # - discard bundled packages (from INSTALL):
3 #  - JpGraph 1.5.3 (last GPL version)
4 #  - Smarty 2.3.0 (http://smarty.php.net)
5 #  - PEAR packages
6 #  - dTree 2.0.5 (http://www.destroydrop.com/javascript/tree/)
7 #  - dynCalendar.js (http://www.phpguru.org/dyncalendar.html)
8 #  - overLIB 3.5.1 (http://www.bosrup.com/web/overlib/)
9 #  - A few other small javascript libraries
10 # - Mail Queue Process, cron or separate package (misc/process_mail_queue.php)
11 # - Email Download (misc/download_emails.php)
12 # - Reminder System (misc/check_reminders.php)
13 # - Heartbeat Monitor (misc/monitor.php)
14 # - Email Routing Script (misc/route_emails.php)
15 # - Note Routing Script (misc/route_notes.php)
16 # - IRC Notification Bot (misc/irc/bot.php)
17 # - Command-line Interface (misc/cli/eventum)
18 Summary:        Eventum Issue / Bug Tracking System
19 Name:           eventum
20 Version:        1.4
21 Release:        0.1
22 License:        GNU GPL
23 Group:          Applications/Databases
24 Source0:        http://mysql.wildyou.net/Downloads/%{name}/%{name}-%{version}.tar.gz
25 # Source0-md5:  361c1355e46a6bbfa54e420964ec92cf
26 URL:            http://dev.mysql.com/downloads/other/eventum/index.html
27 BuildRequires:  sed >= 4.0
28 Requires:       php >= 4.1.0 
29 Requires:       php-pcre
30 Requires:       php-mysql
31 Requires:       php-gd
32 Requires:       php-imap
33 Requires:       mysql
34 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
35
36 %define         _htmldir        %{_datadir}/%{name}
37
38 %description
39 Eventum is a user-friendly and flexible issue tracking system that can
40 be used by a support department to track incoming technical support
41 requests, or by a software development team to quickly organize tasks
42 and bugs. Eventum is used by the MySQL AB Technical Support team, and
43 has allowed us to dramatically improve our response times.
44
45 %prep
46 %setup -q
47
48 %build
49
50 %install
51 rm -rf $RPM_BUILD_ROOT
52
53 install -d $RPM_BUILD_ROOT%{_htmldir}
54
55 # TODO: php4
56 sed -i -e 's,/usr/local/bin/php,/usr/bin/php,' misc/cli/eventum
57
58 cp -a . $RPM_BUILD_ROOT%{_htmldir}
59
60 # in doc
61 rm -f $RPM_BUILD_ROOT%{_htmldir}/{COPYING,ChangeLog,FAQ,INSTALL,README,UPGRADE}
62
63 %clean
64 rm -rf $RPM_BUILD_ROOT
65
66 %files
67 %defattr(644,root,root,755)
68 %doc ChangeLog FAQ INSTALL README UPGRADE
69 %{_htmldir}
This page took 0.037703 seconds and 3 git commands to generate.