From 7c99b00469019876b7a6028b48544b9bbba7b63f Mon Sep 17 00:00:00 2001 From: Ace002 Date: Wed, 4 Jan 2017 22:41:33 +0700 Subject: [PATCH] figlet 222 what about this?? is it okay? --- app-misc/figlet/figlet-222.recipe | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/app-misc/figlet/figlet-222.recipe b/app-misc/figlet/figlet-222.recipe index c40ffaa22..637863f16 100644 --- a/app-misc/figlet/figlet-222.recipe +++ b/app-misc/figlet/figlet-222.recipe @@ -17,8 +17,8 @@ ARCHITECTURES="x86_gcc2 x86 x86_64" PROVIDES=" figlet = $portVersion - cmd:chkfont cmd:figlet =$portVersion + cmd:chkfont cmd:figlist cmd:showfigfonts " @@ -36,22 +36,17 @@ BUILD_PREREQUIRES=" BUILD() { - MANDIR=$manDir/man6 - DEFAULTFONTDIR=$dataDir/figlet/fonts - DESTDIR=$binDir - mkdir -p ${DESTDIR} ${MANDIR} ${DEFAULTFONTDIR} - make DESTDIR=${DESTDIR} MANDIR=${MANDIR} \ - DEFAULTFONTDIR=${DEFAULTFONTDIR} + MAN=$manDir/man6 + FONTS=$dataDir/figlet/fonts + DEST=$binDir + mkdir -p ${MAN} ${FONTS} + make MAN=${MAN} FONTS=${FONTS} } INSTALL() { - MANDIR=$manDir/man6 - DEFAULTFONTDIR=$dataDir/figlet/fonts - DESTDIR=$binDir - make install DESTDIR=${DESTDIR} MANDIR=${MANDIR} \ - DEFAULTFONTDIR=${DEFAULTFONTDIR} - chmod 755 ${DESTDIR}/showfigfonts - chmod 755 ${DESTDIR}/figlist - chmod 755 ${DESTDIR}/chkfont + make install MAN=${MAN} FONTS=${FONTS} + chmod 755 $binDir/showfigfonts + chmod 755 $binDir/figlist + chmod 755 $binDir/chkfont }