diff options
author | John Marino <marino@FreeBSD.org> | 2016-09-14 05:39:41 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2016-09-14 05:39:41 +0000 |
commit | 82b54533ff80f287758aa84fe83c6b2c1e178da0 (patch) | |
tree | ffb408aa97398771490b991b3c3ba89903d08eb8 /polish | |
parent | fc96875fc51ba3d3cabceef8fb617356331782bb (diff) |
polish/fortunepl: Use fortune_strfile instead of strfile(8) and mark BROKEN
This removes the dependency on the games distribution.
Unfortunately, it's also unfetchable so it's also been marked BROKEN for
this reason.
Notes
Notes:
svn path=/head/; revision=422111
Diffstat (limited to 'polish')
-rw-r--r-- | polish/fortunepl/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/polish/fortunepl/Makefile b/polish/fortunepl/Makefile index 0798bd66c878..d3c50c551abd 100644 --- a/polish/fortunepl/Makefile +++ b/polish/fortunepl/Makefile @@ -14,13 +14,11 @@ PATCHFILES= fortunes-pl_${PORTVERSION}.freebsd.pl \ MAINTAINER= ports@FreeBSD.org COMMENT= Lot of funny Polish fortune files -.if exists(/usr/games/strfile) -STRCMD= /usr/games/strfile -.elif exists(/usr/bin/strfile) -STRCMD= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif +BROKEN= unfetchable + +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile +STRCMD= ${LOCALBASE}/bin/fortune_strfile + WRKSRC= ${WRKDIR}/fortunes-pl-${PORTVERSION}.orig FORTUNES= 7thguard advocacy apcoh argante bajki bok cnp cows \ @@ -35,12 +33,14 @@ FORTUNES= 7thguard advocacy apcoh argante bajki bok cnp cows \ znaki_zodiaku do-patch: - ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.freebsd.pl ${WRKSRC}/freebsd.pl - ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.filozofia ${WRKSRC}/filozofia + ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.freebsd.pl \ + ${WRKSRC}/freebsd.pl + ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.filozofia \ + ${WRKSRC}/filozofia do-build: .for FILE in ${FORTUNES} - @${STRCMD} ${WRKSRC}/${FILE} + ${STRCMD} ${WRKSRC}/${FILE} .endfor do-install: |