]> git.pld-linux.org Git - packages/eventum.git/blame - eventum.spec
- license fix, group fix, mysql database not required at runtime
[packages/eventum.git] / eventum.spec
CommitLineData
bb01d732
ER
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)
18Summary: Eventum Issue / Bug Tracking System
19Name: eventum
20Version: 1.4
21Release: 0.1
6850abd9
ER
22License: GPL
23Group: Applications/WWW
bb01d732
ER
24Source0: http://mysql.wildyou.net/Downloads/%{name}/%{name}-%{version}.tar.gz
25# Source0-md5: 361c1355e46a6bbfa54e420964ec92cf
26URL: http://dev.mysql.com/downloads/other/eventum/index.html
27BuildRequires: sed >= 4.0
28Requires: php >= 4.1.0
29Requires: php-pcre
30Requires: php-mysql
31Requires: php-gd
32Requires: php-imap
bb01d732
ER
33BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
34
35%define _htmldir %{_datadir}/%{name}
36
37%description
38Eventum is a user-friendly and flexible issue tracking system that can
39be used by a support department to track incoming technical support
40requests, or by a software development team to quickly organize tasks
41and bugs. Eventum is used by the MySQL AB Technical Support team, and
42has allowed us to dramatically improve our response times.
43
44%prep
45%setup -q
46
47%build
48
49%install
50rm -rf $RPM_BUILD_ROOT
51
52install -d $RPM_BUILD_ROOT%{_htmldir}
53
54# TODO: php4
55sed -i -e 's,/usr/local/bin/php,/usr/bin/php,' misc/cli/eventum
56
57cp -a . $RPM_BUILD_ROOT%{_htmldir}
58
59# in doc
60rm -f $RPM_BUILD_ROOT%{_htmldir}/{COPYING,ChangeLog,FAQ,INSTALL,README,UPGRADE}
61
62%clean
63rm -rf $RPM_BUILD_ROOT
64
65%files
66%defattr(644,root,root,755)
67%doc ChangeLog FAQ INSTALL README UPGRADE
68%{_htmldir}
This page took 0.045817 seconds and 4 git commands to generate.