diff options
author | ryoon <ryoon@pkgsrc.org> | 2011-03-29 09:56:25 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2011-03-29 09:56:25 +0000 |
commit | a3dec181c0c00fc46f3dcea975abdd6bd6f9a5fa (patch) | |
tree | 4da218cbb8d4ba62437b82fe4885a482e980b1f5 | |
parent | 5c72320fdd2bca51c1c4b812940fa08e522113c2 (diff) | |
download | pkgsrc-a3dec181c0c00fc46f3dcea975abdd6bd6f9a5fa.tar.gz |
* Fix build (using deprecated gtk functions)
* Remove unnecessary white space from DESCR.
* Set LICENSE.
-rw-r--r-- | games/kanatest/DESCR | 2 | ||||
-rw-r--r-- | games/kanatest/Makefile | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/games/kanatest/DESCR b/games/kanatest/DESCR index 137e87ee64b..3224f21d126 100644 --- a/games/kanatest/DESCR +++ b/games/kanatest/DESCR @@ -13,5 +13,5 @@ During test the Kanatest displays randomly selected kana char (respecting mode and lesson) and waits for user answer expected as romaji equivalent. This process continues until all questions will be answered or all questions will be answered correctly (depends on options). At the end of test a short -info about drilling time and correctness ratio is displayed. +info about drilling time and correctness ratio is displayed. The results are stored and user can review his performance in any time. diff --git a/games/kanatest/Makefile b/games/kanatest/Makefile index e418e2fade7..8c6fba033c4 100644 --- a/games/kanatest/Makefile +++ b/games/kanatest/Makefile @@ -1,23 +1,27 @@ -# $NetBSD: Makefile,v 1.5 2011/01/13 13:37:46 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2011/03/29 09:56:25 ryoon Exp $ DISTNAME= kanatest-0.4.8 PKGREVISION= 4 CATEGORIES= games MASTER_SITES= http://clayo.org/kanatest/ +LICENSE= gnu-gpl-v2 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://clayo.org/kanatest/ -COMMENT= A flash-card program to memorise Japanese kana +COMMENT= Flash-card program to memorise Japanese kana PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= yes USE_TOOLS+= gmake msgfmt pkg-config +BUILDLINK_TRANSFORM+= rm:-DGTK_DISABLE_DEPRECATED + post-build: cd ${WRKSRC}/po && for a in *.po; do msgfmt -o $${a%.po}.mo $$a; done .include "../../devel/gettext-lib/buildlink3.mk" +.include "../../sysutils/desktop-file-utils/desktopdb.mk" .include "../../textproc/libxml2/buildlink3.mk" .include "../../x11/gtk2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |