diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2016-09-14 19:50:46 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2016-09-14 19:50:46 +0000 |
commit | cc9b2efba46f34f81fcc465a84b1fe9dd27eff61 (patch) | |
tree | ec6270397becb70ebcaa5c6615c9cd29a5684b63 /polish | |
parent | 08c3ba3e1a632e1a7d6e70e57d13147a06434bf6 (diff) | |
download | ports-cc9b2efba46f34f81fcc465a84b1fe9dd27eff61.tar.gz ports-cc9b2efba46f34f81fcc465a84b1fe9dd27eff61.zip |
Notes
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 d3c50c551abd..0798bd66c878 100644 --- a/polish/fortunepl/Makefile +++ b/polish/fortunepl/Makefile @@ -14,11 +14,13 @@ PATCHFILES= fortunes-pl_${PORTVERSION}.freebsd.pl \ MAINTAINER= ports@FreeBSD.org COMMENT= Lot of funny Polish fortune files -BROKEN= unfetchable - -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile -STRCMD= ${LOCALBASE}/bin/fortune_strfile - +.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 WRKSRC= ${WRKDIR}/fortunes-pl-${PORTVERSION}.orig FORTUNES= 7thguard advocacy apcoh argante bajki bok cnp cows \ @@ -33,14 +35,12 @@ 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: |