- Take maintainership Removed file(s): - pkg-plist Makefile changed: +LICENSE= AL2 +PORTDATA= * +PORTDOCS= +.include <bsd.port.options.mk> +post-install: +.if ${PORT_OPTIONS:MDOCS} Changed: pkg-descr Generated and tested manually, tested with port test and with RedPorts (all RELEASES, CLANG), sent with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) How-To-Repeat: portlint -A looks fine. port test: clean Build log https://redports.org/buildarchive/20121029231916-30691/
Responsible Changed From-To: freebsd-ports-bugs->jhale I'll take it.
The PORTDATA macro shouldn't be used here. It should only be used if the installed data is optional and wrapped by: .if !defined(NOPORTDATA) foo .endif If a user has NOPORTDATA defined, then the plist will be broken. You should just keep the pkg-plist as is and remove the PORTDATA line. I believe we have discussed this before. Also for pkg-descr, we don't need all of that extra stuff explaining the project's goals and such. A simple explaination of what the port does is sufficient. -- Jason E. Hale - jhale@ FreeBSD Ports Committer KDE/FreeBSD Team
On Sun, 04 Nov 2012 04:30:52 -0500 "Jason E. Hale" <jhale@freebsd.org> wrote: > The PORTDATA macro shouldn't be used here. It should only be used if the > installed data is optional and wrapped by: > .if !defined(NOPORTDATA) > foo > .endif > > If a user has NOPORTDATA defined, then the plist will be broken. You should > just keep the pkg-plist as is and remove the PORTDATA line. I believe we have > discussed this before. > > Also for pkg-descr, we don't need all of that extra stuff explaining the > project's goals and such. A simple explaination of what the port does is > sufficient. > Thanks for yours suggestions i have used this.
State Changed From-To: open->closed Committed, with minor changes. Thanks!