Compare commits

...
Sign in to create a new pull request.

11 commits

Author SHA1 Message Date
35e535356a Forgot to take orphan package process... 2009-07-27 07:45:01 +00:00
Jesse Keating
12cf9e008b - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 2009-07-27 06:38:05 +00:00
47bbbdbafb Mass rebuild 2009-02-24 05:19:23 +00:00
46ba6763ea - 1.0.3 2008-12-17 09:37:05 +00:00
529bd85237 - Rebuild against gcc43 2008-02-11 17:33:32 +00:00
3303fa5e4e Icon path fix for desktop-file-utils 0.14+ 2007-12-04 17:28:06 +00:00
45d3f61484 - 1.0.2 2007-08-29 15:51:43 +00:00
1c9b12b573 more fix... 2007-08-21 18:49:09 +00:00
d04cba4639 Fix date 2007-08-21 18:48:06 +00:00
522c87ada5 Mass rebuild (17/26) 2007-08-21 18:45:57 +00:00
ca928f72e8 - Fri Aug 3
28 packages (out of 39 packages I maintain)
Well, now I got somewhat tired...
2007-08-03 11:21:54 +00:00
5 changed files with 3 additions and 88 deletions

View file

@ -1 +0,0 @@
urlgfe-1.0.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: urlgfe
# $Id$
NAME := urlgfe
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

3
dead.package Normal file
View file

@ -0,0 +1,3 @@
2009-07-27 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp>
Renamed to uget, which has been in Fedora since 2009-05-04

View file

@ -1 +0,0 @@
9a5284665e09cac3397c3ea5d7baf6d8 urlgfe-1.0.tar.gz

View file

@ -1,65 +0,0 @@
Name: urlgfe
Version: 1.0
Release: 1%{?dist}
Summary: Urlgfe download manager
Group: Applications/Internet
License: LGPL
URL: http://urlget.sourceforge.net/
Source0: http://superb-west.dl.sourceforge.net/sourceforge/urlget/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: curl-devel
BuildRequires: expat-devel
BuildRequires: gtk2-devel
BuildRequires: krb5-devel
BuildRequires: pcre-devel
BuildRequires: desktop-file-utils
%description
Urlgfe is a download manager that uses GTK+2 ,libcurl, and pcre.
It allows you to classify URLs before downloading them, and
allows you to import URLs from HTML files. Every category has
an independent configuration that can be inherited by
each download in that category.
%prep
%setup -q
%build
%configure
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf $RPM_BUILD_ROOT
%{__make} install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -c -p"
desktop-file-install \
--delete-original \
--vendor fedora \
--remove-category Application \
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
$RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop
for f in [A-Z]* ; do \
%{__sed} -i.encoding -e 's|\r||g' $f
done
%{find_lang} %{name}
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS COPYING COPYRIGHT ChangeLog NEWS
%doc README
%{_bindir}/%{name}
%{_datadir}/pixmaps/%{name}*.png
%{_datadir}/applications/fedora-%{name}.desktop
%changelog
* Wed Nov 29 2006 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.0-1
- Initial packaging to import to Fedora Extras.