diff options
author | Renato Botelho <garga@FreeBSD.org> | 2013-11-01 07:35:00 +0800 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2013-11-01 07:35:00 +0800 |
commit | 47fbd1127418abf4aa52ce61b2d72e06f2be3f02 (patch) | |
tree | 6bff924ee889903af3e118ae69a92d975e828380 /ftp/ftpmirror/files | |
parent | 838b86e1ce79e566fe5e50aa3ce4b54f2cdc2d69 (diff) | |
download | freebsd-ports-gnome-47fbd1127418abf4aa52ce61b2d72e06f2be3f02.tar.gz freebsd-ports-gnome-47fbd1127418abf4aa52ce61b2d72e06f2be3f02.tar.zst freebsd-ports-gnome-47fbd1127418abf4aa52ce61b2d72e06f2be3f02.zip |
. Support STAGE
. Simplify Makefile
Diffstat (limited to 'ftp/ftpmirror/files')
-rw-r--r-- | ftp/ftpmirror/files/patch-Makefile.in | 35 |
1 files changed, 30 insertions, 5 deletions
diff --git a/ftp/ftpmirror/files/patch-Makefile.in b/ftp/ftpmirror/files/patch-Makefile.in index 8491ac1429af..b29c6a91c6fd 100644 --- a/ftp/ftpmirror/files/patch-Makefile.in +++ b/ftp/ftpmirror/files/patch-Makefile.in @@ -1,6 +1,30 @@ ---- Makefile.in.orig Wed Apr 20 08:24:33 2005 -+++ Makefile.in Wed Apr 20 08:26:40 2005 -@@ -40,10 +40,13 @@ +--- Makefile.in.orig 1997-09-26 11:43:03.000000000 -0300 ++++ Makefile.in 2013-10-30 11:19:37.000000000 -0200 +@@ -23,28 +23,31 @@ + rm -f *.old *.bak *.core Makefile + + # install:: ${BINDIR}/farm +-install:: ${BINDIR}/rotate +-install:: ${BINDIR}/ftpmirror +-install:: ${SYSCONFDIR}/ftpmirror.cf-sample ++install:: ${DESTDIR}${BINDIR}/rotate ++install:: ${DESTDIR}${BINDIR}/ftpmirror ++install:: ${DESTDIR}${SYSCONFDIR}/ftpmirror.cf-sample + +-${BINDIR}/rotate: rotate ++${DESTDIR}${BINDIR}/rotate: rotate + ${INSTALL_PROGRAM} $? $@ + +-${BINDIR}/farm: farm ++${DESTDIR}${BINDIR}/farm: farm + ${INSTALL_PROGRAM} $? $@ + +-${BINDIR}/ftpmirror: ftpmirror ++${DESTDIR}${BINDIR}/ftpmirror: ftpmirror + ${INSTALL_PROGRAM} $? $@ + +-${SYSCONFDIR}/ftpmirror.cf-sample: ftpmirror.cf-sample ++${DESTDIR}${SYSCONFDIR}/ftpmirror.cf-sample: ftpmirror.cf-sample ${INSTALL_DATA} $? $@ # for subdirectories... @@ -9,9 +33,10 @@ @ for d in ${SUBDIR} ; do \ ( echo "make $@ in $$d..." && cd $$d && make $@ ) ; \ done -+ + +install:: Fan/Makefile + ( echo "make pure_install in Fan..." && cd Fan && make pure_install ) ; \ - ++ # Fan subdirectory requres Makefile first. Fan/Makefile:: Fan/Makefile.PL + cd Fan; ${PERL} Makefile.PL |