2009-10-13 17:24:01 +00:00
|
|
|
Name: yapet
|
|
|
|
Version: 0.6
|
2010-06-30 16:20:14 +00:00
|
|
|
Release: 3%{?dist}
|
2009-10-13 17:24:01 +00:00
|
|
|
Summary: Curses based password encryption tool
|
|
|
|
|
|
|
|
Group: Applications/Productivity
|
|
|
|
License: GPLv3+ with exceptions
|
|
|
|
URL: http://www.guengel.ch/myapps/%{name}/
|
|
|
|
Source0: http://www.guengel.ch/myapps/%{name}/downloads/%{name}-%{version}.tar.gz
|
|
|
|
# patch from: http://bugs.guengel.ch/show_bug.cgi?id=26
|
|
|
|
Patch0: %{name}_gcc44-0.6.diff
|
|
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildRequires: openssl-devel
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: gettext
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
YAPET is a text based password manager using the Blowfish encryption algorithm.
|
|
|
|
Because of its small footprint and very few library dependencies, it is suited
|
|
|
|
for installing on desktop and server systems alike.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch0 -p1
|
|
|
|
|
|
|
|
for i in README DESIGN
|
|
|
|
do
|
|
|
|
iconv -f iso-8859-1 -t utf-8 $i |sed 's|\r||g' > $i.utf8
|
|
|
|
touch -c -r $i $i.utf8
|
|
|
|
mv $i.utf8 $i
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --enable-terminal-title --enable-csv2yapet --enable-pwgen --disable-build-doc --disable-source-doc --disable-install-doc
|
|
|
|
make %{?_smp_mflags} CXXFLAGS+="%{optflags}" CFLAGS+="%{optflags}"
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
make install INSTALL="install -p" DESTDIR=%{buildroot}
|
|
|
|
rm -rf %{buildroot}/%{_datadir}/applications/
|
|
|
|
%find_lang %{name}
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
|
|
|
|
%files -f %{name}.lang
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc AUTHORS COPYING DESIGN LICENSE NEWS README THANKS TODO
|
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_bindir}/csv2%{name}
|
|
|
|
%{_mandir}/man*/*%{name}*
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2010-06-30 16:20:14 +00:00
|
|
|
* Wed Jun 30 2010 Simon Wesp <cassmdodiah@fedoraproject.org> - 0.6-3
|
|
|
|
- customized for EL-6
|
|
|
|
|
2009-10-13 17:24:01 +00:00
|
|
|
* Sun Oct 12 2009 Simon Wesp <cassmdodiah@fedoraproject.org> - 0.6-2
|
|
|
|
- Correct License and patch integration
|
|
|
|
- Add LICENSE to DOC
|
|
|
|
|
|
|
|
* Sun Oct 12 2009 Simon Wesp <cassmdodiah@fedoraproject.org> - 0.6-1
|
|
|
|
- Initial Package build
|