diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-06 10:18:10 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-06 10:18:10 +0000 |
commit | fcdef642cee4965bce43a5a20ff71e7a52865a49 (patch) | |
tree | bf6fc90bdf4eaaabe774771af249ad41cc3845b9 | |
parent | 391fc41753637e88d8b780d48ff82318ba1c0284 (diff) |
- Support staging
- Convert to new OPTIONS framework
- Rename test target to regression-test in order for tinderbox to run target
automatically
Notes
Notes:
svn path=/head/; revision=342999
-rw-r--r-- | games/p5-Games-Bingo-Bot/Makefile | 20 | ||||
-rw-r--r-- | games/p5-Games-Bingo-Bot/pkg-plist | 3 |
2 files changed, 11 insertions, 12 deletions
diff --git a/games/p5-Games-Bingo-Bot/Makefile b/games/p5-Games-Bingo-Bot/Makefile index faaf738cfedf..c542cfbecee0 100644 --- a/games/p5-Games-Bingo-Bot/Makefile +++ b/games/p5-Games-Bingo-Bot/Makefile @@ -16,17 +16,17 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Games::Bingo::Bot.3 +PORTEXAMPLES= bingobot.pl + +OPTIONS_DEFINE= EXAMPLES + +.include <bsd.port.options.mk> -NO_STAGE= yes post-install: -.ifndef(NOPORTDOCS) - @${ECHO_MSG} "===> Installing example for ${PKGNAME}" - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_SCRIPT} ${WRKSRC}/bin/bingobot.pl ${EXAMPLESDIR} -.endif - -test: - @cd ${WRKSRC}; make test + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/bin/bingobot.pl ${STAGEDIR}${EXAMPLESDIR} + +regression-test: build + @cd ${WRKSRC} && ${MAKE} -s test .include <bsd.port.mk> diff --git a/games/p5-Games-Bingo-Bot/pkg-plist b/games/p5-Games-Bingo-Bot/pkg-plist index 51e8c5924f27..c85658f0dd5e 100644 --- a/games/p5-Games-Bingo-Bot/pkg-plist +++ b/games/p5-Games-Bingo-Bot/pkg-plist @@ -1,7 +1,6 @@ %%SITE_PERL%%/Games/Bingo/Bot.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Games/Bingo/Bot/.packlist -%%PORTDOCS%%%%EXAMPLESDIR%%/bingobot.pl -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% +%%PERL5_MAN3%%/Games::Bingo::Bot.3.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Games/Bingo/Bot @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Games/Bingo @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Games |