-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://vcs.maemo.org/svn/omweather/trunk@3090 5aa3d57c-301e-0410-a7f2-8fec96c11689
- Loading branch information
Showing
20 changed files
with
949 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Vlad Vasiliev <[email protected]> | ||
Pavel Fialko <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0.1 | ||
* Inintial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
You will need Maemo develoment environment to build deb-package, | ||
or download deb-package from https://garage.maemo.org/projects/omweather/ | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# vim: set sw=4 ts=4 et: | ||
# | ||
# This file is part of omweather-gismeteo-ru-source | ||
# | ||
# Copyright (C) 2009 Vlad Vasiliev | ||
# Copyright (C) 2009 Pavel Fialko | ||
# for the code | ||
# | ||
# This software is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public License | ||
# as published by the Free Software Foundation; either version 2.1 of | ||
# the License, or (at your option) any later version. | ||
# | ||
# This software is distributed in the hope that it will be useful, but | ||
# WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public | ||
# License along with this software; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
# 02110-1301 USA | ||
|
||
SUBDIRS = src data | ||
|
||
EXTRA_DIST = autogen.sh \ | ||
debian/changelog \ | ||
debian/compat \ | ||
debian/copyright \ | ||
debian/control \ | ||
debian/rules |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
OMWeather gismeteo.ru source library | ||
|
||
Copyright(c) 2009 Vlad Vasiliev | ||
Copyright(c) 2009 Pavel Fialko |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
|
||
set -x | ||
glib-gettextize --copy --force | ||
libtoolize --automake --copy --force | ||
aclocal | ||
intltoolize --automake --copy --force | ||
autoconf --force | ||
autoheader --force | ||
automake --add-missing --copy --force-missing --foreign | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
AC_PREREQ(2.59) | ||
AC_INIT(omweather-gismeteo-ru-source, 0.1) | ||
AM_INIT_AUTOMAKE(omweather-gismeteo-ru-source, 0.1) | ||
AC_CONFIG_HEADER([src/config.h:src/config.h.in]) | ||
AC_CONFIG_SRCDIR([src/main.c]) | ||
AC_CANONICAL_HOST | ||
AC_GNU_SOURCE | ||
dnl Checks for programs. | ||
AC_PROG_CC | ||
AC_PROG_CPP | ||
AC_PROG_CXX | ||
AC_PROG_LN_S | ||
AC_PROG_RANLIB | ||
AC_PROG_LIBTOOL | ||
dnl Checks for header files. | ||
AC_HEADER_STDC | ||
AC_CHECK_HEADERS([stdlib.h]) | ||
dnl Checks for typedefs, structures, and compiler characteristics. | ||
AC_C_CONST | ||
AC_STRUCT_TM | ||
dnl Checks for library functions. | ||
AC_CHECK_FUNCS([memset]) | ||
AC_CHECK_FUNCS([strrchr]) | ||
AC_CHECK_FUNCS([strstr]) | ||
AC_FUNC_STRFTIME | ||
dnl glibc2 needs this | ||
AC_DEFINE([_XOPEN_SOURCE], [1], [glibc2 needs this]) | ||
dnl check packages | ||
PKG_CHECK_MODULES(GTK, [gtk+-2.0]) | ||
AC_SUBST(GTK_LIBS) | ||
AC_SUBST(GTK_CFLAGS) | ||
|
||
PKG_CHECK_MODULES(LIBXML2, [libxml-2.0 >= 2.6.16]) | ||
AC_SUBST(LIBXML2_LIBS) | ||
AC_SUBST(LIBXML2_CFLAGS) | ||
|
||
dnl Config files | ||
AC_CONFIG_FILES([Makefile | ||
src/Makefile | ||
data/Makefile]) | ||
dnl Produce output files | ||
AC_OUTPUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# vim: set sw=4 ts=4 et: | ||
# | ||
# This file is part of omweather-gismeteo-ru-source | ||
# | ||
# Copyright (C) 2009 Vlad Vasiliev | ||
# Copyright (C) 2009 Pavel Fialko | ||
# for the code | ||
# | ||
# This software is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public License | ||
# as published by the Free Software Foundation; either version 2.1 of | ||
# the License, or (at your option) any later version. | ||
# | ||
# This software is distributed in the hope that it will be useful, but | ||
# WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public | ||
# License along with this software; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
# 02110-1301 USA | ||
|
||
omweather_gismeteo_ru_sourcedir = $(datadir)/omweather/sources | ||
omweather_gismeteo_ru_source_DATA = gismeteo.ru.xml | ||
|
||
omweather_gismeteo_ru_source_dbdir = $(datadir)/omweather/db | ||
omweather_gismeteo_ru_source_db_DATA = gismeteo.ru.db | ||
|
||
copyright_iconsdir = $(datadir)/omweather/copyright_icons | ||
copyright_icons_DATA = gismeteo.ru.png | ||
|
||
|
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<source xmlns="https://garage.maemo.org/projects/omweather/"> | ||
<name>gismeteo.ru</name> | ||
<logo>gismeteo.ru.png</logo> | ||
<base>gismeteo.ru.db</base> | ||
<forecast url="http://wap.gismeteo.ru/gm/normal/node/prognoz_week/3/?field_wmo=%s&field_index=%s" /> | ||
<detail url="http://xml.weather.com/weather/local/%s?cm_ven=1CW&site=wx.com-bar&cm_ite=wx-cc&par=1CWFFv1.1.8&cm_pla=wx.com-bar&cm_cat=FFv1.1.8&unit=m&dayf=1&hbhf=12" /> | ||
<search url="http://xoap.weather.com/search/search?where=%s" /> | ||
<library>libomweather-gismeteo-ru-source.so</library> | ||
</source> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
omweather-gismeteo-ru-stations-db (0.1) unstable; urgency=low | ||
|
||
* Initial release. | ||
|
||
-- Vlad Vasiliev <[email protected]> Mon, 17 Aug 2009 19:53:20 +0200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
Source: omweather-gismeteo-ru-stations-db | ||
Section: user/accessories | ||
Priority: optional | ||
Maintainer: Vlad Vasiliev <[email protected]> | ||
Build-Depends: debhelper (>= 4.0.0), libxml2-dev, libgtk2.0-dev | ||
Standards-Version: 3.6.0 | ||
|
||
Package: omweather-gismeteo-ru-stations-db | ||
Architecture: any | ||
Depends: ${shlibs:Depends} | ||
Provides: omweather-stations-db | ||
Description: Stations database and source lib for gismeteo.ru | ||
for Other Maemo Weather | ||
© 2009 by Vlad Vasiliev and Pavel Fialko | ||
XB-Maemo-Icon-26: | ||
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 | ||
M6NDn51cofQAAAAASUVORK5CYII= | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
This file is part of omweather-weather-com-stations-db | ||
|
||
Copyright (C) 2009 Vlad Vasiliev | ||
Copyright (C) 2009 Pavel Fialko | ||
for the code | ||
|
||
This software is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public License | ||
as published by the Free Software Foundation; either version 2.1 of | ||
the License, or (at your option) any later version. | ||
|
||
This software is distributed in the hope that it will be useful, but | ||
WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
|
||
You should have received a copy of the GNU Lesser General Public | ||
License along with this software; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
02110-1301 USA | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
#!/usr/bin/make -f | ||
# -*- makefile -*- | ||
# Sample debian/rules that uses debhelper. | ||
# GNU copyright 1997 to 1999 by Joey Hess. | ||
|
||
# Uncomment this to turn on verbose mode. | ||
#export DH_VERBOSE=1 | ||
|
||
|
||
CFLAGS = -Wall -pedantic -DRELEASE | ||
|
||
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) | ||
CFLAGS += -O0 | ||
else | ||
CFLAGS += -O2 | ||
endif | ||
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) | ||
INSTALL_PROGRAM += -s | ||
endif | ||
|
||
configure: configure-stamp | ||
configure-stamp: | ||
dh_testdir | ||
# Add here commands to configure the package. | ||
CFLAGS="$(CFLAGS)" ./configure --prefix=/usr --disable-static | ||
touch configure-stamp | ||
|
||
build: build-stamp | ||
|
||
build-stamp: configure-stamp | ||
dh_testdir | ||
|
||
# Add here commands to compile the package. | ||
$(MAKE) | ||
|
||
touch build-stamp | ||
|
||
clean: | ||
dh_testdir | ||
dh_testroot | ||
rm -f build-stamp configure-stamp | ||
|
||
# Add here commands to clean up after the build process. | ||
-$(MAKE) clean | ||
|
||
dh_clean | ||
|
||
install: build | ||
dh_testdir | ||
dh_testroot | ||
dh_clean -k | ||
dh_installdirs | ||
|
||
# Add here commands to install the package | ||
$(MAKE) install DESTDIR=$(CURDIR)/debian/omweather-gismeteo-ru-stations-db | ||
|
||
|
||
# Build architecture-independent files here. | ||
binary-indep: build install | ||
# We have nothing to do by default. | ||
|
||
# Build architecture-dependent files here. | ||
binary-arch: build install | ||
dh_testdir | ||
dh_testroot | ||
# dh_installchangelogs | ||
# dh_installdocs | ||
# dh_installexamples | ||
# dh_install | ||
# dh_installmenu | ||
# dh_installdebconf | ||
# dh_installlogrotate | ||
# dh_installemacsen | ||
# dh_installpam | ||
# dh_installmime | ||
# dh_installinit | ||
# dh_installcron | ||
# dh_installinfo | ||
# dh_installman | ||
dh_link | ||
dh_strip | ||
dh_compress | ||
dh_fixperms | ||
# dh_perl | ||
# dh_python | ||
dh_makeshlibs | ||
dh_installdeb | ||
dh_shlibdeps | ||
dh_gencontrol | ||
dh_md5sums | ||
dh_builddeb | ||
|
||
binary: binary-indep binary-arch | ||
.PHONY: build clean binary-indep binary-arch binary install configure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# vim: set sw=4 ts=4 et: | ||
# | ||
# This file is part of omweather-gismeteo-ru-source | ||
# | ||
# Copyright (C) 2009 Vlad Vasiliev | ||
# Copyright (C) 2009 Pavel Fialko | ||
# for the code | ||
# | ||
# This software is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public License | ||
# as published by the Free Software Foundation; either version 2.1 of | ||
# the License, or (at your option) any later version. | ||
# | ||
# This software is distributed in the hope that it will be useful, but | ||
# WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public | ||
# License along with this software; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
# 02110-1301 USA | ||
|
||
libhhdir = /usr/lib/omweather | ||
libhh_LTLIBRARIES = libomweather-gismeteo-ru-source.la | ||
libomweather_gismeteo_ru_source_la_SOURCES = main.c main.h | ||
libomweather_gismeteo_ru_source_la_CFLAGS = $(GTK_CFLAGS) $(LIBXML2_CFLAGS) \ | ||
-Wall -pedantic | ||
libomweather_gismeteo_ru_source_la_LDFLAGS = -module -avoid-version | ||
libomweather_gismeteo_ru_source_la_LIBADD = $(GTK_LIBS) $(LIBXML2_LIBS) | ||
|
||
clean-local: | ||
$(RM) *.core core core.* stamp-*.h *~ |
Oops, something went wrong.