Skip to content

Commit

Permalink
Release v0.3.2 (See Changelog)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpeyron committed Aug 5, 2015
1 parent 174f5e8 commit ba1dcbd
Show file tree
Hide file tree
Showing 47 changed files with 9,281 additions and 4,837 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2015-08-03 21:13 remi 0.3.2
* Updated to wxWidgets 3.0.2 (was difficult with wxChecks and wxTreeCtrl changes...)
* Added italian langage thanks to Roberto BORIOTTI (bovirsu)
* Fixed some issues reported by Roberto BORIOTTI
* Fixed other bugs (show only diffs,...)
* Added legend menu
* Fixed build system
* Updated icon
* Upgraded about box to wxAboutBox

2008-09-29 18:46 remi 0.3.1
* Moved to wxWidgets 2.8
* Improved look'n feel on Linux
Expand Down
50 changes: 48 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SUBDIRS= lib src resources po
EXTRA_DIST = config.rpath m4/ChangeLog config.rpath config.rpath config.rpath \
EXTRA_DIST = config.rpath m4/ChangeLog config.rpath m4/ChangeLog config.rpath config.rpath config.rpath \
README \
COPYING \
AUTHORS \
Expand Down Expand Up @@ -36,10 +36,56 @@ EXTRA_DIST = config.rpath m4/ChangeLog config.rpath config.rpath config.rpath
doc/xmlTreeNav_en.html


deb:
old-deb:
ln -sf build/debian .
chmod +x debian/rules
dpkg-buildpackage -rfakeroot
fakeroot debian/rules clean


DEBSOURCEPKG=$(PACKAGE)_$(VERSION).orig.tar.gz
DEBSOURCEDIR=$(PACKAGE)-$(VERSION)
deb: dist
ln -sf build/debian .
@echo "Building Debian package..."; \
if test ! -d debian; then \
echo "The files needed for building a Debian package are not" \
"included by default in the distribution. To build a package, check" \
"out the project from source control."; \
exit 1; \
fi; \
mv $(PACKAGE)-$(VERSION).tar.gz $(DEBSOURCEPKG) && \
tar --extract --gunzip --file $(DEBSOURCEPKG) && \
mkdir -p $(DEBSOURCEDIR)/debian && \
cp \
debian/* \
$(DEBSOURCEDIR)/debian && \
cd $(DEBSOURCEDIR) && \
debuild --no-tgz-check -rfakeroot -D ; \
cd .. ; \
rm --force $(DEBSOURCEPKG); \
rm --recursive --force $(DEBSOURCEDIR)

deb-src: dist
ln -sf build/debian .
@echo "Building Debian package..."; \
if test ! -d debian; then \
echo "The files needed for building a Debian package are not" \
"included by default in the distribution. To build a package, check" \
"out the project from source control."; \
exit 1; \
fi; \
mv $(PACKAGE)-$(VERSION).tar.gz $(DEBSOURCEPKG) && \
tar --extract --gunzip --file $(DEBSOURCEPKG) && \
mkdir -p $(DEBSOURCEDIR)/debian && \
cp \
debian/* \
$(DEBSOURCEDIR)/debian && \
cd $(DEBSOURCEDIR) && \
debuild --no-tgz-check -rfakeroot -S -sa ; \
cd ..; \
rm --force $(DEBSOURCEPKG); \
rm --recursive --force $(DEBSOURCEDIR)


ACLOCAL_AMFLAGS = -I m4
Loading

0 comments on commit ba1dcbd

Please sign in to comment.