[Fedora-i18n-bugs] [libfep/f17] Initial import.

Daiki Ueno ueno at fedoraproject.org
Mon Feb 13 00:58:40 UTC 2012


commit 000ce1457ec8b12d264d12ce42958a548e734bf0
Author: Daiki Ueno <ueno at unixuser.org>
Date:   Mon Feb 13 09:58:35 2012 +0900

    Initial import.

 .gitignore  |    1 +
 libfep.spec |   80 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources     |    1 +
 3 files changed, 82 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..aa1d8a5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/libfep-0.0.4.tar.gz
diff --git a/libfep.spec b/libfep.spec
new file mode 100644
index 0000000..6399d20
--- /dev/null
+++ b/libfep.spec
@@ -0,0 +1,80 @@
+Name:		libfep
+Version:	0.0.4
+Release:	1%{?dist}
+Summary:	Library to implement FEP (front end processor) on ANSI terminals
+
+License:	BSD and GPLv3+
+Group:		System Environment/Libraries
+URL:		http://github.com/ueno/libfep
+Source0:	http://cloud.github.com/downloads/ueno/libfep/%{name}-%{version}.tar.gz
+
+# FIXME switch to libgee-0.8 once this package is ready for the new libgee API
+BuildRequires:	pkgconfig(gee-1.0)
+BuildRequires:	pkgconfig(ncurses)
+BuildRequires:	gobject-introspection-devel
+BuildRequires:	intltool
+
+%description
+The libfep project aims to provide a server and a library to implement
+input method FEP (front end processor), running on ANSI compliant
+terminals.
+
+
+%package	devel
+Summary:	Development files for %{name}
+Requires:	%{name}%{?_isa} = %{version}-%{release}
+
+%description	devel
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+
+%prep
+%setup -q
+
+
+%build
+# needed to regenerate GIR
+GIO_LIBS=`pkg-config gio-2.0 gmodule-2.0 --libs`
+export GIO_LIBS
+%configure --disable-static
+make %{?_smp_mflags}
+
+
+%install
+make install DESTDIR=$RPM_BUILD_ROOT
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f '{}' ';'
+cp -p fep/README README.fep
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%doc README README.fep COPYING fep/COPYING.BSD ChangeLog
+%{_libdir}/*.so.*
+%{_libdir}/girepository-1.0/Fep*.typelib
+%{_bindir}/fep*
+%{_mandir}/man1/fep*
+
+%files devel
+%{_includedir}/*
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/*.pc
+%{_datadir}/gir-1.0/Fep*.gir
+%{_datadir}/vala/vapi/*
+
+
+%changelog
+* Fri Feb 10 2012 Daiki Ueno <dueno at redhat.com> - 0.0.4-1
+- new upstream release
+- install manpages
+- add ChangeLog to %%doc and drop empty %%doc from -devel subpackage
+- single quote {} of the find command
+- drop vala-tools from BR
+
+* Fri Feb  3 2012 Daiki Ueno <dueno at redhat.com> - 0.0.1-1
+- initial packaging for Fedora
+
diff --git a/sources b/sources
index e69de29..a28d255 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+07a6be377fc08659dfbbde5474595b83  libfep-0.0.4.tar.gz


More information about the i18n-bugs mailing list