2005-11-21 19:21:25 +01:00
|
|
|
#
|
2007-08-29 20:30:26 +02:00
|
|
|
# gPodder - A media aggregator and podcast client
|
2013-03-05 16:38:48 +01:00
|
|
|
# Copyright (c) 2005-2013 Thomas Perl and the gPodder Team
|
2007-08-29 20:30:26 +02:00
|
|
|
#
|
|
|
|
# gPodder is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# gPodder 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
2005-11-21 19:21:25 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
|
2012-02-23 20:38:55 +01:00
|
|
|
BINFILE = bin/gpodder
|
|
|
|
MANPAGE = share/man/man1/gpodder.1
|
2009-09-13 23:37:23 +02:00
|
|
|
|
2012-02-23 20:38:55 +01:00
|
|
|
GPODDER_SERVICE_FILE=share/dbus-1/services/org.gpodder.service
|
2010-01-08 01:58:15 +01:00
|
|
|
GPODDER_SERVICE_FILE_IN=$(addsuffix .in,$(GPODDER_SERVICE_FILE))
|
|
|
|
|
2012-02-23 20:38:55 +01:00
|
|
|
GPODDER_DESKTOP_FILE=share/applications/gpodder.desktop
|
2011-04-11 20:06:06 +02:00
|
|
|
GPODDER_DESKTOP_FILE_IN=$(addsuffix .in,$(GPODDER_DESKTOP_FILE))
|
2012-02-23 20:38:55 +01:00
|
|
|
GPODDER_DESKTOP_FILE_H=$(addsuffix .h,$(GPODDER_DESKTOP_FILE_IN))
|
2011-04-11 20:06:06 +02:00
|
|
|
|
2012-02-25 15:38:15 +01:00
|
|
|
MESSAGES = po/messages.pot
|
|
|
|
POFILES = $(wildcard po/*.po)
|
|
|
|
LOCALEDIR = share/locale
|
|
|
|
MOFILES = $(patsubst po/%.po,$(LOCALEDIR)/%/LC_MESSAGES/gpodder.mo, $(POFILES))
|
|
|
|
|
|
|
|
UIFILES=$(wildcard share/gpodder/ui/gtk/*.ui)
|
|
|
|
UIFILES_H=$(subst .ui,.ui.h,$(UIFILES))
|
2013-04-23 18:39:45 +02:00
|
|
|
QMLFILES=$(wildcard share/gpodder/ui/qml/*.qml \
|
|
|
|
share/gpodder/ui/qml/harmattan/org/gpodder/qmlui/*.qml \
|
|
|
|
share/gpodder/ui/qml/sailfish/org/gpodder/qmlui/*.qml)
|
2012-02-25 15:38:15 +01:00
|
|
|
GETTEXT_SOURCE=$(wildcard src/gpodder/*.py \
|
|
|
|
src/gpodder/gtkui/*.py \
|
|
|
|
src/gpodder/gtkui/interface/*.py \
|
|
|
|
src/gpodder/gtkui/desktop/*.py \
|
|
|
|
src/gpodder/qmlui/*.py \
|
|
|
|
src/gpodder/webui/*.py \
|
|
|
|
src/gpodder/plugins/*.py \
|
|
|
|
share/gpodder/extensions/*.py)
|
|
|
|
|
|
|
|
GETTEXT_SOURCE += $(UIFILES_H)
|
|
|
|
GETTEXT_SOURCE += $(QMLFILES)
|
|
|
|
GETTEXT_SOURCE += $(wildcard bin/*)
|
|
|
|
GETTEXT_SOURCE += $(GPODDER_DESKTOP_FILE_H)
|
|
|
|
|
2006-04-13 12:10:33 +02:00
|
|
|
DESTDIR ?= /
|
2007-03-17 13:58:49 +01:00
|
|
|
PREFIX ?= /usr
|
2006-04-13 12:10:33 +02:00
|
|
|
|
2010-02-13 02:52:25 +01:00
|
|
|
PYTHON ?= python
|
2012-02-23 20:38:55 +01:00
|
|
|
HELP2MAN ?= help2man
|
2010-02-13 02:52:25 +01:00
|
|
|
|
2005-11-21 19:21:25 +01:00
|
|
|
##########################################################################
|
|
|
|
|
2006-04-08 08:50:20 +02:00
|
|
|
help:
|
2012-02-23 20:38:55 +01:00
|
|
|
@cat tools/make-help.txt
|
2006-07-30 15:17:27 +02:00
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
|
2009-02-25 14:23:03 +01:00
|
|
|
unittest:
|
2012-08-13 22:30:14 +02:00
|
|
|
LC_ALL=C PYTHONPATH=src/ $(PYTHON) -m gpodder.unittests
|
2008-04-06 02:19:03 +02:00
|
|
|
|
2007-03-07 15:53:05 +01:00
|
|
|
release: distclean
|
2010-02-13 02:52:25 +01:00
|
|
|
$(PYTHON) setup.py sdist
|
2005-11-21 19:21:25 +01:00
|
|
|
|
2012-02-25 17:12:45 +01:00
|
|
|
releasetest: unittest $(GPODDER_DESKTOP_FILE) $(POFILES)
|
2011-04-11 20:06:06 +02:00
|
|
|
desktop-file-validate $(GPODDER_DESKTOP_FILE)
|
2012-02-25 17:12:45 +01:00
|
|
|
sh tools/i18n/validate.sh
|
2008-01-22 10:28:09 +01:00
|
|
|
|
2010-01-08 01:58:15 +01:00
|
|
|
$(GPODDER_SERVICE_FILE): $(GPODDER_SERVICE_FILE_IN)
|
|
|
|
sed -e 's#__PREFIX__#$(PREFIX)#' $< >$@
|
|
|
|
|
2012-02-23 20:38:55 +01:00
|
|
|
$(GPODDER_DESKTOP_FILE): $(GPODDER_DESKTOP_FILE_IN) $(POFILES)
|
|
|
|
intltool-merge -d -u po $< $@
|
2011-04-11 20:06:06 +02:00
|
|
|
|
|
|
|
$(GPODDER_DESKTOP_FILE_IN).h: $(GPODDER_DESKTOP_FILE_IN)
|
|
|
|
intltool-extract --quiet --type=gettext/ini $<
|
|
|
|
|
|
|
|
install: messages $(GPODDER_SERVICE_FILE) $(GPODDER_DESKTOP_FILE)
|
2013-03-11 15:31:17 +01:00
|
|
|
$(PYTHON) setup.py install --root=$(DESTDIR) --prefix=$(PREFIX) --optimize=1
|
2007-03-27 19:56:59 +02:00
|
|
|
|
2005-11-21 19:21:25 +01:00
|
|
|
##########################################################################
|
|
|
|
|
2010-01-08 01:41:58 +01:00
|
|
|
manpage: $(MANPAGE)
|
2005-11-21 19:21:25 +01:00
|
|
|
|
2010-01-08 01:41:58 +01:00
|
|
|
$(MANPAGE): src/gpodder/__init__.py $(BINFILE)
|
2012-02-23 20:38:55 +01:00
|
|
|
$(HELP2MAN) --name="$(shell $(PYTHON) setup.py --description)" -N $(BINFILE) >$(MANPAGE)
|
2008-04-06 02:19:03 +02:00
|
|
|
|
2010-01-08 01:41:58 +01:00
|
|
|
##########################################################################
|
2006-03-31 15:00:54 +02:00
|
|
|
|
2012-02-25 15:38:15 +01:00
|
|
|
messages: $(MOFILES)
|
|
|
|
|
|
|
|
%.po: $(MESSAGES)
|
|
|
|
msgmerge --silent $@ $< --output-file=$@
|
|
|
|
|
|
|
|
$(LOCALEDIR)/%/LC_MESSAGES/gpodder.mo: po/%.po
|
|
|
|
@mkdir -p $(@D)
|
|
|
|
msgfmt $< -o $@
|
2006-03-31 15:00:54 +02:00
|
|
|
|
2012-02-25 15:38:15 +01:00
|
|
|
%.ui.h: %.ui
|
|
|
|
intltool-extract --quiet --type=gettext/glade $<
|
2006-03-31 15:00:54 +02:00
|
|
|
|
2012-02-25 15:38:15 +01:00
|
|
|
$(MESSAGES): $(GETTEXT_SOURCE)
|
|
|
|
xgettext -LPython -k_:1 -kN_:1 -kN_:1,2 -kn_:1,2 -o $(MESSAGES) $^
|
2007-06-21 16:15:37 +02:00
|
|
|
|
2010-01-08 01:41:58 +01:00
|
|
|
##########################################################################
|
2007-06-21 16:15:37 +02:00
|
|
|
|
2010-07-02 21:44:34 +02:00
|
|
|
# This only works in a Git working commit, and assumes that the local Git
|
|
|
|
# HEAD has already been pushed to the main repository. It's mainly useful
|
|
|
|
# for the gPodder maintainer to quickly generate a commit link that can be
|
|
|
|
# posted online in bug trackers and mailing lists.
|
|
|
|
|
|
|
|
headlink:
|
|
|
|
@echo http://gpodder.org/commit/`git show-ref HEAD | head -c8`
|
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
|
2005-11-21 19:21:25 +01:00
|
|
|
clean:
|
2010-02-13 02:52:25 +01:00
|
|
|
$(PYTHON) setup.py clean
|
2012-02-23 20:38:55 +01:00
|
|
|
find src/ '(' -name '*.pyc' -o -name '*.pyo' ')' -exec rm '{}' +
|
|
|
|
find src/ -type d -name '__pycache__' -exec rm -r '{}' +
|
|
|
|
find share/gpodder/ui/ -name '*.ui.h' -exec rm '{}' +
|
2013-09-29 21:29:30 +02:00
|
|
|
rm -f MANIFEST .coverage messages.mo po/*.mo
|
2012-02-23 20:38:55 +01:00
|
|
|
rm -f $(GPODDER_SERVICE_FILE)
|
|
|
|
rm -f $(GPODDER_DESKTOP_FILE)
|
|
|
|
rm -f $(GPODDER_DESKTOP_FILE_H)
|
2012-02-25 15:38:15 +01:00
|
|
|
rm -rf build $(LOCALEDIR)
|
2006-04-05 17:00:31 +02:00
|
|
|
|
2005-11-21 19:21:25 +01:00
|
|
|
distclean: clean
|
|
|
|
rm -rf dist
|
2010-01-08 01:41:58 +01:00
|
|
|
|
2005-11-21 19:21:25 +01:00
|
|
|
##########################################################################
|
|
|
|
|
2012-02-23 20:38:55 +01:00
|
|
|
.PHONY: help unittest release releasetest install manpage clean distclean messages headlink
|
2005-11-21 19:21:25 +01:00
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
|
|
|
|
|