Changeset 1664 for branches/fc13-dev
- Timestamp:
- Sep 19, 2010, 10:11:54 PM (14 years ago)
- Location:
- branches/fc13-dev/server/fedora
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/fc13-dev/server/fedora/Makefile
r1637 r1664 22 22 hackage = MonadCatchIO-mtl-0.3.0.1 cgi-3001.1.8.1 unix-handle-0.0.0 23 23 upstream_hackage = ghc-MonadCatchIO-mtl ghc-cgi ghc-unix-handle 24 upstream = openafs $(upstream_yum) $(upstream_hackage) moira cluster-glue heartbeat pacemaker zephyr 24 upstream = openafs $(upstream_yum) $(upstream_hackage) moira cluster-glue heartbeat pacemaker zephyr zephyr.i686 25 25 oursrc = execsys tokensys accountadm httpdmods logview sql-signup nss_nonlocal nss_nonlocal.i686 whoisd athrun php_scripts scripts-wizard scripts-base scripts-static-cat 26 26 allsrc = $(upstream) $(oursrc) -
branches/fc13-dev/server/fedora/specs/zephyr.spec
r1635 r1664 1 1 Name: zephyr 2 2 Version: 3.0 3 Release: 1.%{scriptsversion}%{?dist}4 Summary: Zephyr allows users to send messages to other users or to groups of users.3 Release: 0.%{scriptsversion}%{?dist} 4 Summary: Client programs for the Zephyr real-time messaging system 5 5 6 6 Group: Applications/Communications … … 12 12 13 13 BuildRequires: krb5-devel hesiod-devel libss-devel readline-devel bison 14 Requires: %{name}-libs = %{version}-%{release} 14 15 Requires(post): chkconfig 15 16 Requires(preun): chkconfig … … 24 25 25 26 27 %package server 28 Summary: Server for the Zephyr real-time messaging system 29 Group: System Environment/Daemons 30 31 Requires: %{name}-libs = %{version}-%{release} 32 33 %description server 34 The %{name}-server package contains the server daemon for the Zephyr 35 messaging service. It maintains a location and subscription database 36 for all the receiving clients, and routes all zephyrgrams to the 37 intended recipients. 38 39 40 %package libs 41 Summary: Shared libraries for Zephyr real-time messaging system 42 Group: System Environment/Libraries 43 44 %description libs 45 The %{name}-libs package contains shared libraries for applications 46 that use %{name}. 47 48 49 %package devel 50 Summary: Development files for Zephyr real-time messaging system 51 Group: Development/Libraries 52 53 Requires: %{name}-libs = %{version}-%{release} 54 55 %description devel 56 The %{name}-devel package contains libraries and header files for 57 developing applications that use %{name}. 58 59 26 60 %prep 27 61 %setup -q … … 32 66 # Mitch wants to make an awesome specfile which makes hesiod/krb5 and friends 33 67 # all fully configurable. This configure line will have to do for now. 34 %configure --with-hesiod --with-krb5 68 %configure --with-hesiod --with-krb5 --disable-static 35 69 sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool 36 70 sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool … … 41 75 rm -rf $RPM_BUILD_ROOT 42 76 make install DESTDIR=$RPM_BUILD_ROOT libdir=%{_libdir} 77 find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' 43 78 44 79 mkdir -p $RPM_BUILD_ROOT%{_initddir} … … 64 99 65 100 101 %post libs -p /sbin/ldconfig 102 103 %postun libs -p /sbin/ldconfig 104 105 66 106 %clean 67 107 rm -rf $RPM_BUILD_ROOT … … 70 110 %files 71 111 %defattr(-,root,root,-) 72 %doc README NOTES OPERATINGUSING112 %doc README USING 73 113 %{_bindir}/* 74 %{_sbindir}/* 75 %{_includedir}/%{name}/ 76 %{_libdir}/* 114 %{_sbindir}/zhm 115 %{_sbindir}/zshutdown_notify 77 116 %{_mandir}/man1/* 78 %{_mandir}/man8/* 79 %{_datadir}/%{name}/ 80 %{_sysconfdir}/%{name}/ 117 %{_mandir}/man8/zhm.8* 118 %{_mandir}/man8/zstat.8* 119 %{_mandir}/man8/zshutdown_notify.8* 120 %{_datadir}/zephyr 81 121 %{_initddir}/zhm 82 122 83 123 124 %files server 125 %doc OPERATING 126 %{_sysconfdir}/zephyr 127 %{_sbindir}/zephyrd 128 %{_mandir}/man8/zephyrd.8* 129 130 131 %files libs 132 %{_libdir}/*.so.* 133 134 135 %files devel 136 %{_libdir}/*.so 137 %{_includedir}/* 138 139 84 140 %changelog 141 * Sun Sep 19 2010 Anders Kaseorg <andersk@mit.edu> - 3.0-0 142 - Decrease version below a hypothetical Fedora package. 143 - Split out -server, -libs, and -devel into subpackages. 144 - Disable the static library and remove the libtool archive. 145 85 146 * Thu Sep 09 2010 Edward Z. Yang <ezyang@mit.edu> 3.0-1 86 147 - Initial packaging release, superseding mit-zephyr.
Note: See TracChangeset
for help on using the changeset viewer.