Date: Sun, 25 Aug 2002 09:50:04 -0700 (PDT) From: Sergei Kolobov <skolobov@globcon.net> To: freebsd-ports@FreeBSD.org Subject: Re: ports/41864: [PATCH] mail/getmail port: simplify Makefile Message-ID: <200208251650.g7PGo4cS024220@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/41864; it has been noted by GNATS. From: Sergei Kolobov <skolobov@globcon.net> To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/41864: [PATCH] mail/getmail port: simplify Makefile Date: Sun, 25 Aug 2002 20:41:05 +0400 Reply from the port maintainer: ----- Forwarded message from Anders Andersson <anders@hack.org> ----- Date: Sat, 24 Aug 2002 22:25:15 +0200 From: Anders Andersson <anders@hack.org> To: Sergei Kolobov <sergei@kolobov.com> Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: [PATCH] mail/getmail port: simplify Makefile Message-ID: <20020824202515.GB82664@sushi.sanyusan.se> References: <20020821223319.756.qmail@outpost.globcon.net> In-Reply-To: <20020821223319.756.qmail@outpost.globcon.net> On Wed, Aug 21, 2002 at 10:33:19PM -0000, Sergei Kolobov wrote: > > >Submitter-Id: current-users > >Originator: Sergei Kolobov > >Organization: > >Confidential: no > >Synopsis: [PATCH] mail/getmail port: simplify Makefile > >Severity: non-critical > >Priority: low > >Category: ports > >Class: change-request > >Release: FreeBSD 4.6-STABLE i386 > >Environment: > System: FreeBSD outpost.globcon.net 4.6-STABLE FreeBSD 4.6-STABLE #0: Thu Aug 1 02:44:26 MSD 2002 sgk@outpost.globcon.net:/data/FreeBSD/obj/data/FreeBSD/src/sys/OUTPOST i386 > >Description: > Use EXAMPLESDIR to slightly simplify Makefile > >How-To-Repeat: > Patch included. > >Fix: > --- getmail.patch begins here --- > diff -ruN getmail.orig/Makefile getmail/Makefile > --- getmail.orig/Makefile Wed Aug 21 13:26:02 2002 > +++ getmail/Makefile Wed Aug 21 13:28:14 2002 > @@ -17,6 +17,8 @@ > USE_REINPLACE= yes > NO_BUILD= yes > > +DOCS= CHANGELOG docs.txt faq.txt getmail.txt > + > post-patch: > @${REINPLACE_CMD} -e 's!/usr/lib/getmail!${DATADIR}!' \ > -e 's!`which python`!${PYTHON_CMD}!' ${WRKSRC}/getmail > @@ -25,12 +27,11 @@ > ${INSTALL_SCRIPT} ${WRKSRC}/getmail ${PREFIX}/bin > @${MKDIR} ${DATADIR} > ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${DATADIR} > - @${MKDIR} ${PREFIX}/share/examples/getmail > - ${INSTALL_DATA} ${WRKSRC}/getmailrc-example \ > - ${PREFIX}/share/examples/getmail > + @${MKDIR} ${EXAMPLEDIR} > + ${INSTALL_DATA} ${WRKSRC}/getmailrc-example ${EXAMPLEDIR} > .if !defined(NOPORTDOCS) > @${MKDIR} ${DOCSDIR} > -.for file in CHANGELOG docs.txt faq.txt getmail.txt > +.for file in ${DOCS} > ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} > .endfor > .endif > --- getmail.patch ends here --- This has my approval as MAINTAINER to commit. Anders -- Anders Andersson <anders at hack.org> ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200208251650.g7PGo4cS024220>