Compare commits
5 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
30039c8457 | ||
|
|
4be1aa8932 | ||
|
|
61d92db8e0 | ||
|
|
abaa0a4e59 | ||
|
|
33d083d6bf |
7 changed files with 16755 additions and 21 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
xscope-1.2.tar.bz2
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: xscope
|
||||
# $Id$
|
||||
NAME := xscope
|
||||
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
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
1a9df0ac0dd5a2c2a7948dcf48d126c3 xscope-1.2.tar.bz2
|
||||
16684
xscope-1.1-diff_to_git.patch
Normal file
16684
xscope-1.1-diff_to_git.patch
Normal file
File diff suppressed because it is too large
Load diff
12
xscope-1.1-lessmacros.patch
Normal file
12
xscope-1.1-lessmacros.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
diff -ur xscope-1.1/configure.ac xscope-1.1.lessmacros/configure.ac
|
||||
--- xscope-1.1/configure.ac 2009-06-27 08:16:40.000000000 +0300
|
||||
+++ xscope-1.1.lessmacros/configure.ac 2009-06-27 08:17:33.000000000 +0300
|
||||
@@ -39,7 +39,7 @@
|
||||
|
||||
# Require xorg-macros: XORG_CWARNFLAGS, XORG_CHANGELOG, XORG_WITH_LINT
|
||||
m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])])
|
||||
-XORG_MACROS_VERSION(1.2)
|
||||
+XORG_MACROS_VERSION(1.1)
|
||||
|
||||
AC_PROG_CC
|
||||
XORG_CWARNFLAGS
|
||||
57
xscope.spec
Normal file
57
xscope.spec
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
Name: xscope
|
||||
Version: 1.2
|
||||
Release: 1%{?dist}
|
||||
Summary: X Window Protocol Viewer
|
||||
|
||||
Group: User Interface/X
|
||||
License: MIT
|
||||
URL: http://cgit.freedesktop.org/xorg/app/xscope/
|
||||
Source0: ftp://ftp.freedesktop.org/pub/xorg/individual/app/%{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: xorg-x11-xtrans-devel, xorg-x11-proto-devel
|
||||
|
||||
%description
|
||||
xscope sits in-between an X11 client and an X11 server and prints the contents
|
||||
of each request, reply, error, or event that is communicated between them.
|
||||
This information can be useful in debugging and performance tuning of X11
|
||||
servers and clients.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure
|
||||
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,-)
|
||||
%doc AUTHORS README COPYING ChangeLog
|
||||
%{_bindir}/%{name}
|
||||
%{_mandir}/man1/%{name}.1.gz
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Oct 1 2009 Yanko Kaneti <yaneti@declera.com> 1.2-1
|
||||
- New upstream release. Drop patches.
|
||||
|
||||
* Sun Jun 28 2009 Yanko Kaneti <yaneti@declera.com> 1.1-3.gitfccbbd6
|
||||
- The software has a MIT not BSD license
|
||||
|
||||
* Sat Jun 27 2009 Yanko Kaneti <yaneti@declera.com> 1.1-2.gitfccbbd6
|
||||
- Implement review feedback
|
||||
- Patch to build on Fedora 10
|
||||
|
||||
* Sun Jun 14 2009 Yanko Kaneti <yaneti@declera.com> 1.1-1.gitfccbbd6
|
||||
- First attempt at packaging.
|
||||
Loading…
Add table
Add a link
Reference in a new issue