Compare commits
25 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
20939e024d | ||
|
|
025e281360 | ||
|
|
3703e1da64 | ||
|
|
0fd275e329 | ||
| cd88a02fc2 | |||
|
|
b52543b72f | ||
|
|
175c46f382 | ||
|
|
854cfc63a2 | ||
|
|
311c971e3f | ||
|
|
71b1a7e2ee | ||
|
|
9963a72212 | ||
|
|
440e000201 | ||
|
|
7562551d57 | ||
|
|
13906e3327 | ||
| 687e1f495e | |||
|
|
d8812f9fa3 | ||
|
|
c8f7151eb7 | ||
|
|
2712932a47 | ||
|
|
d7fcda5427 | ||
|
|
786c79fe35 | ||
|
|
92f90be3b3 | ||
|
|
ae34b95564 | ||
|
|
9196ca6eff | ||
|
|
f041fca60c | ||
|
|
534e1f8b99 |
7 changed files with 1 additions and 124 deletions
|
|
@ -1,2 +0,0 @@
|
|||
emyller_star.svg
|
||||
xvarstar-0.9.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: xvarstar
|
||||
# $Id$
|
||||
NAME := xvarstar
|
||||
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)
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Orphaned for 6+ weeks
|
||||
|
|
@ -1 +0,0 @@
|
|||
xvarstar-0_9-3_fc8:HEAD:xvarstar-0.9-3.fc8.src.rpm:1225104213
|
||||
2
sources
2
sources
|
|
@ -1,2 +0,0 @@
|
|||
1502cba8cc7c570ec928d44573ff39cd emyller_star.svg
|
||||
9d42b1516dc487e57e1d6a1c25fd8820 xvarstar-0.9.tar.gz
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=XVarStar
|
||||
Comment=Search through GCVS Catalogue
|
||||
Exec=xvarstar
|
||||
Icon=xvarstar
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Education;Astronomy;Science;
|
||||
|
|
@ -1,90 +0,0 @@
|
|||
Name: xvarstar
|
||||
Version: 0.9
|
||||
Release: 6%{?dist}
|
||||
Summary: Astronomical program used for searching GCVS
|
||||
|
||||
Group: Applications/Engineering
|
||||
License: GPLv2+
|
||||
URL: http://virtus.freeshell.org/%{name}/
|
||||
Source0: http://virtus.freeshell.org/%{name}/%{name}-%{version}.tar.gz
|
||||
Source1: %{name}.desktop
|
||||
# Public Domain icon
|
||||
Source2: http://openclipart.org/people/emyller/emyller_star.svg
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
%if 0%{?rhel}
|
||||
BuildRequires: openmotif-devel
|
||||
%else
|
||||
BuildRequires: lesstif-devel
|
||||
%endif
|
||||
|
||||
%description
|
||||
XVarStar is a astronomical program written for variable star observers, and is
|
||||
used for searching GCVS catalogue. It allows searching by following criteria:
|
||||
-star name
|
||||
-magnitude
|
||||
-type
|
||||
-constellation
|
||||
-amplitude
|
||||
-This searching criteria can be combined so one can search for example all
|
||||
variable stars located in Andromeda constellation and with magnitude
|
||||
brighter than 5.00.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags} CFLAGS="%{optflags}"
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" \
|
||||
sysconfdir="$RPM_BUILD_ROOT%{_sysconfdir}"
|
||||
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
|
||||
desktop-file-install --dir $RPM_BUILD_ROOT%{_datadir}/applications %{SOURCE1} --vendor=fedora
|
||||
install -Dpm 0644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps/xvarstar.svg
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc COPYING README
|
||||
%{_bindir}/%{name}
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/pixmaps/xvarstar.svg
|
||||
%{_datadir}/applications/fedora-%{name}.desktop
|
||||
|
||||
%config(noreplace) %{_sysconfdir}/%{name}.conf
|
||||
|
||||
%changelog
|
||||
* Tue Mar 24 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 0.9-6
|
||||
- Fix summary
|
||||
- Add icon
|
||||
- Fix categories
|
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Mon Oct 27 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 0.9-4
|
||||
- Grab right Motif implementation
|
||||
- Remove the broken patch, fix sysconfdir path with make option
|
||||
- Honor optflags
|
||||
|
||||
* Sun Sep 7 2008 <mmahut@fedoraproject.org> - 0.9-3
|
||||
- Fixing license tag at FUDCon Brno 2008
|
||||
|
||||
* Sat Jun 28 2008 <telimektar1er@gmail.com> - 0.9-2
|
||||
- Removed encoding section from the .desktop and renaming of the patch
|
||||
|
||||
* Fri May 2 2008 <telimektar1er@gmail.com> - 0.9-1
|
||||
- Initial Package
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue