]> git.pld-linux.org Git - packages/boxes.git/commitdiff
- spec adapterized.
authorkloczek <kloczek@pld-linux.org>
Thu, 18 May 2000 16:58:01 +0000 (16:58 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    boxes.spec -> 1.4

boxes.spec

index 2baef37156d9065446802b5a47a06a3950d80dcc..19d35a35b349cc6d2774b55de0a2b303f88e5dd8 100644 (file)
@@ -1,46 +1,42 @@
-%define name   boxes
-%define version        1.0
-%define release        1
-%define prefix /usr
-%define cfgfile        %prefix/share/boxes
-
-%define nvr    %{name}-%{version}-%{release}
-%define defbr  /var/tmp/%{nvr}-build
-
 name:          %name
 version:       %version
 release:       %release
 
-vendor:         Thomas Jensen <boxes@home-of.tj>
-packager:      Thomas Jensen <boxes@home-of.tj>
-
-summary:       Draw any kind of box around some given text
-group:         Utilities/Text
-
-copyright:     GPL Version 2
+Summary:       Draw any kind of box around some given text
+Name:          boxes
+Version:       1.0
+Release:       1
+License:       GPL Version 2
+Group:         Utilities/Text
+Group(fr):     Utilitaires/Texte
+Group(pl):     Narzêdzia/Tekst
+Vendor:                Thomas Jensen <boxes@home-of.tj>
 URL:           http://home.pages.de/~jensen/boxes/
 
-source:                http://home.pages.de/~jensen/boxes/download/%{name}-%{version}-src.tar.gz
+Source0:       http://home.pages.de/~jensen/boxes/download/%{name}-%{version}-src.tar.gz
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-"boxes" can draw all kinds of boxes around its input text, ranging from a C
-comment box to complex ASCII art. These boxes may also be removed, even if
-they have been badly damaged by editing of the text inside. Since boxes may
-be open on any side, "boxes" can also be used to create regional comments in
-any programming language. With the help of an editor macro or mapping,
-damaged boxes can easily be repaired. New box designs of all sorts can
-easily be added and shared by appending to a free format configuration file.
+"boxes" can draw all kinds of boxes around its input text, ranging
+from a C comment box to complex ASCII art. These boxes may also be
+removed, even if they have been badly damaged by editing of the text
+inside. Since boxes may be open on any side, "boxes" can also be used
+to create regional comments in any programming language. With the help
+of an editor macro or mapping, damaged boxes can easily be repaired.
+New box designs of all sorts can easily be added and shared by
+appending to a free format configuration file.
 
 %description -l pl
-Za pomoc± boxes mo¿na rysowaæ ró¿ne ramki wokó³ podanego tekstu, pocz±wszy
-od komentarzy C a skoñczywszy na skomplikowanym ascii art. Mo¿na równie¿
-usuwaæ te ramki, nawet jesli zosta³y powa¿nie uszkodzone edycj± znajduj±cego
-siê w nich tekstu. Poniewa¿ mog± byæ otwarte z ka¿dej strony, mo¿na ich
-u¿yæ do tworzenia lokalnych komentarzy w jakimkolwiek jêzyku programowania.
-Za pomoc± edytora makr lub mapowania mo¿na ³atwo naprawiæ uszkodzone ramki. 
-Mo¿na równie¿ ³atwo dodaæ nowe rodzaje ramek ró¿nego rodzaju, do³±czaj±c je 
-do pliku konfiguracyjnego o otwartym formacie.
+Za pomoc± boxes mo¿na rysowaæ ró¿ne ramki wokó³ podanego tekstu,
+pocz±wszy od komentarzy C a skoñczywszy na skomplikowanym ascii art.
+Mo¿na równie¿ usuwaæ te ramki, nawet jesli zosta³y powa¿nie uszkodzone
+edycj± znajduj±cego siê w nich tekstu. Poniewa¿ mog± byæ otwarte z
+ka¿dej strony, mo¿na ich u¿yæ do tworzenia lokalnych komentarzy w
+jakimkolwiek jêzyku programowania. Za pomoc± edytora makr lub
+mapowania mo¿na ³atwo naprawiæ uszkodzone ramki. Mo¿na równie¿ ³atwo
+dodaæ nowe rodzaje ramek ró¿nego rodzaju, do³±czaj±c je do pliku
+konfiguracyjnego o otwartym formacie.
+
 
 ###########################################################################
 # useful macros
@@ -50,7 +46,7 @@ do pliku konfiguracyjnego o otwartym formacie.
 ###########################################################################
 
 %prep
-%setup
+%setup -q
 
 %build
 rm doc/boxes.1
@@ -58,24 +54,22 @@ rm src/boxes.h
 make GLOBALCONF=%cfgfile
 
 %install
-mkdir -p $RPM_BUILD_ROOT/%prefix/bin
-mkdir -p $RPM_BUILD_ROOT/%prefix/man/man1
-mkdir -p $RPM_BUILD_ROOT/%prefix/share
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1,%{_datadir}}
 
-install -m 0755 src/boxes      $RPM_BUILD_ROOT/%prefix/bin
-install -m 0644 doc/boxes.1    $RPM_BUILD_ROOT/%prefix/man/man1
-install -m 0644 boxes-config   $RPM_BUILD_ROOT/%cfgfile
+install src/boxes $RPM_BUILD_ROOT%{_bindir}
+install doc/boxes.1 $RPM_BUILD_ROOT%{_mandir}/man1
+install boxes-config $RPM_BUILD_ROOT/%cfgfile
 
 # write filelisting to /tmp
 find "$RPM_BUILD_ROOT" -type f -printf "/%P\n" > /tmp/FILES-%nvr
 
 %clean
-# delete stuff
-[ "$RPM_BUILD_ROOT" = "%defbr" -a -d "%defbr" ] && rm -rf %defbr
+rm -rf $RPM_BUILD_ROOT
 
 %files
-%defattr(-, root, root)
-/usr/bin/boxes
-/usr/man/man1/boxes.1
-%config /usr/share/boxes
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/boxes
+%{_prefix}/man/man1/boxes.1
+%config %{_datadir}/boxes
 %doc COPYING README
This page took 0.565172 seconds and 4 git commands to generate.