2 changed files with 112 additions and 0 deletions
@ -0,0 +1,15 @@
|
||||
Index: src/Makefile.in
|
||||
--- src/Makefile.in.orig 2008-09-26 23:20:06 +0200
|
||||
+++ src/Makefile.in 2008-09-27 20:41:56 +0200
|
||||
@@ -20,9 +20,9 @@
|
||||
RUBBISH = $(NAME) $(OBJ) slices/test.*.* test.html *~
|
||||
AUTOGEN = $(GGO_OUT)
|
||||
|
||||
-CFLAGS = -DHAVE_CONFIG_H @CFLAGS@
|
||||
+CFLAGS = -DHAVE_CONFIG_H @CFLAGS@ @CPPFLAGS@
|
||||
|
||||
-LIBS = @LIBS@
|
||||
+LIBS = @LDFLAGS@ @LIBS@
|
||||
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
@ -0,0 +1,97 @@
|
||||
## |
||||
## pngslice.spec -- OpenPKG RPM Package Specification |
||||
## Copyright (c) 2000-2008 OpenPKG Foundation e.V. <http://openpkg.net/> |
||||
## |
||||
## Permission to use, copy, modify, and distribute this software for |
||||
## any purpose with or without fee is hereby granted, provided that |
||||
## the above copyright notice and this permission notice appear in all |
||||
## copies. |
||||
## |
||||
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED |
||||
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
||||
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||||
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR |
||||
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
||||
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
||||
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
||||
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
||||
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
||||
## SUCH DAMAGE. |
||||
## |
||||
|
||||
# package information |
||||
Name: pngslice |
||||
Summary: PNG Slicing Utility |
||||
URL: http://www.pngslice.org/ |
||||
Vendor: J. J. Green |
||||
Packager: OpenPKG Foundation e.V. |
||||
Distribution: OpenPKG Community |
||||
Class: EVAL |
||||
Group: Graphics |
||||
License: GPL |
||||
Version: 20080926 |
||||
Release: 20080927 |
||||
|
||||
# list of sources |
||||
Source0: ftp://ftp.openpkg.org/sources/CPY/VERSIONED/pngslice/pngslice-%{version}.tar.gz |
||||
Patch0: pngslice.patch |
||||
|
||||
# build information |
||||
Prefix: %{l_prefix} |
||||
BuildRoot: %{l_buildroot} |
||||
BuildPreReq: OpenPKG, openpkg >= 20060823 |
||||
PreReq: OpenPKG, openpkg >= 20060823 |
||||
BuildPreReq: png, zlib |
||||
PreReq: png, zlib |
||||
AutoReq: no |
||||
AutoReqProv: no |
||||
|
||||
%description |
||||
This small utility allows a PNG image to be displayed with text |
||||
flowing around it in HTML pages. The idea is to slice the image into |
||||
thin strips, and then to trim each image to the right (or left) |
||||
according to a specified background color. The images are then left |
||||
(or right) justified and stacked vertically, so that the original |
||||
image is recovered, but it has a ragged right (left) boundary. The |
||||
web browser then flows text to the right (left) of this boundary, |
||||
achieving the desired effect. |
||||
|
||||
%track |
||||
prog pngslice = { |
||||
version = %{version} |
||||
url = ftp://ftp.openpkg.org/sources/CPY/VERSIONED/pngslice/ |
||||
regex = pngslice-(__VER__)\.tar\.gz |
||||
} |
||||
|
||||
%prep |
||||
%setup -q -n pngslice |
||||
%patch -p0 |
||||
|
||||
%build |
||||
CC="%{l_cc}" \ |
||||
CFLAGS="%{l_cflags -O}" \ |
||||
CPPFLAGS="%{l_cppflags}" \ |
||||
LDFLAGS="%{l_ldflags}" \ |
||||
LIBS="-lpng -lz -lm" \ |
||||
./configure \ |
||||
--prefix=%{l_prefix} |
||||
%{l_make} %{l_mflags -O} |
||||
|
||||
%install |
||||
rm -rf $RPM_BUILD_ROOT |
||||
%{l_shtool} mkdir -f -p -m 755 \ |
||||
$RPM_BUILD_ROOT%{l_prefix}/bin \ |
||||
$RPM_BUILD_ROOT%{l_prefix}/man/man1 |
||||
%{l_shtool} install -c -s -m 755 \ |
||||
src/pngslice $RPM_BUILD_ROOT%{l_prefix}/bin/ |
||||
%{l_shtool} install -c -m 644 \ |
||||
src/pngslice.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/ |
||||
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} |
||||
|
||||
%files -f files |
||||
|
||||
%clean |
||||
rm -rf $RPM_BUILD_ROOT |
||||
|
Loading…
Reference in new issue