source: projects/specs/branches/6/m/mod_mono/mod_mono-vl.spec @ 3701

Revision 3701, 1.7 KB checked in by owa, 13 years ago (diff)

rebuilt with mono-2.10.1-3

Line 
1%define apxs /usr/bin/apxs
2%define httpd_modulesdir %(%{apxs} -q LIBEXECDIR)
3%define httpd_sysconfdir %{_sysconfdir}/apache2/conf.d
4Summary: Run ASP.NET Pages on Unix with Apache and Mono
5Summary(ja): mod_mono は Apacheサーバの ASP.NET モジュールです
6Name: mod_mono
7Version: 2.10
8Release: 2%{?_dist_release}
9Url: http://go-mono.com/
10Source: %{name}-%{version}.tar.bz2
11License: Apache Software License
12Group: System Environment/Daemons
13BuildRequires: apache2-devel
14BuildRequires: apr-devel
15BuildRequires: mono-devel
16BuildRequires: pkgconfig
17Requires: xsp >= %{version}
18BuildRoot: %{_tmppath}/%{name}-%{version}-root
19Vendor: Project Vine
20Distribution: Vine Linux
21
22%description
23mod_mono is a module that interfaces Apache with Mono and allows
24running ASP.NET pages on Unix and Unix-like systems. To load the module
25into Apache, run the command "a2enmod mono" as root.
26
27
28%prep
29%setup
30
31%build
32%configure \
33        --with-remove-display \
34        --with-apxs=%{apxs} \
35        --with-apr-config=/usr/bin/apr-1-config \
36        ;
37%{__make}
38
39%install
40rm -rf $RPM_BUILD_ROOT
41make install DESTDIR=$RPM_BUILD_ROOT APXS_SYSCONFDIR="%{httpd_sysconfdir}"
42
43
44%clean
45rm -rf $RPM_BUILD_ROOT
46
47%files
48%defattr(-,root,root)
49%doc AUTHORS COPYING ChangeLog INSTALL NEWS README
50%{httpd_modulesdir}/*
51%config(noreplace) %{httpd_sysconfdir}/mod_mono.conf
52%{_mandir}/man8/mod_mono.8*
53
54%changelog
55* Mon Apr 25 2011 Shu KONNO <owa@bg.wakwak.com> 2.10-2
56- rebuilt with mono-2.10.1-3
57
58* Sun Apr 03 2011 Shu KONNO <owa@bg.wakwak.com> 2.10-1
59- updated mod_mono to 2.10
60
61* Sat Jan 08 2011 Shu KONNO <owa@bg.wakwak.com> 2.8.2-1
62- updated mod_mono to 2.8.2
63
64* Tue Oct 12 2010 Shu KONNO <owa@bg.wakwak.com> 2.8-1
65- initial build for VineSeed
66
Note: See TracBrowser for help on using the repository browser.