diff options
author | danfe <danfe@FreeBSD.org> | 2014-06-10 14:31:31 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2014-06-10 14:31:31 +0800 |
commit | 8d638d3e194f9ecc3fcc0e6f86a7fc4292ec0718 (patch) | |
tree | f2e4a404dc51b3cc8ba08976a12353d69acef3d5 /games | |
parent | bf2cb22849f7842703260e5e59898ca49263231c (diff) | |
download | freebsd-ports-gnome-8d638d3e194f9ecc3fcc0e6f86a7fc4292ec0718.tar.gz freebsd-ports-gnome-8d638d3e194f9ecc3fcc0e6f86a7fc4292ec0718.tar.zst freebsd-ports-gnome-8d638d3e194f9ecc3fcc0e6f86a7fc4292ec0718.zip |
Stagify the port; fix Makefile header.
Diffstat (limited to 'games')
-rw-r--r-- | games/speak/Makefile | 3 | ||||
-rw-r--r-- | games/speak/files/patch-Makefile | 15 |
2 files changed, 16 insertions, 2 deletions
diff --git a/games/speak/Makefile b/games/speak/Makefile index dd7f00dcd8b4..b25e06177565 100644 --- a/games/speak/Makefile +++ b/games/speak/Makefile @@ -1,4 +1,4 @@ -# Created by: freebsd@spatula.net +# Created by: Nicklas Johnson <freebsd@spatula.net> # $FreeBSD$ PORTNAME= speak @@ -11,5 +11,4 @@ COMMENT= Generates random middle-management synergy speak CONFLICTS= espeak-1.[0-9]* -NO_STAGE= yes .include <bsd.port.mk> diff --git a/games/speak/files/patch-Makefile b/games/speak/files/patch-Makefile new file mode 100644 index 000000000000..cc15fb2c8b80 --- /dev/null +++ b/games/speak/files/patch-Makefile @@ -0,0 +1,15 @@ +--- Makefile.orig 2000-02-16 03:45:31 +0800 ++++ Makefile +@@ -11,9 +11,9 @@ speak: speak.o + ${CC} -o speak speak.o + + install: all +- ${INSTALL} -c -s -o root -g games -m 755 speak ${BINDIR} +- ${INSTALL} -d -o root -g games -m 755 ${SPEAKDIR} +- ${INSTALL} -c -o root -g games -m 644 speak.nouns speak.actions speak.wrk speak.leadins README ${SPEAKDIR} ++ ${INSTALL} -s -m 755 speak ${DESTDIR}${BINDIR} ++ ${INSTALL} -d -m 755 ${DESTDIR}${SPEAKDIR} ++ ${INSTALL} -m 644 speak.nouns speak.actions speak.wrk speak.leadins README ${DESTDIR}${SPEAKDIR} + + clean: + rm -f *.core *.o speak |