source: projects/specs/trunk/t/twm/twm-vl.spec @ 521

Revision 521, 4.0 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary: X.Org X11 twm window manager
2Summary(ja): X.Org X11 twm ウィンドウマネージャ
3Name: twm
4Version: 1.0.4
5Release: 1%{?_dist_release}
6License: MIT/X11
7Group: User Interface/X
8URL: http://www.x.org
9BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
10
11Source0: ftp://ftp.x.org/pub/individual/app/%{name}-%{version}.tar.bz2
12
13BuildRequires: pkgconfig
14# checking TWM_LIBS... -lXmu -lXt -lSM -lICE -lXext -lX11 -ldl
15BuildRequires: libX11-devel
16BuildRequires: libXt-devel
17BuildRequires: libXmu-devel
18BuildRequires: libSM-devel
19BuildRequires: libICE-devel
20BuildRequires: libXext-devel
21BuildRequires: libXau-devel
22
23Obsoletes: XOrg-twm
24
25%description
26X.Org X11 twm window manager
27
28%prep
29%setup -q -n %{name}-%{version}
30
31%build
32# FIXME: Work around pointer aliasing warnings from compiler for now
33export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
34%configure
35make
36
37%install
38rm -rf $RPM_BUILD_ROOT
39
40make install DESTDIR=$RPM_BUILD_ROOT
41
42# FIXME: Upstream sources do not create the system wide twm config dir, nor
43# install the default config file currently.  We'll work around it here for now.
44{
45   echo "FIXME: Upstream doesn't install systemwide config by default"
46   mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/X11/twm
47   install -m 0644 src/system.twmrc $RPM_BUILD_ROOT%{_sysconfdir}/X11/twm/
48   rm $RPM_BUILD_ROOT%{_datadir}/X11/twm/system.twmrc
49}
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53%files
54%defattr(-,root,root,-)
55%doc AUTHORS COPYING NEWS README ChangeLog
56%{_bindir}/twm
57#%dir %{_mandir}/man1x
58%{_mandir}/man1/twm.1*
59%dir %{_sysconfdir}/X11/twm
60%config %{_sysconfdir}/X11/twm/system.twmrc
61
62%changelog
63* Sat Jul 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1..0.4-1
64- new upstream release
65
66* Mon May 12 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.3-1
67- initial build for Vine Linux
68
69* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:1.0.3-2
70- Autorebuild for GCC 4.3
71
72* Wed Aug 22 2007 Dave Airlie <airlied@redhat.com> - 1.0.3-1
73- Upgrade to 1.0.3 - fix URI for source
74- no sure about the system.twmrc, rm the spare copy for now
75
76* Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 1:1.0.1-4
77- Rebuild for build id
78
79* Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> - 1:1.0.1-4
80- Don't install INSTALL
81
82* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:1.0.1-3.1
83- rebuild
84
85* Wed Jun 21 2006 Mike A. Harris <mharris@redhat.com> 1:1.0.1-3
86- Bump and rebuild with minor specfile cleanups.
87- Add documentation to doc list, even though half of it is 0 bytes. Ah well.
88
89* Mon Jun 05 2006 Mike A. Harris <mharris@redhat.com> 1:1.0.1-2
90- Added "BuildRequires: pkgconfig" for (#194186)
91
92* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1:1.0.1-1.2
93- bump again for double-long bug on ppc(64)
94
95* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 1:1.0.1-1.1
96- rebuilt for new gcc4.1 snapshot and glibc changes
97
98* Wed Jan 18 2006 Mike A. Harris <mharris@redhat.com> 1:1.0.1-1
99- Updated to twm 1.0.1 from X11R7.0
100
101* Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 1:1.0.0-1
102- Updated to twm 1.0.0 from X11R7 RC4.
103- Change manpage dir from man1x to man1 to match RC4 default.
104
105* Tue Nov 15 2005 Mike A. Harris <mharris@redhat.com> 1:0.99.1-4
106- Added "BuildRequires: libXau-devel", as twm fails without it, but does not
107  check for it with ./configure.  Bug (fdo#5065)
108
109* Wed Nov 02 2005 Mike A. Harris <mharris@redhat.com> 1:0.99.1-3
110- Actually spell RPM_OPT_FLAGS correctly this time.
111
112* Mon Oct 31 2005 Mike A. Harris <mharris@redhat.com> 1:0.99.1-2
113- Build with -fno-strict-aliasing to work around possible pointer aliasing
114  issues
115
116* Mon Oct 31 2005 Mike A. Harris <mharris@redhat.com> 1:0.99.1-1
117- Updated to twm 0.99.1 from X11R7 RC1.
118- Added Epoch 1 to package, to be able to change the version number from the
119  X11R7 release number to the actual twm version.
120- Change manpage location to 'man1x' in file manifest
121
122* Wed Oct 05 2005 Mike A. Harris <mharris@redhat.com> 6.99.99.0-2
123- Update BuildRequires to match new library naming scheme
124- Use Fedora Extras style BuildRoot declaration
125
126* Wed Aug 24 2005 Mike A. Harris <mharris@redhat.com> 6.99.99.0-1
127- Initial build.
Note: See TracBrowser for help on using the repository browser.