- Add missing repository files (AUTHORS COPYING NEWS README). They need to
authoralpar
Fri, 13 Oct 2006 15:14:18 +0000
changeset 16470e3c3646283
parent 163 443bc769b344
child 165 2cd447b0bd3a
- Add missing repository files (AUTHORS COPYING NEWS README). They need to
be filled with info.
- RPM support
AUTHORS
COPYING
Makefile.am
NEWS
README
configure.ac
glemon.spec.in
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/AUTHORS	Fri Oct 13 15:14:18 2006 +0000
     1.3 @@ -0,0 +1,1 @@
     1.4 +To be filled
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/COPYING	Fri Oct 13 15:14:18 2006 +0000
     2.3 @@ -0,0 +1,1 @@
     2.4 +To be filled
     3.1 --- a/Makefile.am	Fri Oct 13 13:53:44 2006 +0000
     3.2 +++ b/Makefile.am	Fri Oct 13 15:14:18 2006 +0000
     3.3 @@ -78,7 +78,12 @@
     3.4  EXTRA_DIST = \
     3.5  	$(IMAGES) \
     3.6  	guipixbufs.h \
     3.7 +	glemon.spec \
     3.8 +	AUTHORS \
     3.9 +	COPYING \
    3.10  	LICENSE \
    3.11 +	NEWS \
    3.12 +	README \
    3.13  	ABOUT-NLS
    3.14  
    3.15  MRPROPERFILES = \
    3.16 @@ -138,4 +143,7 @@
    3.17  	$(MAKE) $(AM_MAKEFLAGS) maintainer-clean
    3.18  	-rm -f $(MRPROPERFILES)
    3.19  
    3.20 +rpm: dist
    3.21 +	rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
    3.22 +
    3.23  .PHONY: mrproper
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/NEWS	Fri Oct 13 15:14:18 2006 +0000
     4.3 @@ -0,0 +1,1 @@
     4.4 +To be filled
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/README	Fri Oct 13 15:14:18 2006 +0000
     5.3 @@ -0,0 +1,1 @@
     5.4 +To be filled
     6.1 --- a/configure.ac	Fri Oct 13 13:53:44 2006 +0000
     6.2 +++ b/configure.ac	Fri Oct 13 15:14:18 2006 +0000
     6.3 @@ -1,6 +1,6 @@
     6.4  dnl Process this file with autoconf to produce a configure script.
     6.5  AC_PREREQ([2.59])
     6.6 -AC_INIT([gLEMON], [svn-head], [etik-ol@cs.elte.hu], [glemon])
     6.7 +AC_INIT([gLEMON], [svnhead], [etik-ol@cs.elte.hu], [glemon])
     6.8  AC_CONFIG_AUX_DIR([build-aux])
     6.9  AC_CONFIG_MACRO_DIR([m4])
    6.10  AM_INIT_AUTOMAKE([-Wall -Werror foreign])
    6.11 @@ -56,6 +56,7 @@
    6.12  
    6.13  AC_CONFIG_FILES([
    6.14  Makefile
    6.15 +glemon.spec
    6.16  po/Makefile.in
    6.17  m4/Makefile
    6.18  ])
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/glemon.spec.in	Fri Oct 13 15:14:18 2006 +0000
     7.3 @@ -0,0 +1,42 @@
     7.4 +Summary: A graph editor for the LEMON Graph Format
     7.5 +Name: @PACKAGE_TARNAME@
     7.6 +Version: @PACKAGE_VERSION@
     7.7 +Release: 1
     7.8 +License: Boost
     7.9 +URL: http://lemon.cs.elte.hu
    7.10 +Source0: %{name}-%{version}.tar.gz
    7.11 +Group: Development/Libraries
    7.12 +BuildRoot: %{_tmppath}/%{name}-root
    7.13 +Requires: lemon
    7.14 +Requires: gtkmm24 >= 2.6
    7.15 +Requires: libgnomecanvasmm >= 2.6.0
    7.16 +BuildRequires: lemon-devel
    7.17 +BuildRequires: gtkmm24-devel >= 2.6
    7.18 +BuildRequires: libgnomecanvasmm-devel >= 2.6.0
    7.19 +
    7.20 +%description
    7.21 +glemon is a graphical editor for the LEMON Graph Format (.lgf)
    7.22 +
    7.23 +%prep
    7.24 +%setup -q
    7.25 +
    7.26 +%build
    7.27 +%configure
    7.28 +make
    7.29 +
    7.30 +%install
    7.31 +rm -rf $RPM_BUILD_ROOT
    7.32 +make DESTDIR=$RPM_BUILD_ROOT install
    7.33 +
    7.34 +%clean
    7.35 +rm -rf $RPM_BUILD_ROOT
    7.36 +
    7.37 +%post -p /sbin/ldconfig
    7.38 +
    7.39 +%postun -p /sbin/ldconfig
    7.40 +
    7.41 +%files
    7.42 +%defattr(-,root,root)
    7.43 +%{_bindir}/glemon
    7.44 +%{_datadir}/locale
    7.45 +%doc AUTHORS COPYING LICENSE NEWS README