rpms/yapeSDL/F-8 yapeSDL-0.32.4-gcc4_cflags.patch, NONE, 1.1 yapeSDL-0.32.4-homedir.patch, NONE, 1.1 yapeSDL-0.32.4-loadfile.patch, NONE, 1.1 yapeSDL.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/yapeSDL/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24651/F-8
Modified Files:
.cvsignore sources
Added Files:
yapeSDL-0.32.4-gcc4_cflags.patch yapeSDL-0.32.4-homedir.patch
yapeSDL-0.32.4-loadfile.patch yapeSDL.spec
Log Message:
First import
yapeSDL-0.32.4-gcc4_cflags.patch:
--- NEW FILE yapeSDL-0.32.4-gcc4_cflags.patch ---
--- Makefile
+++ Makefile
@@ -13,7 +13,7 @@
headers = $(objects:.o=.h)
CC = g++
-cflags = -O3 -finline -frerun-loop-opt -Winline `sdl-config --cflags`
+cflags = $(RPM_OPT_FLAGS) -finline-functions -Winline `sdl-config --cflags`
libs = `sdl-config --libs`
#SDL_CFLAGS := $(shell sdl-config --cflags)
--- interface.cpp
+++ interface.cpp
@@ -109,7 +109,7 @@
strcpy( cfilename, "*.prg");
set_color( COLOR(0,0), COLOR(1,5) );
- res = (int ) ad_find_first_file((char *) cfilename);
+ res = (int )(long) ad_find_first_file((char *) cfilename);
while(res) {
strcpy( cfilename, (char *) ad_return_current_filename());
//texttoscreen(100,100+(nf<<3), cfilename);
--- main.cpp
+++ main.cpp
@@ -185,6 +185,8 @@
}
//-----------------------------------------------------------------------------
+#define min(a,b) ( ((a)<(b)) ? (a) : (b) )
+#define max(a,b) ( ((a)>(b)) ? (a) : (b) )
void init_palette(void)
{
--- sound.cpp
+++ sound.cpp
@@ -138,6 +138,8 @@
int i;
float j,k;
+ ted = (MEM *) p;
+
MixingFreq = 44100;//44100 22050 11025
FragmentSize = MixingFreq / 50;
BufferLength = 2*FragmentSize;//2*FragmentSize 2048 4096 in Windows version...
@@ -202,7 +204,6 @@
Sound = 1;
//SDL_PauseAudio(1);
- ted = (MEM *) p;
}
inline void render_audio(unsigned int nrsamples, Uint8 *buffer)
--- tape.h
+++ tape.h
@@ -34,7 +34,7 @@
void (TAP::*write_encode)();
public:
- TAP::TAP();
+ TAP();
MEM *mem;
char tapefilename[256];
bool attach_tap();
yapeSDL-0.32.4-homedir.patch:
--- NEW FILE yapeSDL-0.32.4-homedir.patch ---
diff -durN yape.orig/archdep.cpp yape/archdep.cpp
--- yape.orig/archdep.cpp 2001-07-22 23:47:00.000000000 +0200
+++ yape/archdep.cpp 2008-02-17 17:17:31.000000000 +0100
@@ -49,7 +49,7 @@
int ad_makedirs(char *path)
{
strcpy(temp,path);
- strcat(temp, "/yape");
+ strcat(temp, "/.yape");
CreateDirectory(temp, NULL);
return 1;
@@ -108,7 +108,7 @@
strcpy( homedir , getenv( "HOME" ));
//strcpy( filter, filefilter);
- strcat( homedir, "/yape" );
+ strcat( homedir, "/.yape" );
chdir ( homedir );
dirp = opendir( homedir );
//fprintf( stderr, "reading from %s\n", homedir);
@@ -136,7 +136,7 @@
int ad_makedirs(char *path)
{
strcpy(temp,path);
- strcat(temp, "/yape");
+ strcat(temp, "/.yape");
mkdir(temp, 0777);
return 1;
@@ -146,7 +146,7 @@
{
strcpy( temp, tmpchr);
- strcat( temp, "/yape/yape.conf");
+ strcat( temp, "/.yape/yape.conf");
return temp;
}
diff -durN yape.orig/README.SDL yape/README.SDL
--- yape.orig/README.SDL 2004-08-31 20:07:31.000000000 +0200
+++ yape/README.SDL 2008-02-17 17:17:45.000000000 +0100
@@ -78,7 +78,7 @@
LALT + W : toggle between unlimited speed and 50 Hz frame rate (original speed)
Internal disk LOAD/SAVE operations are supported to the current
- file system directory, which is usually '/home/<username>/yape'.
+ file system directory, which is usually '/home/<username>/.yape'.
Any PRG files you may wish to load, should go there.
This means that an exact filename match will load
yapeSDL-0.32.4-loadfile.patch:
--- NEW FILE yapeSDL-0.32.4-loadfile.patch ---
diff -durN yape.orig/main.cpp yape/main.cpp
--- yape.orig/main.cpp 2004-08-03 23:52:38.000000000 +0200
+++ yape/main.cpp 2008-02-17 22:00:26.000000000 +0100
@@ -637,6 +637,8 @@
fprintf(stderr,"Error loading settings or no .ini file present...\n");
//-------------------------------------------------------------------------
+ timeelapsed = time_elapsed();
+ ted8360->cpuptr = machine;
// if we have a command line parameter
if (argv[1]!='\0') {
printf("Parameter 1 :%s\n", argv[1]);
@@ -647,12 +649,9 @@
g_TotFrames++;
}
// and then try to load the parameter as file
- load_file(argv[1]);
start_file(argv[1]);
}
//--------------------------------------------------------------
- timeelapsed = time_elapsed();
- ted8360->cpuptr = machine;
for (;;) {
// hook into the emulation loop if active
if (g_bActive) {
--- NEW FILE yapeSDL.spec ---
Name: yapeSDL
Version: 0.32.4
Release: 2%{?dist}
Summary: YAPE, yet another plus/4 emulator
Group: Applications/Emulators
License: GPLv2+
URL: http://yape.plus4.net/
Source: http://yape.homeserver.hu/download/%{name}-%{version}.tar.gz
# OpenSUSE
Patch0: %{name}-0.32.4-gcc4_cflags.patch
# FreeBSD
Patch1: %{name}-0.32.4-homedir.patch
# Andrea Musuruane
Patch2: %{name}-0.32.4-loadfile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL-devel >= 0:1.2
%description
YAPE is a rather decent plus/4 emulator. It has been developed for
several years by now and it is available in Windows and
multiplatform editions, although the latter lags several versions
behind the first.
%prep
%setup -q -c -n %{name}-%{version}
%patch0 -p0
%patch1 -p1
%patch2 -p1
# Fix end-of-line-encoding
sed -i 's/\r//' *.{cpp,h} Changes README.SDL copying
# Fix UTF-8 encoding
iconv --from=ISO-8859-1 --to=UTF-8 README.SDL > README.SDL.utf8
mv README.SDL.utf8 README.SDL
# Fix spurious executable permissions
chmod 644 *.{cpp,h} Changes README.SDL copying
%build
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
install -d -m 0755 %{buildroot}%{_bindir}
install -m 0755 yape %{buildroot}%{_bindir}/
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc Changes copying README.SDL
%defattr(-,root,root,0755)
%{_bindir}/yape
%changelog
* Tue Feb 26 2008 Andrea Musuruane <musuruan(a)gmail.com> 0.32.4-2
- Minor cleanup
* Sun Jan 27 2008 Andrea Musuruane <musuruan(a)gmail.com> 0.32.4-1
- Initial RPM release
- Used a patch from OpenSUSE to compile with GCC4 and to use RPM_OPT_FLAGS
- Used a patch from FreeBSD to change homedir to .yape
- Made a patch to fix loading tap and prg files supplied in the command line
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/yapeSDL/F-8/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 16:17:14 -0000 1.1
+++ .cvsignore 26 Jul 2008 14:20:07 -0000 1.2
@@ -0,0 +1 @@
+yapeSDL-0.32.4.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/yapeSDL/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 16:17:14 -0000 1.1
+++ sources 26 Jul 2008 14:20:07 -0000 1.2
@@ -0,0 +1 @@
+b2b7a180d2c7893805f820f80f59ad30 yapeSDL-0.32.4.tar.gz
16 years, 4 months
rpms/yapeSDL/F-9 yapeSDL-0.32.4-gcc4_cflags.patch, NONE, 1.1 yapeSDL-0.32.4-homedir.patch, NONE, 1.1 yapeSDL-0.32.4-loadfile.patch, NONE, 1.1 yapeSDL.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/yapeSDL/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24398/F-9
Modified Files:
.cvsignore sources
Added Files:
yapeSDL-0.32.4-gcc4_cflags.patch yapeSDL-0.32.4-homedir.patch
yapeSDL-0.32.4-loadfile.patch yapeSDL.spec
Log Message:
First import
yapeSDL-0.32.4-gcc4_cflags.patch:
--- NEW FILE yapeSDL-0.32.4-gcc4_cflags.patch ---
--- Makefile
+++ Makefile
@@ -13,7 +13,7 @@
headers = $(objects:.o=.h)
CC = g++
-cflags = -O3 -finline -frerun-loop-opt -Winline `sdl-config --cflags`
+cflags = $(RPM_OPT_FLAGS) -finline-functions -Winline `sdl-config --cflags`
libs = `sdl-config --libs`
#SDL_CFLAGS := $(shell sdl-config --cflags)
--- interface.cpp
+++ interface.cpp
@@ -109,7 +109,7 @@
strcpy( cfilename, "*.prg");
set_color( COLOR(0,0), COLOR(1,5) );
- res = (int ) ad_find_first_file((char *) cfilename);
+ res = (int )(long) ad_find_first_file((char *) cfilename);
while(res) {
strcpy( cfilename, (char *) ad_return_current_filename());
//texttoscreen(100,100+(nf<<3), cfilename);
--- main.cpp
+++ main.cpp
@@ -185,6 +185,8 @@
}
//-----------------------------------------------------------------------------
+#define min(a,b) ( ((a)<(b)) ? (a) : (b) )
+#define max(a,b) ( ((a)>(b)) ? (a) : (b) )
void init_palette(void)
{
--- sound.cpp
+++ sound.cpp
@@ -138,6 +138,8 @@
int i;
float j,k;
+ ted = (MEM *) p;
+
MixingFreq = 44100;//44100 22050 11025
FragmentSize = MixingFreq / 50;
BufferLength = 2*FragmentSize;//2*FragmentSize 2048 4096 in Windows version...
@@ -202,7 +204,6 @@
Sound = 1;
//SDL_PauseAudio(1);
- ted = (MEM *) p;
}
inline void render_audio(unsigned int nrsamples, Uint8 *buffer)
--- tape.h
+++ tape.h
@@ -34,7 +34,7 @@
void (TAP::*write_encode)();
public:
- TAP::TAP();
+ TAP();
MEM *mem;
char tapefilename[256];
bool attach_tap();
yapeSDL-0.32.4-homedir.patch:
--- NEW FILE yapeSDL-0.32.4-homedir.patch ---
diff -durN yape.orig/archdep.cpp yape/archdep.cpp
--- yape.orig/archdep.cpp 2001-07-22 23:47:00.000000000 +0200
+++ yape/archdep.cpp 2008-02-17 17:17:31.000000000 +0100
@@ -49,7 +49,7 @@
int ad_makedirs(char *path)
{
strcpy(temp,path);
- strcat(temp, "/yape");
+ strcat(temp, "/.yape");
CreateDirectory(temp, NULL);
return 1;
@@ -108,7 +108,7 @@
strcpy( homedir , getenv( "HOME" ));
//strcpy( filter, filefilter);
- strcat( homedir, "/yape" );
+ strcat( homedir, "/.yape" );
chdir ( homedir );
dirp = opendir( homedir );
//fprintf( stderr, "reading from %s\n", homedir);
@@ -136,7 +136,7 @@
int ad_makedirs(char *path)
{
strcpy(temp,path);
- strcat(temp, "/yape");
+ strcat(temp, "/.yape");
mkdir(temp, 0777);
return 1;
@@ -146,7 +146,7 @@
{
strcpy( temp, tmpchr);
- strcat( temp, "/yape/yape.conf");
+ strcat( temp, "/.yape/yape.conf");
return temp;
}
diff -durN yape.orig/README.SDL yape/README.SDL
--- yape.orig/README.SDL 2004-08-31 20:07:31.000000000 +0200
+++ yape/README.SDL 2008-02-17 17:17:45.000000000 +0100
@@ -78,7 +78,7 @@
LALT + W : toggle between unlimited speed and 50 Hz frame rate (original speed)
Internal disk LOAD/SAVE operations are supported to the current
- file system directory, which is usually '/home/<username>/yape'.
+ file system directory, which is usually '/home/<username>/.yape'.
Any PRG files you may wish to load, should go there.
This means that an exact filename match will load
yapeSDL-0.32.4-loadfile.patch:
--- NEW FILE yapeSDL-0.32.4-loadfile.patch ---
diff -durN yape.orig/main.cpp yape/main.cpp
--- yape.orig/main.cpp 2004-08-03 23:52:38.000000000 +0200
+++ yape/main.cpp 2008-02-17 22:00:26.000000000 +0100
@@ -637,6 +637,8 @@
fprintf(stderr,"Error loading settings or no .ini file present...\n");
//-------------------------------------------------------------------------
+ timeelapsed = time_elapsed();
+ ted8360->cpuptr = machine;
// if we have a command line parameter
if (argv[1]!='\0') {
printf("Parameter 1 :%s\n", argv[1]);
@@ -647,12 +649,9 @@
g_TotFrames++;
}
// and then try to load the parameter as file
- load_file(argv[1]);
start_file(argv[1]);
}
//--------------------------------------------------------------
- timeelapsed = time_elapsed();
- ted8360->cpuptr = machine;
for (;;) {
// hook into the emulation loop if active
if (g_bActive) {
--- NEW FILE yapeSDL.spec ---
Name: yapeSDL
Version: 0.32.4
Release: 2%{?dist}
Summary: YAPE, yet another plus/4 emulator
Group: Applications/Emulators
License: GPLv2+
URL: http://yape.plus4.net/
Source: http://yape.homeserver.hu/download/%{name}-%{version}.tar.gz
# OpenSUSE
Patch0: %{name}-0.32.4-gcc4_cflags.patch
# FreeBSD
Patch1: %{name}-0.32.4-homedir.patch
# Andrea Musuruane
Patch2: %{name}-0.32.4-loadfile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL-devel >= 0:1.2
%description
YAPE is a rather decent plus/4 emulator. It has been developed for
several years by now and it is available in Windows and
multiplatform editions, although the latter lags several versions
behind the first.
%prep
%setup -q -c -n %{name}-%{version}
%patch0 -p0
%patch1 -p1
%patch2 -p1
# Fix end-of-line-encoding
sed -i 's/\r//' *.{cpp,h} Changes README.SDL copying
# Fix UTF-8 encoding
iconv --from=ISO-8859-1 --to=UTF-8 README.SDL > README.SDL.utf8
mv README.SDL.utf8 README.SDL
# Fix spurious executable permissions
chmod 644 *.{cpp,h} Changes README.SDL copying
%build
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
install -d -m 0755 %{buildroot}%{_bindir}
install -m 0755 yape %{buildroot}%{_bindir}/
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc Changes copying README.SDL
%defattr(-,root,root,0755)
%{_bindir}/yape
%changelog
* Tue Feb 26 2008 Andrea Musuruane <musuruan(a)gmail.com> 0.32.4-2
- Minor cleanup
* Sun Jan 27 2008 Andrea Musuruane <musuruan(a)gmail.com> 0.32.4-1
- Initial RPM release
- Used a patch from OpenSUSE to compile with GCC4 and to use RPM_OPT_FLAGS
- Used a patch from FreeBSD to change homedir to .yape
- Made a patch to fix loading tap and prg files supplied in the command line
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/yapeSDL/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 16:17:14 -0000 1.1
+++ .cvsignore 26 Jul 2008 14:18:42 -0000 1.2
@@ -0,0 +1 @@
+yapeSDL-0.32.4.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/yapeSDL/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 16:17:14 -0000 1.1
+++ sources 26 Jul 2008 14:18:42 -0000 1.2
@@ -0,0 +1 @@
+b2b7a180d2c7893805f820f80f59ad30 yapeSDL-0.32.4.tar.gz
16 years, 4 months
rpms/yapeSDL/devel yapeSDL-0.32.4-gcc4_cflags.patch, NONE, 1.1 yapeSDL-0.32.4-homedir.patch, NONE, 1.1 yapeSDL-0.32.4-loadfile.patch, NONE, 1.1 yapeSDL.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/yapeSDL/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24144/devel
Modified Files:
.cvsignore sources
Added Files:
yapeSDL-0.32.4-gcc4_cflags.patch yapeSDL-0.32.4-homedir.patch
yapeSDL-0.32.4-loadfile.patch yapeSDL.spec
Log Message:
First import
yapeSDL-0.32.4-gcc4_cflags.patch:
--- NEW FILE yapeSDL-0.32.4-gcc4_cflags.patch ---
--- Makefile
+++ Makefile
@@ -13,7 +13,7 @@
headers = $(objects:.o=.h)
CC = g++
-cflags = -O3 -finline -frerun-loop-opt -Winline `sdl-config --cflags`
+cflags = $(RPM_OPT_FLAGS) -finline-functions -Winline `sdl-config --cflags`
libs = `sdl-config --libs`
#SDL_CFLAGS := $(shell sdl-config --cflags)
--- interface.cpp
+++ interface.cpp
@@ -109,7 +109,7 @@
strcpy( cfilename, "*.prg");
set_color( COLOR(0,0), COLOR(1,5) );
- res = (int ) ad_find_first_file((char *) cfilename);
+ res = (int )(long) ad_find_first_file((char *) cfilename);
while(res) {
strcpy( cfilename, (char *) ad_return_current_filename());
//texttoscreen(100,100+(nf<<3), cfilename);
--- main.cpp
+++ main.cpp
@@ -185,6 +185,8 @@
}
//-----------------------------------------------------------------------------
+#define min(a,b) ( ((a)<(b)) ? (a) : (b) )
+#define max(a,b) ( ((a)>(b)) ? (a) : (b) )
void init_palette(void)
{
--- sound.cpp
+++ sound.cpp
@@ -138,6 +138,8 @@
int i;
float j,k;
+ ted = (MEM *) p;
+
MixingFreq = 44100;//44100 22050 11025
FragmentSize = MixingFreq / 50;
BufferLength = 2*FragmentSize;//2*FragmentSize 2048 4096 in Windows version...
@@ -202,7 +204,6 @@
Sound = 1;
//SDL_PauseAudio(1);
- ted = (MEM *) p;
}
inline void render_audio(unsigned int nrsamples, Uint8 *buffer)
--- tape.h
+++ tape.h
@@ -34,7 +34,7 @@
void (TAP::*write_encode)();
public:
- TAP::TAP();
+ TAP();
MEM *mem;
char tapefilename[256];
bool attach_tap();
yapeSDL-0.32.4-homedir.patch:
--- NEW FILE yapeSDL-0.32.4-homedir.patch ---
diff -durN yape.orig/archdep.cpp yape/archdep.cpp
--- yape.orig/archdep.cpp 2001-07-22 23:47:00.000000000 +0200
+++ yape/archdep.cpp 2008-02-17 17:17:31.000000000 +0100
@@ -49,7 +49,7 @@
int ad_makedirs(char *path)
{
strcpy(temp,path);
- strcat(temp, "/yape");
+ strcat(temp, "/.yape");
CreateDirectory(temp, NULL);
return 1;
@@ -108,7 +108,7 @@
strcpy( homedir , getenv( "HOME" ));
//strcpy( filter, filefilter);
- strcat( homedir, "/yape" );
+ strcat( homedir, "/.yape" );
chdir ( homedir );
dirp = opendir( homedir );
//fprintf( stderr, "reading from %s\n", homedir);
@@ -136,7 +136,7 @@
int ad_makedirs(char *path)
{
strcpy(temp,path);
- strcat(temp, "/yape");
+ strcat(temp, "/.yape");
mkdir(temp, 0777);
return 1;
@@ -146,7 +146,7 @@
{
strcpy( temp, tmpchr);
- strcat( temp, "/yape/yape.conf");
+ strcat( temp, "/.yape/yape.conf");
return temp;
}
diff -durN yape.orig/README.SDL yape/README.SDL
--- yape.orig/README.SDL 2004-08-31 20:07:31.000000000 +0200
+++ yape/README.SDL 2008-02-17 17:17:45.000000000 +0100
@@ -78,7 +78,7 @@
LALT + W : toggle between unlimited speed and 50 Hz frame rate (original speed)
Internal disk LOAD/SAVE operations are supported to the current
- file system directory, which is usually '/home/<username>/yape'.
+ file system directory, which is usually '/home/<username>/.yape'.
Any PRG files you may wish to load, should go there.
This means that an exact filename match will load
yapeSDL-0.32.4-loadfile.patch:
--- NEW FILE yapeSDL-0.32.4-loadfile.patch ---
diff -durN yape.orig/main.cpp yape/main.cpp
--- yape.orig/main.cpp 2004-08-03 23:52:38.000000000 +0200
+++ yape/main.cpp 2008-02-17 22:00:26.000000000 +0100
@@ -637,6 +637,8 @@
fprintf(stderr,"Error loading settings or no .ini file present...\n");
//-------------------------------------------------------------------------
+ timeelapsed = time_elapsed();
+ ted8360->cpuptr = machine;
// if we have a command line parameter
if (argv[1]!='\0') {
printf("Parameter 1 :%s\n", argv[1]);
@@ -647,12 +649,9 @@
g_TotFrames++;
}
// and then try to load the parameter as file
- load_file(argv[1]);
start_file(argv[1]);
}
//--------------------------------------------------------------
- timeelapsed = time_elapsed();
- ted8360->cpuptr = machine;
for (;;) {
// hook into the emulation loop if active
if (g_bActive) {
--- NEW FILE yapeSDL.spec ---
Name: yapeSDL
Version: 0.32.4
Release: 2%{?dist}
Summary: YAPE, yet another plus/4 emulator
Group: Applications/Emulators
License: GPLv2+
URL: http://yape.plus4.net/
Source: http://yape.homeserver.hu/download/%{name}-%{version}.tar.gz
# OpenSUSE
Patch0: %{name}-0.32.4-gcc4_cflags.patch
# FreeBSD
Patch1: %{name}-0.32.4-homedir.patch
# Andrea Musuruane
Patch2: %{name}-0.32.4-loadfile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL-devel >= 0:1.2
%description
YAPE is a rather decent plus/4 emulator. It has been developed for
several years by now and it is available in Windows and
multiplatform editions, although the latter lags several versions
behind the first.
%prep
%setup -q -c -n %{name}-%{version}
%patch0 -p0
%patch1 -p1
%patch2 -p1
# Fix end-of-line-encoding
sed -i 's/\r//' *.{cpp,h} Changes README.SDL copying
# Fix UTF-8 encoding
iconv --from=ISO-8859-1 --to=UTF-8 README.SDL > README.SDL.utf8
mv README.SDL.utf8 README.SDL
# Fix spurious executable permissions
chmod 644 *.{cpp,h} Changes README.SDL copying
%build
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
install -d -m 0755 %{buildroot}%{_bindir}
install -m 0755 yape %{buildroot}%{_bindir}/
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc Changes copying README.SDL
%defattr(-,root,root,0755)
%{_bindir}/yape
%changelog
* Tue Feb 26 2008 Andrea Musuruane <musuruan(a)gmail.com> 0.32.4-2
- Minor cleanup
* Sun Jan 27 2008 Andrea Musuruane <musuruan(a)gmail.com> 0.32.4-1
- Initial RPM release
- Used a patch from OpenSUSE to compile with GCC4 and to use RPM_OPT_FLAGS
- Used a patch from FreeBSD to change homedir to .yape
- Made a patch to fix loading tap and prg files supplied in the command line
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/yapeSDL/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 16:17:14 -0000 1.1
+++ .cvsignore 26 Jul 2008 14:18:00 -0000 1.2
@@ -0,0 +1 @@
+yapeSDL-0.32.4.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/yapeSDL/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 16:17:14 -0000 1.1
+++ sources 26 Jul 2008 14:18:00 -0000 1.2
@@ -0,0 +1 @@
+b2b7a180d2c7893805f820f80f59ad30 yapeSDL-0.32.4.tar.gz
16 years, 4 months
rpms/xcpc/F-8 xcpc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/xcpc/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23629/F-8
Modified Files:
.cvsignore sources
Added Files:
xcpc.spec
Log Message:
First import
--- NEW FILE xcpc.spec ---
%define date 20070122
Name: xcpc
Version: 0.0
Release: 0.7.%{date}wip%{?dist}
Summary: A portable Amstrad CPC464/CPC664/CPC6128 Emulator written in C
Group: Applications/Emulators
License: GPLv2+
URL: http://xcpc.sourceforge.net/
Source0: http://dl.sf.net/%{name}/%{name}-%{date}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%if 0%{?fedora} < 6
BuildRequires: openmotif-devel
%else
BuildRequires: lesstif-devel
%endif
BuildRequires: glib2-devel
BuildRequires: libdsk-devel
BuildRequires: libXmu-devel
BuildRequires: libICE-devel
BuildRequires: libtool
BuildRequires: desktop-file-utils
Requires: hicolor-icon-theme
%description
Xcpc is a portable Amstrad CPC464/CPC664/CPC6128 Emulator written in C.
It is designed to run on any POSIX system (Linux/BSD/UNIX-like OSes).
%prep
%setup -q -n %{name}-%{date}
# remove icon extension from desktop file
sed -i -e 's/^Icon=%{name}.xpm$/Icon=%{name}/g' src/%{name}.desktop
%build
%configure --with-motif1
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
# install desktop file and fix categories
mkdir -p %{buildroot}%{_datadir}/applications
desktop-file-install \
--delete-original \
--vendor dribble \
--remove-category Application \
--dir %{buildroot}%{_datadir}/applications \
%{buildroot}%{_datadir}/applications/%{name}.desktop
# remove icon installed by make
rm %{buildroot}%{_datadir}/pixmaps/%{name}.xpm
# install icon
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/48x48/apps
install -m 644 src/%{name}.xpm %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/
%clean
rm -rf %{buildroot}
%post
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%postun
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%files
%defattr(-,root,root,-)
%{_bindir}/%{name}
%{_datadir}/%{name}/*
%{_datadir}/applications/dribble-%{name}.desktop
%{_datadir}/icons/hicolor/48x48/apps/%{name}.xpm
%doc AUTHORS ChangeLog COPYING README
%changelog
* Sat Jul 26 2008 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.7.20070122wip
- Changed license due to new guidelines
- Removed %%{?dist} tag from changelog
- Updated icon cache scriptlets to be compliant to new guidelines
- Improved macro usage
- Removed the icon extension from the desktop file
- Minor cleanup
* Sat Mar 17 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.6.20070122wip
- Changed .desktop category to Game;Emulator;
* Mon Jan 22 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.5.20070122wip
- Updated to latest snapshot
- Added %%date variable
* Mon Jan 15 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.4.20070108wip
- Added libICE-devel to the BR
- Fixed openmotif/lesstif BR depending on fedora version
* Sun Jan 14 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.3.20070108wip
- Dropped --add-category=X-Fedora from desktop-file-install
* Wed Jan 10 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.2.20070108wip
- Updated to xcpc-20070108
- Removed no longer needed fix to run xcpc
- Changed .desktop category to "Application;Emulator;"
* Wed Dec 27 2006 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.1.20061218wip
- Initial release for Dribble
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xcpc/F-8/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 16:14:42 -0000 1.1
+++ .cvsignore 26 Jul 2008 14:14:57 -0000 1.2
@@ -0,0 +1 @@
+xcpc-20070122.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xcpc/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 16:14:42 -0000 1.1
+++ sources 26 Jul 2008 14:14:57 -0000 1.2
@@ -0,0 +1 @@
+6b9d1c94b37e1cc10312dd46bd0696b7 xcpc-20070122.tar.gz
16 years, 4 months
rpms/xcpc/F-9 xcpc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/xcpc/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23447/F-9
Modified Files:
.cvsignore sources
Added Files:
xcpc.spec
Log Message:
First import
--- NEW FILE xcpc.spec ---
%define date 20070122
Name: xcpc
Version: 0.0
Release: 0.7.%{date}wip%{?dist}
Summary: A portable Amstrad CPC464/CPC664/CPC6128 Emulator written in C
Group: Applications/Emulators
License: GPLv2+
URL: http://xcpc.sourceforge.net/
Source0: http://dl.sf.net/%{name}/%{name}-%{date}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%if 0%{?fedora} < 6
BuildRequires: openmotif-devel
%else
BuildRequires: lesstif-devel
%endif
BuildRequires: glib2-devel
BuildRequires: libdsk-devel
BuildRequires: libXmu-devel
BuildRequires: libICE-devel
BuildRequires: libtool
BuildRequires: desktop-file-utils
Requires: hicolor-icon-theme
%description
Xcpc is a portable Amstrad CPC464/CPC664/CPC6128 Emulator written in C.
It is designed to run on any POSIX system (Linux/BSD/UNIX-like OSes).
%prep
%setup -q -n %{name}-%{date}
# remove icon extension from desktop file
sed -i -e 's/^Icon=%{name}.xpm$/Icon=%{name}/g' src/%{name}.desktop
%build
%configure --with-motif1
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
# install desktop file and fix categories
mkdir -p %{buildroot}%{_datadir}/applications
desktop-file-install \
--delete-original \
--vendor dribble \
--remove-category Application \
--dir %{buildroot}%{_datadir}/applications \
%{buildroot}%{_datadir}/applications/%{name}.desktop
# remove icon installed by make
rm %{buildroot}%{_datadir}/pixmaps/%{name}.xpm
# install icon
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/48x48/apps
install -m 644 src/%{name}.xpm %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/
%clean
rm -rf %{buildroot}
%post
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%postun
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%files
%defattr(-,root,root,-)
%{_bindir}/%{name}
%{_datadir}/%{name}/*
%{_datadir}/applications/dribble-%{name}.desktop
%{_datadir}/icons/hicolor/48x48/apps/%{name}.xpm
%doc AUTHORS ChangeLog COPYING README
%changelog
* Sat Jul 26 2008 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.7.20070122wip
- Changed license due to new guidelines
- Removed %%{?dist} tag from changelog
- Updated icon cache scriptlets to be compliant to new guidelines
- Improved macro usage
- Removed the icon extension from the desktop file
- Minor cleanup
* Sat Mar 17 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.6.20070122wip
- Changed .desktop category to Game;Emulator;
* Mon Jan 22 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.5.20070122wip
- Updated to latest snapshot
- Added %%date variable
* Mon Jan 15 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.4.20070108wip
- Added libICE-devel to the BR
- Fixed openmotif/lesstif BR depending on fedora version
* Sun Jan 14 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.3.20070108wip
- Dropped --add-category=X-Fedora from desktop-file-install
* Wed Jan 10 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.2.20070108wip
- Updated to xcpc-20070108
- Removed no longer needed fix to run xcpc
- Changed .desktop category to "Application;Emulator;"
* Wed Dec 27 2006 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.1.20061218wip
- Initial release for Dribble
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xcpc/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 16:14:42 -0000 1.1
+++ .cvsignore 26 Jul 2008 14:14:10 -0000 1.2
@@ -0,0 +1 @@
+xcpc-20070122.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xcpc/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 16:14:42 -0000 1.1
+++ sources 26 Jul 2008 14:14:10 -0000 1.2
@@ -0,0 +1 @@
+6b9d1c94b37e1cc10312dd46bd0696b7 xcpc-20070122.tar.gz
16 years, 4 months
rpms/xcpc/devel xcpc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/xcpc/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23262/devel
Modified Files:
.cvsignore sources
Added Files:
xcpc.spec
Log Message:
First import
--- NEW FILE xcpc.spec ---
%define date 20070122
Name: xcpc
Version: 0.0
Release: 0.7.%{date}wip%{?dist}
Summary: A portable Amstrad CPC464/CPC664/CPC6128 Emulator written in C
Group: Applications/Emulators
License: GPLv2+
URL: http://xcpc.sourceforge.net/
Source0: http://dl.sf.net/%{name}/%{name}-%{date}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%if 0%{?fedora} < 6
BuildRequires: openmotif-devel
%else
BuildRequires: lesstif-devel
%endif
BuildRequires: glib2-devel
BuildRequires: libdsk-devel
BuildRequires: libXmu-devel
BuildRequires: libICE-devel
BuildRequires: libtool
BuildRequires: desktop-file-utils
Requires: hicolor-icon-theme
%description
Xcpc is a portable Amstrad CPC464/CPC664/CPC6128 Emulator written in C.
It is designed to run on any POSIX system (Linux/BSD/UNIX-like OSes).
%prep
%setup -q -n %{name}-%{date}
# remove icon extension from desktop file
sed -i -e 's/^Icon=%{name}.xpm$/Icon=%{name}/g' src/%{name}.desktop
%build
%configure --with-motif1
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
# install desktop file and fix categories
mkdir -p %{buildroot}%{_datadir}/applications
desktop-file-install \
--delete-original \
--vendor dribble \
--remove-category Application \
--dir %{buildroot}%{_datadir}/applications \
%{buildroot}%{_datadir}/applications/%{name}.desktop
# remove icon installed by make
rm %{buildroot}%{_datadir}/pixmaps/%{name}.xpm
# install icon
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/48x48/apps
install -m 644 src/%{name}.xpm %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/
%clean
rm -rf %{buildroot}
%post
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%postun
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%files
%defattr(-,root,root,-)
%{_bindir}/%{name}
%{_datadir}/%{name}/*
%{_datadir}/applications/dribble-%{name}.desktop
%{_datadir}/icons/hicolor/48x48/apps/%{name}.xpm
%doc AUTHORS ChangeLog COPYING README
%changelog
* Sat Jul 26 2008 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.7.20070122wip
- Changed license due to new guidelines
- Removed %%{?dist} tag from changelog
- Updated icon cache scriptlets to be compliant to new guidelines
- Improved macro usage
- Removed the icon extension from the desktop file
- Minor cleanup
* Sat Mar 17 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.6.20070122wip
- Changed .desktop category to Game;Emulator;
* Mon Jan 22 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.5.20070122wip
- Updated to latest snapshot
- Added %%date variable
* Mon Jan 15 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.4.20070108wip
- Added libICE-devel to the BR
- Fixed openmotif/lesstif BR depending on fedora version
* Sun Jan 14 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.3.20070108wip
- Dropped --add-category=X-Fedora from desktop-file-install
* Wed Jan 10 2007 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.2.20070108wip
- Updated to xcpc-20070108
- Removed no longer needed fix to run xcpc
- Changed .desktop category to "Application;Emulator;"
* Wed Dec 27 2006 Andrea Musuruane <musuruan(a)gmail.com> 0.0-0.1.20061218wip
- Initial release for Dribble
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xcpc/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Jun 2008 16:14:42 -0000 1.1
+++ .cvsignore 26 Jul 2008 14:13:19 -0000 1.2
@@ -0,0 +1 @@
+xcpc-20070122.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xcpc/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Jun 2008 16:14:42 -0000 1.1
+++ sources 26 Jul 2008 14:13:19 -0000 1.2
@@ -0,0 +1 @@
+6b9d1c94b37e1cc10312dd46bd0696b7 xcpc-20070122.tar.gz
16 years, 4 months
rpms/php-pecl-pdflib/F-8 php-pecl-pdflib.spec, NONE, 1.1 xml2changelog, NONE, 1.1 sources, 1.1, 1.2
by Remi Collet
Author: remi
Update of /cvs/nonfree/rpms/php-pecl-pdflib/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv22630
Modified Files:
sources
Added Files:
php-pecl-pdflib.spec xml2changelog
Log Message:
first
--- NEW FILE php-pecl-pdflib.spec ---
%{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}}
%{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}}
%{!?php_apiver: %{expand: %%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1)}}
%define pecl_name pdflib
Summary: Package for generating PDF files
Summary(fr): Extension pour générer des fichiers PDF
Name: php-pecl-pdflib
Version: 2.1.5
Release: 1%{?dist}
License: PHP
Group: Development/Languages
URL: http://pecl.php.net/package/pdflib
Source: http://pecl.php.net/get/pdflib-%{version}.tgz
Source2: xml2changelog
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Provides: php-pecl(pdflib) = %{version}-%{release}, php-pdflib = %{version}-%{release}
BuildRequires: php-devel, pdflib-lite-devel, php-pear
Requires(post): %{__pecl}
Requires(postun): %{__pecl}
%if %{?php_zend_api}0
Requires: php(zend-abi) = %{php_zend_api}
Requires: php(api) = %{php_core_api}
%else
Requires: php-api = %{php_apiver}
%endif
%description
This PHP extension wraps the PDFlib programming library
for processing PDF on the fly.
More info on how to use PDFlib with PHP can be found at
http://www.pdflib.com/developer-center/technical-documentation/php-howto
%description -l fr
Cette extension PHP fournit une interface sur la biliothèque de développement
PDFlib pour générer des fichiers PDF à la volée.
Plus d'informations sur l'utilisation de PDFlib avec PHP sur
http://www.pdflib.com/developer-center/technical-documentation/php-howto
%prep
%setup -c -q
%{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG
cd pdflib-%{version}
%build
cd pdflib-%{version}
phpize
%configure
%{__make} %{?_smp_mflags}
%install
cd pdflib-%{version}
%{__rm} -rf %{buildroot}
%{__make} install INSTALL_ROOT=%{buildroot}
# Drop in the bit of configuration
%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d
%{__cat} > %{buildroot}%{_sysconfdir}/php.d/pdf.ini << 'EOF'
; Enable PDFlib extension module
extension=pdf.so
EOF
# Install XML package description
# use 'name' rather than 'pecl_name' to avoid conflict with pear extensions
%{__mkdir_p} %{buildroot}%{pecl_xmldir}
%{__install} -m 644 ../package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
%if 0%{?pecl_install:1}
%post
%{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || :
%endif
%if 0%{?pecl_uninstall:1}
%postun
if [ $1 -eq 0 ] ; then
%{pecl_uninstall} %{pecl_name} >/dev/null || :
fi
%endif
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root, -)
%doc CHANGELOG pdflib-%{version}/CREDITS
%config(noreplace) %{_sysconfdir}/php.d/pdf.ini
%{php_extdir}/pdf.so
%{pecl_xmldir}/%{name}.xml
%changelog
* Sat Mar 15 2008 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.5-1
- update to 2.1.5
* Tue Sep 25 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.4-2
- add missing BR php-pear
* Tue Sep 25 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.4-1
- update to 2.1.4
- convert package from v1 to v2
- register extension (new PHP Guidelines)
- remove License file (not provided upstream)
* Sat Mar 17 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.3-2
- rebuild againt pdflib-lite-7.0.1
* Fri Mar 9 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.3-1
- requires php(zend-abi) and php(api) when available
- update to 2.1.3
* Sat Dec 09 2006 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.2-1
- initial spec for Livna
--- NEW FILE xml2changelog ---
<?php
$prog=array_shift($_SERVER['argv']);
if ($_SERVER['argc']<2) die ("usage : " . $prog . " path_to_package.xml [ --debug ]\n");
$file=array_shift($_SERVER['argv']);
($xml=simplexml_load_file($file)) || die ($file . " not found !\n");
if (in_array("--debug", $_SERVER['argv'])) print_r($xml);
if ($xml['version'] >= "2"){ // Package.xml V 2.0
printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n",
$xml->version->release, $xml->stability->release,
$xml->version->api, $xml->stability->api,
$xml->date, $xml->notes);
$new=$xml->version->release;
if (isset($xml->changelog->release) && count($xml->changelog->release))
foreach($xml->changelog->release as $rel) {
$old=$rel->version->release;
if ("$old" != "$new") {
printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n",
$rel->version->release, $rel->stability->release,
$rel->version->api, $rel->stability->api,
$rel->date, $rel->notes);
}
}
} else { // Package.xml V 1.0
printf("* Version %s (%s) - %s\n\n%s\n\n",
$xml->release->version, $xml->release->state, $xml->release->date, $xml->release->notes);
foreach($xml->changelog->release as $rel)
printf("* Version %s (%s) - %s\n\n%s\n\n",
$rel->version, $rel->state, $rel->date, $rel->notes);
}
?>
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/php-pecl-pdflib/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 22 Jul 2008 16:54:20 -0000 1.1
+++ sources 26 Jul 2008 14:02:49 -0000 1.2
@@ -0,0 +1 @@
+20cc71fad0792658e5fc666558dbda47 pdflib-2.1.5.tgz
16 years, 4 months
rpms/php-pecl-pdflib/F-9 php-pecl-pdflib.spec, NONE, 1.1 xml2changelog, NONE, 1.1 sources, 1.1, 1.2
by Remi Collet
Author: remi
Update of /cvs/nonfree/rpms/php-pecl-pdflib/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv22582
Modified Files:
sources
Added Files:
php-pecl-pdflib.spec xml2changelog
Log Message:
first
--- NEW FILE php-pecl-pdflib.spec ---
%{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}}
%{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}}
%{!?php_apiver: %{expand: %%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1)}}
%define pecl_name pdflib
Summary: Package for generating PDF files
Summary(fr): Extension pour générer des fichiers PDF
Name: php-pecl-pdflib
Version: 2.1.5
Release: 1%{?dist}
License: PHP
Group: Development/Languages
URL: http://pecl.php.net/package/pdflib
Source: http://pecl.php.net/get/pdflib-%{version}.tgz
Source2: xml2changelog
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Provides: php-pecl(pdflib) = %{version}-%{release}, php-pdflib = %{version}-%{release}
BuildRequires: php-devel, pdflib-lite-devel, php-pear
Requires(post): %{__pecl}
Requires(postun): %{__pecl}
%if %{?php_zend_api}0
Requires: php(zend-abi) = %{php_zend_api}
Requires: php(api) = %{php_core_api}
%else
Requires: php-api = %{php_apiver}
%endif
%description
This PHP extension wraps the PDFlib programming library
for processing PDF on the fly.
More info on how to use PDFlib with PHP can be found at
http://www.pdflib.com/developer-center/technical-documentation/php-howto
%description -l fr
Cette extension PHP fournit une interface sur la biliothèque de développement
PDFlib pour générer des fichiers PDF à la volée.
Plus d'informations sur l'utilisation de PDFlib avec PHP sur
http://www.pdflib.com/developer-center/technical-documentation/php-howto
%prep
%setup -c -q
%{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG
cd pdflib-%{version}
%build
cd pdflib-%{version}
phpize
%configure
%{__make} %{?_smp_mflags}
%install
cd pdflib-%{version}
%{__rm} -rf %{buildroot}
%{__make} install INSTALL_ROOT=%{buildroot}
# Drop in the bit of configuration
%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d
%{__cat} > %{buildroot}%{_sysconfdir}/php.d/pdf.ini << 'EOF'
; Enable PDFlib extension module
extension=pdf.so
EOF
# Install XML package description
# use 'name' rather than 'pecl_name' to avoid conflict with pear extensions
%{__mkdir_p} %{buildroot}%{pecl_xmldir}
%{__install} -m 644 ../package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
%if 0%{?pecl_install:1}
%post
%{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || :
%endif
%if 0%{?pecl_uninstall:1}
%postun
if [ $1 -eq 0 ] ; then
%{pecl_uninstall} %{pecl_name} >/dev/null || :
fi
%endif
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root, -)
%doc CHANGELOG pdflib-%{version}/CREDITS
%config(noreplace) %{_sysconfdir}/php.d/pdf.ini
%{php_extdir}/pdf.so
%{pecl_xmldir}/%{name}.xml
%changelog
* Sat Mar 15 2008 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.5-1
- update to 2.1.5
* Tue Sep 25 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.4-2
- add missing BR php-pear
* Tue Sep 25 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.4-1
- update to 2.1.4
- convert package from v1 to v2
- register extension (new PHP Guidelines)
- remove License file (not provided upstream)
* Sat Mar 17 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.3-2
- rebuild againt pdflib-lite-7.0.1
* Fri Mar 9 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.3-1
- requires php(zend-abi) and php(api) when available
- update to 2.1.3
* Sat Dec 09 2006 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.2-1
- initial spec for Livna
--- NEW FILE xml2changelog ---
<?php
$prog=array_shift($_SERVER['argv']);
if ($_SERVER['argc']<2) die ("usage : " . $prog . " path_to_package.xml [ --debug ]\n");
$file=array_shift($_SERVER['argv']);
($xml=simplexml_load_file($file)) || die ($file . " not found !\n");
if (in_array("--debug", $_SERVER['argv'])) print_r($xml);
if ($xml['version'] >= "2"){ // Package.xml V 2.0
printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n",
$xml->version->release, $xml->stability->release,
$xml->version->api, $xml->stability->api,
$xml->date, $xml->notes);
$new=$xml->version->release;
if (isset($xml->changelog->release) && count($xml->changelog->release))
foreach($xml->changelog->release as $rel) {
$old=$rel->version->release;
if ("$old" != "$new") {
printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n",
$rel->version->release, $rel->stability->release,
$rel->version->api, $rel->stability->api,
$rel->date, $rel->notes);
}
}
} else { // Package.xml V 1.0
printf("* Version %s (%s) - %s\n\n%s\n\n",
$xml->release->version, $xml->release->state, $xml->release->date, $xml->release->notes);
foreach($xml->changelog->release as $rel)
printf("* Version %s (%s) - %s\n\n%s\n\n",
$rel->version, $rel->state, $rel->date, $rel->notes);
}
?>
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/php-pecl-pdflib/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 22 Jul 2008 16:54:20 -0000 1.1
+++ sources 26 Jul 2008 14:02:28 -0000 1.2
@@ -0,0 +1 @@
+20cc71fad0792658e5fc666558dbda47 pdflib-2.1.5.tgz
16 years, 4 months
rpms/php-pecl-pdflib/devel php-pecl-pdflib.spec, NONE, 1.1 xml2changelog, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Remi Collet
Author: remi
Update of /cvs/nonfree/rpms/php-pecl-pdflib/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv22280
Modified Files:
.cvsignore sources
Added Files:
php-pecl-pdflib.spec xml2changelog
Log Message:
first
--- NEW FILE php-pecl-pdflib.spec ---
%{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}}
%{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}}
%{!?php_apiver: %{expand: %%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1)}}
%define pecl_name pdflib
Summary: Package for generating PDF files
Summary(fr): Extension pour générer des fichiers PDF
Name: php-pecl-pdflib
Version: 2.1.5
Release: 1%{?dist}
License: PHP
Group: Development/Languages
URL: http://pecl.php.net/package/pdflib
Source: http://pecl.php.net/get/pdflib-%{version}.tgz
Source2: xml2changelog
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Provides: php-pecl(pdflib) = %{version}-%{release}, php-pdflib = %{version}-%{release}
BuildRequires: php-devel, pdflib-lite-devel, php-pear
Requires(post): %{__pecl}
Requires(postun): %{__pecl}
%if %{?php_zend_api}0
Requires: php(zend-abi) = %{php_zend_api}
Requires: php(api) = %{php_core_api}
%else
Requires: php-api = %{php_apiver}
%endif
%description
This PHP extension wraps the PDFlib programming library
for processing PDF on the fly.
More info on how to use PDFlib with PHP can be found at
http://www.pdflib.com/developer-center/technical-documentation/php-howto
%description -l fr
Cette extension PHP fournit une interface sur la biliothèque de développement
PDFlib pour générer des fichiers PDF à la volée.
Plus d'informations sur l'utilisation de PDFlib avec PHP sur
http://www.pdflib.com/developer-center/technical-documentation/php-howto
%prep
%setup -c -q
%{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG
cd pdflib-%{version}
%build
cd pdflib-%{version}
phpize
%configure
%{__make} %{?_smp_mflags}
%install
cd pdflib-%{version}
%{__rm} -rf %{buildroot}
%{__make} install INSTALL_ROOT=%{buildroot}
# Drop in the bit of configuration
%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d
%{__cat} > %{buildroot}%{_sysconfdir}/php.d/pdf.ini << 'EOF'
; Enable PDFlib extension module
extension=pdf.so
EOF
# Install XML package description
# use 'name' rather than 'pecl_name' to avoid conflict with pear extensions
%{__mkdir_p} %{buildroot}%{pecl_xmldir}
%{__install} -m 644 ../package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
%if 0%{?pecl_install:1}
%post
%{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || :
%endif
%if 0%{?pecl_uninstall:1}
%postun
if [ $1 -eq 0 ] ; then
%{pecl_uninstall} %{pecl_name} >/dev/null || :
fi
%endif
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root, -)
%doc CHANGELOG pdflib-%{version}/CREDITS
%config(noreplace) %{_sysconfdir}/php.d/pdf.ini
%{php_extdir}/pdf.so
%{pecl_xmldir}/%{name}.xml
%changelog
* Sat Mar 15 2008 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.5-1
- update to 2.1.5
* Tue Sep 25 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.4-2
- add missing BR php-pear
* Tue Sep 25 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.4-1
- update to 2.1.4
- convert package from v1 to v2
- register extension (new PHP Guidelines)
- remove License file (not provided upstream)
* Sat Mar 17 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.3-2
- rebuild againt pdflib-lite-7.0.1
* Fri Mar 9 2007 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.3-1
- requires php(zend-abi) and php(api) when available
- update to 2.1.3
* Sat Dec 09 2006 Remi Collet <RPMS(a)FamilleCollet.com> 2.1.2-1
- initial spec for Livna
--- NEW FILE xml2changelog ---
<?php
$prog=array_shift($_SERVER['argv']);
if ($_SERVER['argc']<2) die ("usage : " . $prog . " path_to_package.xml [ --debug ]\n");
$file=array_shift($_SERVER['argv']);
($xml=simplexml_load_file($file)) || die ($file . " not found !\n");
if (in_array("--debug", $_SERVER['argv'])) print_r($xml);
if ($xml['version'] >= "2"){ // Package.xml V 2.0
printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n",
$xml->version->release, $xml->stability->release,
$xml->version->api, $xml->stability->api,
$xml->date, $xml->notes);
$new=$xml->version->release;
if (isset($xml->changelog->release) && count($xml->changelog->release))
foreach($xml->changelog->release as $rel) {
$old=$rel->version->release;
if ("$old" != "$new") {
printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n",
$rel->version->release, $rel->stability->release,
$rel->version->api, $rel->stability->api,
$rel->date, $rel->notes);
}
}
} else { // Package.xml V 1.0
printf("* Version %s (%s) - %s\n\n%s\n\n",
$xml->release->version, $xml->release->state, $xml->release->date, $xml->release->notes);
foreach($xml->changelog->release as $rel)
printf("* Version %s (%s) - %s\n\n%s\n\n",
$rel->version, $rel->state, $rel->date, $rel->notes);
}
?>
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/php-pecl-pdflib/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 22 Jul 2008 16:54:20 -0000 1.1
+++ .cvsignore 26 Jul 2008 14:01:44 -0000 1.2
@@ -0,0 +1 @@
+pdflib-2.1.5.tgz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/php-pecl-pdflib/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 22 Jul 2008 16:54:20 -0000 1.1
+++ sources 26 Jul 2008 14:01:44 -0000 1.2
@@ -0,0 +1 @@
+20cc71fad0792658e5fc666558dbda47 pdflib-2.1.5.tgz
16 years, 4 months
rpms/pdflib-lite/F-8 pdflib-lite-gcc43.patch, NONE, 1.1 pdflib-lite.spec, NONE, 1.1 sources, 1.1, 1.2
by Remi Collet
Author: remi
Update of /cvs/nonfree/rpms/pdflib-lite/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv22134
Modified Files:
sources
Added Files:
pdflib-lite-gcc43.patch pdflib-lite.spec
Log Message:
first
pdflib-lite-gcc43.patch:
--- NEW FILE pdflib-lite-gcc43.patch ---
diff -up bind/pdflib/cpp/pdflib.hpp.gcc43 bind/pdflib/cpp/pdflib.hpp
--- bind/pdflib/cpp/pdflib.hpp.gcc43 2008-02-28 10:43:00.000000000 +0100
+++ bind/pdflib/cpp/pdflib.hpp 2008-02-29 21:47:34.000000000 +0100
@@ -28,6 +28,8 @@
#endif
#include <string>
+#include <cstring>
+#include <cstdlib>
#include "pdflib.h"
#if defined(_MSC_VER) && defined(_MANAGED)
--- NEW FILE pdflib-lite.spec ---
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%{!?python_include: %define python_include %(%{__python} -c "from distutils.sysconfig import get_python_inc; print get_python_inc(0)")}
Summary: Portable C library for dynamically generating PDF files
Name: pdflib-lite
# Remenber to check the URL after changing this...
Version: 7.0.3
Release: 1%{?dist}
License: Distributable
Group: System Environment/Libraries
URL: http://www.pdflib.com/
Source: http://www.pdflib.com/binaries/PDFlib/703/PDFlib-Lite-%{version}.tar.gz
Patch0: pdflib-lite-gcc43.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
PDFlib is a development tool for PDF-enabling your software,
or generating PDF on your server. PDFlib offers a simple-to-use API
for programmatically creating PDF files from within your own server-
or client-side software. PDFlib doesn't make use of third-party software
for generating PDF, nor does it require any other tools.
%package devel
Summary: Development files for pdflib
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
PDFlib is a development tool for PDF-enabling your software,
or generating PDF on your server. PDFlib offers a simple-to-use API
for programmatically creating PDF files from within your own server-
or client-side software. PDFlib doesn't make use of third-party software
for generating PDF, nor does it require any other tools.
This package contains the files needed for compiling programs that will use
the PDFlib library.
%package python
Summary: Python shared library for pdflib
Group: System Environment/Libraries
BuildRequires: python-devel
Requires: %{name} = %{version}-%{release}
Provides: python-pdflib = %{version}-%{release}
%description python
PDFlib is a development tool for PDF-enabling your software,
or generating PDF on your server. PDFlib offers a simple-to-use API
for programmatically creating PDF files from within your own server-
or client-side software. PDFlib doesn't make use of third-party software
for generating PDF, nor does it require any other tools.
This package contains the library needed for python programs
that will use the PDFlib library.
%package perl
Summary: Perl shared library for pdflib
Group: System Environment/Libraries
Requires: %{name} = %{version}-%{release}
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
Provides: perl-pdflib = %{version}-%{release}
%if 0%{?fedora} >= 7
BuildRequires: perl-devel
%endif
%description perl
PDFlib is a development tool for PDF-enabling your software,
or generating PDF on your server. PDFlib offers a simple-to-use API
for programmatically creating PDF files from within your own server-
or client-side software. PDFlib doesn't make use of third-party software
for generating PDF, nor does it require any other tools.
This package contains the library needed for perl programs
that will use the PDFlib library.
%prep
%setup -q -n PDFlib-Lite-%{version}
%patch0 -p0 -b .gcc43
sed -i -e 's,^PYTHONLIBDIR.*,PYTHONLIBDIR = %{python_sitearch},' \
-e 's,^PERLLIBDIR.*,PERLLIBDIR = %{perl_vendorarch},' \
config/mkcommon.inc.in
%build
# C, CPP, perl and python bindings enabled
# java, ruby and tcl disabled
# File a bug with RFE and patch if you need it
%configure \
--with-pyincl=%{python_include} \
--with-java=no \
--with-ruby=no \
--with-tcl=no \
--enable-large_files --enable-tiffwrite
# for x86_64 build
sed -i -e s@/usr/lib@%{_libdir}@ libtool
%{__make} %{?_smp_mflags}
%install
rm -rf %{buildroot} examples
mkdir -p %{buildroot}%{python_sitearch}
mkdir -p %{buildroot}%{perl_vendorarch}
make install DESTDIR=%{buildroot}
install -p -m 0644 bind/pdflib/cpp/pdflib.hpp %{buildroot}%{_includedir}/pdflib.hpp
rm %{buildroot}%{_libdir}/*.{la,a}
rm %{buildroot}%{python_sitearch}/*.{la,a}
rm %{buildroot}%{perl_vendorarch}/*.{la,a}
# require to extract debuginfo
chmod +x %{buildroot}%{_libdir}/libpdf*
chmod +x %{buildroot}%{python_sitearch}/pdflib_py.so*
chmod +x %{buildroot}%{perl_vendorarch}/pdflib_pl.so*
# Only sources
mkdir -p examples/{c,cpp,perl,php,python}
cp -r bind/pdflib/data examples/data
cp bind/pdflib/c/*.c \
bind/pdflib/c/Makefile \
bind/pdflib/c/readme.txt \
examples/c
cp bind/pdflib/cpp/*.cpp \
bind/pdflib/cpp/Makefile \
bind/pdflib/cpp/readme.txt \
examples/cpp
cp bind/pdflib/perl/*.pl \
bind/pdflib/perl/Makefile \
bind/pdflib/perl/readme.txt \
examples/perl
cp bind/pdflib/python/*.py \
bind/pdflib/python/Makefile \
bind/pdflib/python/readme.txt \
examples/python
cp bind/pdflib/php/*.php \
bind/pdflib/php/readme.txt \
examples/php
# overwrite the default php4 one
cp bind/pdflib/php/examples.php5/*.php \
examples/php
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-, root, root, -)
%doc readme.txt doc/pdflib/PDFlib-Lite-license.pdf
%{_bindir}/pdfimage
%{_libdir}/*.so.*
%files devel
%defattr(-, root, root, -)
%doc doc/pdflib/PDFlib-Lite-license.pdf
%doc doc/pdflib/changes.txt doc/pdflib/compatibility.txt examples
%doc doc/pdflib/PDFlib-API-reference.pdf doc/pdflib/PDFlib-tutorial.pdf doc/pdflib/readme-source-unix.txt
%{_bindir}/pdflib-config
%{_includedir}/*
%{_libdir}/*.so
%files python
%defattr(-, root, root, -)
%doc doc/pdflib/PDFlib-Lite-license.pdf
%{python_sitearch}/pdflib_py.so*
%files perl
%defattr(-, root, root, -)
%doc doc/pdflib/PDFlib-Lite-license.pdf
%{perl_vendorarch}/pdflib_pl.*
%changelog
* Fri Mar 28 2008 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.3-1
- update to 7.0.3
- fix CVE-2007-6561: PDFlib stack-based buffer overflows
* Sat Mar 15 2008 Thorsten Leemhuis <fedora at leemhuis.info> 7.0.2p8-2
- rebuild for new perl
* Fri Feb 29 2008 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.2p8-1
- update to 7.0.2p8
- del destdir.patch ("make install DESTDIR" is now ok)
- add gcc43.patch for Fedora 9
* Thu Aug 16 2007 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.2-1
- Add BR perl-devel for fedora >= 7
* Thu Aug 16 2007 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.2-1
- update to 7.0.2
* Thu Mar 15 2007 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.1-1
- update to 7.0.1
* Mon Dec 18 2006 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.0p3-3
- review for Livna
- Requires/BuildRequires cleanup
- Change License = Distributable, include PDFlib-Lite-license.pdf in sub-packages
- add --with-pyinc, python2.5 not defined in configure
- add some comments
* Sun Dec 10 2006 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.0p3-2
- add python subpackage
- add perl subpackage
* Sat Dec 09 2006 Remi Collet <Fedora(a)FamilleCollet.com> 7.0.0p3-1
- initial release for Extras
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/pdflib-lite/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 22 Jul 2008 16:40:53 -0000 1.1
+++ sources 26 Jul 2008 13:58:03 -0000 1.2
@@ -0,0 +1 @@
+97bcdd73206bae30b322f49d2c0d852b PDFlib-Lite-7.0.3.tar.gz
16 years, 4 months