2 # gPodder - A media aggregator and podcast client
3 # Copyright (c) 2005-2010 Thomas Perl and the gPodder Team
5 # gPodder is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # gPodder is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 ##########################################################################
23 MESSAGESPOT
=data
/messages.pot
25 UIFILES
=$(wildcard data
/ui
/*.ui \
26 data
/ui
/desktop
/*.ui \
29 UIFILES_H
=$(subst .ui
,.ui.h
,$(UIFILES
))
30 TRANSLATABLE_SOURCE
=$(wildcard src
/gpodder
/*.py \
31 src
/gpodder
/gtkui
/*.py \
32 src
/gpodder
/gtkui
/interface
/*.py \
33 src
/gpodder
/gtkui
/desktop
/*.py \
34 src
/gpodder
/gtkui
/maemo
/*.py \
35 src
/gpodder
/gtkui
/frmntl
/*.py
)
38 MANPAGE
=doc
/man
/gpodder
.1
40 GPODDER_ICON_THEME
=dist/gpodder
42 GPODDER_SERVICE_FILE
=data
/org.gpodder.service
43 GPODDER_SERVICE_FILE_IN
=$(addsuffix .in
,$(GPODDER_SERVICE_FILE
))
48 ##########################################################################
53 @echo
'make test run gpodder in local directory'
54 @echo
'make unittest run doctests + unittests'
55 @echo
'make mtest run gpodder (for maemo scratchbox)'
56 @echo
'make release create source tarball in "dist/"'
57 @echo
'make releasetest run some tests before the release'
58 @echo
'make install install gpodder into "$(PREFIX)"'
59 @echo
'make manpage update manpage (on release)'
60 @echo
'make messages update messages.pot + .po files + .mo files'
61 @echo
'make clean remove generated+temp+*.py{c,o} files'
62 @echo
'make distclean do a "make clean" + remove "dist/"'
64 @echo
'make install-git-menuitem Add shortcuts to your menu for this git checkout'
65 @echo
'make remove-git-menuitem Remove shortcuts created by "install-git-menuitem"'
67 ##########################################################################
70 @
# set xterm title to know what this window does ;)
71 @echo
-ne
'\033]0;gPodder console (make test)\007'
75 PYTHONPATH
=src
/ python
-m gpodder.unittests
78 @
# in maemo scratchbox, we need this for osso/hildon
79 run-standalone.sh python2.5
$(BINFILE
) --maemo
--verbose
88 desktop-file-validate data
/gpodder.desktop
89 make
-C data
/po validate
91 $(GPODDER_SERVICE_FILE
): $(GPODDER_SERVICE_FILE_IN
)
92 sed
-e
's#__PREFIX__#$(PREFIX)#' $< >$@
94 install: messages
$(GPODDER_SERVICE_FILE
)
95 python setup.py
install --root
=$(DESTDIR
) --prefix=$(PREFIX
)
97 ##########################################################################
101 $(MANPAGE
): src
/gpodder
/__init__.py
$(BINFILE
)
102 $(HELP2MAN
) --name
="A Media aggregator and Podcast catcher" -N
$(BINFILE
) >$(MANPAGE
)
104 ##########################################################################
106 messages
: $(MESSAGESPOT
)
109 data
/ui
/%.ui.h
: $(UIFILES
)
110 intltool-extract
--quiet
--type
=gettext
/glade
$(subst .ui.h
,.ui
,$@
)
112 $(MESSAGESPOT
): $(TRANSLATABLE_SOURCE
) $(UIFILES_H
) $(BINFILE
)
113 xgettext
-k_
:1 -kN_
:1 -kN_
:1,2 -o
$(MESSAGESPOT
) $(TRANSLATABLE_SOURCE
) $(UIFILES_H
) $(BINFILE
)
115 ##########################################################################
117 install-git-menuitem
:
118 doc
/dev
/install-desktopentry.sh
121 doc
/dev
/install-desktopentry.sh
--remove
124 rm -rf
$(GPODDER_ICON_THEME
)
125 mkdir
-p
$(GPODDER_ICON_THEME
)
126 python doc
/dev
/icon-theme
/list-icon-names.py
>$(GPODDER_ICON_THEME
)/names
127 (cd
$(GPODDER_ICON_THEME
) && \
128 python ..
/..
/doc
/dev
/icon-theme
/pack-icons.py
&& \
129 python ..
/..
/doc
/dev
/icon-theme
/create-index.py
>index.theme
&& \
132 ##########################################################################
135 python setup.py
clean
136 find src
/ -name
'*.pyc' -exec
rm '{}' \
;
137 find src
/ -name
'*.pyo' -exec
rm '{}' \
;
138 rm -f MANIFEST PKG-INFO
$(UIFILES_H
) data
/messages.pot~ data
/gpodder-??x??.png .coverage
$(GPODDER_SERVICE_FILE
)
140 make
-C data
/po
clean
143 fakeroot debian
/rules
clean
148 ##########################################################################
150 .PHONY
: all test unittest release releasetest
install manpage
clean distclean messages help install-git-menuitem remove-git-menuitem
152 ##########################################################################