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/man1/Makefile.orig Tue Feb 20 12:16:24 1996
|
|
+++ man/man1/Makefile Wed Aug 9 08:27:36 2000
|
|
@@ -13,14 +13,14 @@
|
|
all :
|
|
|
|
install : all
|
|
- -mkdir ${MANDIR}/man1
|
|
+ -mkdir ${DESTDIR}${MANDIR}/man1
|
|
for i in ${SRC} ; do \
|
|
- rm -f ${MANDIR}/man1/$$i; \
|
|
+ rm -f ${DESTDIR}${MANDIR}/man1/$$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}/man1/$$i; \
|
|
+ < $$i > ${DESTDIR}${MANDIR}/man1/$$i; \
|
|
done
|
|
|
|
clean :
|