1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
#
# gPodder - A media aggregator and podcast client
# Copyright (c) 2005-2014 Thomas Perl and the gPodder Team
#
# 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/>.
#
#
##########################################################################
BINFILE = bin/gpodder
MANPAGE = share/man/man1/gpodder.1
GPODDER_SERVICE_FILE=share/dbus-1/services/org.gpodder.service
GPODDER_SERVICE_FILE_IN=$(addsuffix .in,$(GPODDER_SERVICE_FILE))
GPODDER_DESKTOP_FILE=share/applications/gpodder.desktop
GPODDER_DESKTOP_FILE_TMP=$(addsuffix .tmp,$(GPODDER_DESKTOP_FILE))
GPODDER_DESKTOP_FILE_IN=$(addsuffix .in,$(GPODDER_DESKTOP_FILE))
GPODDER_DESKTOP_FILE_H=$(addsuffix .h,$(GPODDER_DESKTOP_FILE_IN))
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))
QMLFILES=$(wildcard share/gpodder/ui/qml/*.qml \
share/gpodder/ui/qml/harmattan/org/gpodder/qmlui/*.qml)
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)
DESTDIR ?= /
PREFIX ?= /usr
PYTHON ?= python
HELP2MAN ?= help2man
##########################################################################
help:
@cat tools/make-help.txt
##########################################################################
unittest:
LC_ALL=C PYTHONPATH=src/ $(PYTHON) -m gpodder.unittests
release: distclean
$(PYTHON) setup.py sdist
releasetest: unittest $(GPODDER_DESKTOP_FILE) $(POFILES)
desktop-file-validate $(GPODDER_DESKTOP_FILE)
sh tools/i18n/validate.sh
$(GPODDER_SERVICE_FILE): $(GPODDER_SERVICE_FILE_IN)
sed -e 's#__PREFIX__#$(PREFIX)#' $< >$@
$(GPODDER_DESKTOP_FILE): $(GPODDER_DESKTOP_FILE_IN) $(POFILES)
sed -e 's#__PREFIX__#$(PREFIX)#' $< >$(GPODDER_DESKTOP_FILE_TMP)
intltool-merge -d -u po $(GPODDER_DESKTOP_FILE_TMP) $@
rm -f $(GPODDER_DESKTOP_FILE_TMP)
$(GPODDER_DESKTOP_FILE_IN).h: $(GPODDER_DESKTOP_FILE_IN)
intltool-extract --quiet --type=gettext/ini $<
install: messages $(GPODDER_SERVICE_FILE) $(GPODDER_DESKTOP_FILE)
$(PYTHON) setup.py install --root=$(DESTDIR) --prefix=$(PREFIX) --optimize=1
##########################################################################
manpage: $(MANPAGE)
$(MANPAGE): src/gpodder/__init__.py $(BINFILE)
LC_ALL=C $(HELP2MAN) --name="$(shell $(PYTHON) setup.py --description)" -N $(BINFILE) >$(MANPAGE)
##########################################################################
messages: $(MOFILES)
%.po: $(MESSAGES)
msgmerge --silent $@ $< --output-file=$@
$(LOCALEDIR)/%/LC_MESSAGES/gpodder.mo: po/%.po
@mkdir -p $(@D)
msgfmt $< -o $@
%.ui.h: %.ui
intltool-extract --quiet --type=gettext/glade $<
$(MESSAGES): $(GETTEXT_SOURCE)
xgettext --from-code=utf-8 -LPython -k_:1 -kN_:1 -kN_:1,2 -kn_:1,2 -o $(MESSAGES) $^
##########################################################################
# 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`
##########################################################################
clean:
$(PYTHON) setup.py clean
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 '{}' +
rm -f MANIFEST .coverage messages.mo po/*.mo
rm -f $(GPODDER_SERVICE_FILE)
rm -f $(GPODDER_DESKTOP_FILE)
rm -f $(GPODDER_DESKTOP_FILE_H)
rm -rf build $(LOCALEDIR)
distclean: clean
rm -rf dist
##########################################################################
.PHONY: help unittest release releasetest install manpage clean distclean messages headlink
##########################################################################
|