diff options
author | David Seifert <soap@gentoo.org> | 2017-01-22 21:23:45 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-22 21:24:05 +0100 |
commit | 8e5d752ff04dc5377eae5369b1e2ab53303b5e1f (patch) | |
tree | 5427f8c68cde7098d4efb02bbedcb3db3bb3cf4f /dev-cpp/pngpp/files | |
parent | dev-texlive/texlive-langczechslovak: add dep on tl-luatex, bug #606802 (diff) | |
download | gentoo-8e5d752ff04dc5377eae5369b1e2ab53303b5e1f.tar.gz gentoo-8e5d752ff04dc5377eae5369b1e2ab53303b5e1f.tar.bz2 gentoo-8e5d752ff04dc5377eae5369b1e2ab53303b5e1f.zip |
dev-cpp/pngpp: Version bump to 0.2.9
* Bump EAPI to 6
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-cpp/pngpp/files')
-rw-r--r-- | dev-cpp/pngpp/files/pngpp-0.2.9-DESTDIR.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dev-cpp/pngpp/files/pngpp-0.2.9-DESTDIR.patch b/dev-cpp/pngpp/files/pngpp-0.2.9-DESTDIR.patch new file mode 100644 index 000000000000..ee9b29ef7558 --- /dev/null +++ b/dev-cpp/pngpp/files/pngpp-0.2.9-DESTDIR.patch @@ -0,0 +1,15 @@ +Build system does not honour $(DESTDIR) + +--- a/Makefile ++++ b/Makefile +@@ -54,8 +54,8 @@ + uninstall: uninstall-headers uninstall-docs + + install-headers: +- mkdir -p $(PREFIX)/include/png++ +- cp $(headers) $(PREFIX)/include/png++ ++ mkdir -p $(DESTDIR)$(PREFIX)/include/png++ ++ cp $(headers) $(DESTDIR)$(PREFIX)/include/png++ + + uninstall-headers: + rm -rf $(PREFIX)/include/png++ |