f22b2212e6
- add HOMEPAGE, another distsite, NEED_VERSION and some more docs - respect CC and CFLAGS - move RESDIR from share to share/netatalk - move examples from lib/netatalk to share/examples/netatalk - remove the need for having the source tree installed, just use the headers in /usr/include/netatalk
21 lines
604 B
Plaintext
21 lines
604 B
Plaintext
--- man/man8/Makefile.orig Tue Feb 20 12:16:10 1996
|
|
+++ man/man8/Makefile Wed Aug 9 08:31:14 2000
|
|
@@ -11,14 +11,14 @@
|
|
all :
|
|
|
|
install : all
|
|
- -mkdir ${MANDIR}/man8
|
|
+ -mkdir ${DESTDIR}${MANDIR}/man8
|
|
for i in ${SRC} ; do \
|
|
- rm -f ${MANDIR}/man8/$$i; \
|
|
+ rm -f ${DESTDIR}${MANDIR}/man8/$$i; \
|
|
sed -e s@:DESTDIR:@${DESTDIR}@ -e s@:SBINDIR:@${SBINDIR}@ \
|
|
-e s@:BINDIR:@${BINDIR}@ -e s@:RESDIR:@${RESDIR}@ \
|
|
-e s@:ETCDIR:@${ETCDIR}@ -e s@:LIBDIR:@${LIBDIR}@ \
|
|
-e s@:INCDIR:@${INCDIR}@ \
|
|
- < $$i > ${MANDIR}/man8/$$i; \
|
|
+ < $$i > ${DESTDIR}${MANDIR}/man8/$$i; \
|
|
done
|
|
|
|
clean :
|