From: Yaroslav Halchenko Date: Tue, 5 Oct 2010 18:15:50 +0000 (-0400) Subject: Adding icons for "Imaging" and "Electrophysiology" X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;ds=sidebyside;h=d77a45fc9a9eb51957e27c3b30bb8d4b5f3a856d;p=neurodebian.git Adding icons for "Imaging" and "Electrophysiology" --- diff --git a/artwork/electrophysiology.svg b/artwork/electrophysiology.svg new file mode 100644 index 0000000..afc69d7 --- /dev/null +++ b/artwork/electrophysiology.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/artwork/mri.png b/artwork/mri.png new file mode 100644 index 0000000..2c21b19 Binary files /dev/null and b/artwork/mri.png differ diff --git a/debian/control b/debian/control index fcb49ed..035009e 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: science Priority: optional Maintainer: NeuroDebian Team Uploaders: Michael Hanke , Yaroslav Halchenko -Build-Depends: debhelper (>= 7.0.50~), xcftools, help2man, inkscape +Build-Depends: debhelper (>= 7.0.50~), xcftools, help2man, inkscape, imagemagick Standards-Version: 3.9.1 Homepage: http://neuro.debian.net Vcs-Browser: http://git.debian.org/?p=pkg-exppsy/neurodebian.git diff --git a/debian/rules b/debian/rules index 198b519..e18173a 100755 --- a/debian/rules +++ b/debian/rules @@ -1,5 +1,7 @@ #!/usr/bin/make -f +ICONS_SIZE=32 + # one ring to rule them all ... %: dh $@ @@ -12,8 +14,12 @@ override_dh_auto_build:: xcf2png -o build/wallpaper/neurodebian.png artwork/wallpaper_hotbrain.xcf # icons [ ! -d build/icons ] && mkdir -p build/icons - inkscape artwork/icon.svg -w 32 -h 32 -e build/icons/neurodebian.png + inkscape artwork/icon.svg -w $(ICONS_SIZE) -h $(ICONS_SIZE) \ + -e build/icons/neurodebian.png + inkscape artwork/electrophysiology.svg -w $(ICONS_SIZE) -h $(ICONS_SIZE) \ + -e build/icons/neurodebian-electrophysiology.png cp artwork/icon.svg build/icons/neurodebian.svg + convert -geometry $(ICONS_SIZE)x$(ICONS_SIZE) artwork/mri.png build/icons/neurodebian-imaging.png # manpages [ ! -d build/man ] && mkdir -p build/man help2man -h '--verbose-help' --no-info tools/backport-dsc \