Compare commits
7 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
659b93da47 | ||
|
|
2693315b49 | ||
|
|
22b6b8e637 | ||
|
|
0274e8fd74 | ||
| d144213fc4 | |||
|
|
f3d2d3728f | ||
|
|
67a9a81b29 |
9 changed files with 2 additions and 156 deletions
1
.cvsignore → .gitignore
vendored
1
.cvsignore → .gitignore
vendored
|
|
@ -1 +1,2 @@
|
|||
windowlab-1.34.tar
|
||||
windowlab-1.37.tar
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: windowlab
|
||||
# $Id$
|
||||
NAME := windowlab
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
This package was retired due to no active owner on 2010-08-27
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
d566b989f8e59b169f7affa462762c17 windowlab-1.34.tar
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
diff -u windowlab-1.34.old/Makefile windowlab-1.34/Makefile
|
||||
--- windowlab-1.34.old/Makefile 2006-08-14 05:27:52.000000000 +1200
|
||||
+++ windowlab-1.34/Makefile 2007-04-17 22:41:38.000000000 +1200
|
||||
@@ -60,7 +60,7 @@
|
||||
$(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -c $< -o $@
|
||||
|
||||
install: all
|
||||
- mkdir -p $(BINDIR) && install -m 755 -s $(PROG) $(BINDIR)
|
||||
+ mkdir -p $(BINDIR) && install -m 755 $(PROG) $(BINDIR)
|
||||
mkdir -p $(MANDIR) && install -m 644 $(MANPAGE) $(MANDIR) && gzip -9vfn $(MANDIR)/$(MANPAGE)
|
||||
mkdir -p $(CFGDIR) && cp -i windowlab.menurc $(CFGDIR)/windowlab.menurc && chmod 644 $(CFGDIR)/windowlab.menurc
|
||||
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
diff -u windowlab-1.34.old/Makefile windowlab-1.34/Makefile
|
||||
--- windowlab-1.34.old/Makefile 2007-04-11 09:32:40.000000000 +1200
|
||||
+++ windowlab-1.34/Makefile 2007-04-11 09:37:42.000000000 +1200
|
||||
@@ -8,7 +8,7 @@
|
||||
PREFIX =
|
||||
|
||||
# Set this to the location of the X installation you want to compile against
|
||||
-XROOT = /usr/X11R6
|
||||
+XROOT = /usr
|
||||
|
||||
# Set this to the location of the global configuration files
|
||||
SYSCONFDIR = $(PREFIX)/etc/X11/windowlab
|
||||
@@ -40,7 +40,7 @@
|
||||
endif
|
||||
|
||||
BINDIR = $(DESTDIR)$(PREFIX)$(XROOT)/bin
|
||||
-MANDIR = $(DESTDIR)$(PREFIX)$(XROOT)/man/man1
|
||||
+MANDIR = $(DESTDIR)$(PREFIX)$(XROOT)/share/man/man1
|
||||
CFGDIR = $(DESTDIR)$(SYSCONFDIR)
|
||||
INCLUDES = -I$(XROOT)/include $(EXTRA_INC)
|
||||
LDPATH = -L$(XROOT)/lib
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
diff -u windowlab-1.34.old/Makefile windowlab-1.34/Makefile
|
||||
--- windowlab-1.34.old/Makefile 2007-04-10 09:21:45.000000000 +1200
|
||||
+++ windowlab-1.34/Makefile 2007-04-10 09:58:28.000000000 +1200
|
||||
@@ -42,12 +42,14 @@
|
||||
BINDIR = $(DESTDIR)$(PREFIX)$(XROOT)/bin
|
||||
MANDIR = $(DESTDIR)$(PREFIX)$(XROOT)/man/man1
|
||||
CFGDIR = $(DESTDIR)$(SYSCONFDIR)
|
||||
+XSESSDIR = $(DESTDIR)$(PREFIX)/usr/share/xsessions
|
||||
INCLUDES = -I$(XROOT)/include $(EXTRA_INC)
|
||||
LDPATH = -L$(XROOT)/lib
|
||||
LIBS = -lX11 $(EXTRA_LIBS)
|
||||
|
||||
PROG = windowlab
|
||||
MANPAGE = windowlab.1x
|
||||
+XSESSFILE = windowlab.desktop
|
||||
OBJS = main.o events.o client.o new.o manage.o misc.o taskbar.o menufile.o
|
||||
HEADERS = windowlab.h
|
||||
|
||||
@@ -63,6 +65,7 @@
|
||||
mkdir -p $(BINDIR) && install -m 755 -s $(PROG) $(BINDIR)
|
||||
mkdir -p $(MANDIR) && install -m 644 $(MANPAGE) $(MANDIR) && gzip -9vfn $(MANDIR)/$(MANPAGE)
|
||||
mkdir -p $(CFGDIR) && cp -i windowlab.menurc $(CFGDIR)/windowlab.menurc && chmod 644 $(CFGDIR)/windowlab.menurc
|
||||
+ mkdir -p $(XSESSDIR) && install -m 644 $(XSESSFILE) $(XSESSDIR)
|
||||
|
||||
clean:
|
||||
rm -f $(PROG) $(OBJS)
|
||||
Only in windowlab-1.34: windowlab.desktop
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=WindowLab
|
||||
Comment=This session logs you into WindowLab
|
||||
Exec=/usr/bin/windowlab
|
||||
|
||||
|
|
@ -1,68 +0,0 @@
|
|||
Name: windowlab
|
||||
Version: 1.34
|
||||
Release: 4%{?dist}
|
||||
Summary: Small and Simple Amiga-like Window Manager
|
||||
|
||||
Group: User Interface/Desktops
|
||||
License: GPL
|
||||
URL: http://nickgravgaard.com/windowlab/
|
||||
Source0: http://nickgravgaard.com/windowlab/windowlab-1.34.tar
|
||||
Source1: windowlab.desktop
|
||||
Patch0: windowlab-1.34-pathfixes.patch
|
||||
Patch1: windowlab-1.34-xsessions.patch
|
||||
Patch2: windowlab-1.34-nostrip.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: libX11-devel libXext-devel
|
||||
|
||||
%description
|
||||
WindowLab is a Window Manager for the X Window System. Features include
|
||||
click-to-focus and a simple menu/taskbar combination. WindowLab is
|
||||
incredibly fast and small.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
cp %{SOURCE1} .
|
||||
chmod a-x README TODO LICENCE CHANGELOG *.c *.h
|
||||
%patch -p1
|
||||
%patch -P 1 -p1
|
||||
%patch -P 2 -p1
|
||||
|
||||
%build
|
||||
CFLAGS=$RPM_OPT_FLAGS make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%dir %{_sysconfdir}/X11/windowlab/
|
||||
%config(noreplace) %{_sysconfdir}/X11/windowlab/windowlab.menurc
|
||||
%{_bindir}/windowlab
|
||||
%{_mandir}/man1/windowlab.1x.gz
|
||||
%{_datadir}/xsessions/windowlab.desktop
|
||||
|
||||
%doc CHANGELOG README TODO LICENCE
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Apr 24 2007 Nigel Jones <dev@nigelj.com> 1.34-4
|
||||
- Remove executable bit on source files
|
||||
|
||||
* Wed Apr 18 2007 Nigel Jones <dev@nigelj.com> 1.34-3
|
||||
- Honor $RPM_OPT_FLAGS
|
||||
- +Patch to prevent stripping of debug info
|
||||
|
||||
* Wed Apr 11 2007 Nigel Jones <dev@nigelj.com> 1.34-2
|
||||
- Minor changes to windowlab-1.34-pathfixes.patch
|
||||
- Replace files section
|
||||
|
||||
* Tue Apr 10 2007 Nigel Jones <dev@nigelj.com> 1.34-1
|
||||
- Initial SPEC file
|
||||
Loading…
Add table
Add a link
Reference in a new issue