diff options
author | steve <steve@FreeBSD.org> | 1999-08-22 03:44:30 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-08-22 03:44:30 +0000 |
commit | 94f4339e9b96cedfd48b2c54f5e98a4ca3aeb73d (patch) | |
tree | 0e012eb817148dad6ab1fccec65ee15d9ece82d4 /audio/gnome-audio/files | |
parent | 1f4e520f9a5fe654ba12cd57c49418d76d455a48 (diff) | |
download | FreeBSD-ports-94f4339e9b96cedfd48b2c54f5e98a4ca3aeb73d.zip FreeBSD-ports-94f4339e9b96cedfd48b2c54f5e98a4ca3aeb73d.tar.gz |
Honor $(PREFIX) on install.
PR: 12781 (5 of 19)
Submitted by: Ade Lovett <ade@lovett.com>
Diffstat (limited to 'audio/gnome-audio/files')
-rw-r--r-- | audio/gnome-audio/files/patch-aa | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/audio/gnome-audio/files/patch-aa b/audio/gnome-audio/files/patch-aa index f503576..905fd58 100644 --- a/audio/gnome-audio/files/patch-aa +++ b/audio/gnome-audio/files/patch-aa @@ -1,17 +1,22 @@ ---- sounds/Makefile.orig Wed Feb 24 22:19:09 1999 -+++ sounds/Makefile Sat Mar 6 15:20:39 1999 -@@ -6,10 +6,10 @@ +--- sounds/Makefile.orig Wed Feb 24 14:19:09 1999 ++++ sounds/Makefile Mon Jul 12 11:24:27 1999 +@@ -1,15 +1,13 @@ +-prefix=$(shell gnome-config --prefix) +- + all: + + install: install-files install-default-links install-files: for I in $(shell find . -name '*.wav'); do \ - install -d $(prefix)/share/sounds/`dirname $$I`; \ - install -m444 $$I $(prefix)/share/sounds/$$I; \ -+ mkdir -p $(prefix)/share/gnome/sounds/`dirname $$I`; \ -+ ${INSTALL_DATA} $$I $(prefix)/share/gnome/sounds/$$I; \ ++ mkdir -p $(PREFIX)/share/gnome/sounds/`dirname $$I`; \ ++ ${INSTALL_DATA} $$I $(PREFIX)/share/gnome/sounds/$$I; \ done install-default-links: - ln -sf startup3.wav $(prefix)/share/sounds/login.wav - ln -sf shutdown1.wav $(prefix)/share/sounds/logout.wav -+ ln -sf startup3.wav $(prefix)/share/gnome/sounds/startup.wav -+ ln -sf shutdown1.wav $(prefix)/share/gnome/sounds/logout.wav ++ ln -sf startup3.wav $(PREFIX)/share/gnome/sounds/startup.wav ++ ln -sf shutdown1.wav $(PREFIX)/share/gnome/sounds/logout.wav |