diff options
author | 2019-04-19 18:42:13 +0200 | |
---|---|---|
committer | 2019-04-19 18:42:13 +0200 | |
commit | 05ffb1ec3d343fcc4749d00fae073fbabc797e73 (patch) | |
tree | 40b025e154d5b65a4675d1748b38f4788730e948 /media-radio/dxcc/files/dxcc-20190309-Makefile.patch | |
parent | dev-db/sqlite: Stabilize 3.27.2 on amd64/x86. (diff) | |
download | gentoo-05ffb1ec3d343fcc4749d00fae073fbabc797e73.tar.gz gentoo-05ffb1ec3d343fcc4749d00fae073fbabc797e73.tar.bz2 gentoo-05ffb1ec3d343fcc4749d00fae073fbabc797e73.zip |
media-radio/dxcc: Version bump
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
Diffstat (limited to 'media-radio/dxcc/files/dxcc-20190309-Makefile.patch')
-rw-r--r-- | media-radio/dxcc/files/dxcc-20190309-Makefile.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media-radio/dxcc/files/dxcc-20190309-Makefile.patch b/media-radio/dxcc/files/dxcc-20190309-Makefile.patch new file mode 100644 index 000000000000..fd7cc1f93fad --- /dev/null +++ b/media-radio/dxcc/files/dxcc-20190309-Makefile.patch @@ -0,0 +1,28 @@ +--- a/Makefile 2019-04-19 16:57:54.143313171 +0200 ++++ b/Makefile 2019-04-19 17:00:33.507620050 +0200 +@@ -4,19 +4,22 @@ + DESTDIR ?= /usr + + all: +- @echo -e "dxcc - make [install|uninstall|clean|dist] \nCheck README for help." + + install: +- install -d -v $(DESTDIR)/share/man/man1/ +- install -d -v $(DESTDIR)/share/dxcc/ ++ install -d $(DESTDIR)/share/man/man1/ ++ install -d $(DESTDIR)/share/dxcc/ ++ install -d $(DESTDIR)/share/pixmaps/ ++ install -d $(DESTDIR)/bin/ + install -m 0644 dxcc.1 $(DESTDIR)/share/man/man1/ + install -m 0644 earth.gif $(DESTDIR)/share/dxcc/ ++ install -m 0644 dxcc.png $(DESTDIR)/share/pixmaps + install -m 0755 dxcc $(DESTDIR)/bin/ + + uninstall: + rm -f $(DESTDIR)/bin/dxcc + rm -f $(DESTDIR)/share/man/man1/dxcc.1 + rm -f $(DESTDIR)/share/dxcc/earth.gif ++ rm -r $(DESTDIR)/share/pixmaps/dxcc.png + + clean: + rm -f *~ |