aboutsummaryrefslogtreecommitdiff
path: root/games/tuxpaint-fonts
diff options
context:
space:
mode:
authorAlejandro Pulver <alepulver@FreeBSD.org>2006-04-24 21:16:27 +0000
committerAlejandro Pulver <alepulver@FreeBSD.org>2006-04-24 21:16:27 +0000
commit58c9853c93d8b4efef83cb012b77aa6562d80702 (patch)
treea5d4e3f607a6ea4fc80876f8411d778f05304a26 /games/tuxpaint-fonts
parentaffa1eae3cacc9b85462de606556a3edd0487769 (diff)
downloadports-58c9853c93d8b4efef83cb012b77aa6562d80702.tar.gz
ports-58c9853c93d8b4efef83cb012b77aa6562d80702.zip
- Remove Georgian (ka) language because it is included with Tuxpaint
standard distribution. - Remove '@' from installation commands. Approved by: garga (mentor)
Notes
Notes: svn path=/head/; revision=160396
Diffstat (limited to 'games/tuxpaint-fonts')
-rw-r--r--games/tuxpaint-fonts/Makefile32
1 files changed, 12 insertions, 20 deletions
diff --git a/games/tuxpaint-fonts/Makefile b/games/tuxpaint-fonts/Makefile
index 95b7764d25dc..405e4b6a43de 100644
--- a/games/tuxpaint-fonts/Makefile
+++ b/games/tuxpaint-fonts/Makefile
@@ -11,49 +11,42 @@ CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMESUFFIX= -fonts
+DISTFILES= #
MAINTAINER= alepulver@FreeBSD.org
COMMENT= TuxPaint Localized Fonts
RUN_DEPENDS= tuxpaint:${PORTSDIR}/games/tuxpaint
-DISTFILES= #
NO_BUILD= yes
NO_WRKSUBDIR= yes
-# Available font languages
-LANGS= Chinese Chinese_Simplified Georgian Japanese Korean
-
-# Define distfiles for all languages
+# Available font languages.
+LANGS= Chinese Chinese_Simplified Japanese Korean
+# Define distfiles for all languages.
CHINESE_DISTFILES= ${PORTNAME}-ttf-chinese-2003.01.05
CHINESE_SIMPLIFIED_DISTFILES= ${PORTNAME}-ttf-chinese-simplified-2004.06.05
-GEORGIAN_DISTFILES= ${PORTNAME}-ttf-georgian-2005.03.24
JAPANESE_DISTFILES= ${PORTNAME}-ttf-japanese-2003.01.24
KOREAN_DISTFILES= ${PORTNAME}-ttf-korean-2002.12.05
-# Define language codes
-
+# Define language codes.
CHINESE_CODE= zh
CHINESE_SIMPLIFIED_CODE= zh_cn
-GEORGIAN_CODE= ka
JAPANESE_CODE= ja
KOREAN_CODE= ko
-# Generate options menu
-
+# Generate options menu.
.for l in ${LANGS}
OPTIONS+= ${l:U} "${l:S/_/ /} fonts" on
.endfor
-# Do not use the same OPTIONS directory as "games/tuxpaint"
-
+# Do not use the same OPTIONS directory as "games/tuxpaint".
LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX}
.include <bsd.port.pre.mk>
-# Set DISTFILES and PLIST_FILES according to OPTIONS
-
+# Set DISTFILES and PLIST_FILES according to OPTIONS.
.for l in ${LANGS:U}
. if !defined(WITHOUT_${l})
DISTFILES+= ${${l}_DISTFILES}${EXTRACT_SUFX}
@@ -61,15 +54,14 @@ PLIST_FILES+= %%DATADIR%%/fonts/locale/${${l}_CODE}.ttf
. endif
.endfor
-# Install seleted fonts
-
+# Install seleted fonts.
do-install:
- @${MKDIR} ${DATADIR}/fonts/locale
+ ${MKDIR} ${DATADIR}/fonts/locale
.for l in ${LANGS}
. if defined(WITH_${l:U})
- @${INSTALL_DATA} \
+ ${INSTALL_DATA} \
${WRKSRC}/${${l:U}_DISTFILES}/${${l:U}_CODE}.ttf \
- ${DATADIR}/fonts/locale
+ ${DATADIR}/fonts/locale
. endif
.endfor