diff options
author | obache <obache@pkgsrc.org> | 2011-02-25 11:04:56 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-02-25 11:04:56 +0000 |
commit | a3a0a0009e6f6f1572761029d3dab57fdb60fe22 (patch) | |
tree | 214598566ef2f45cb05552e038cb447f4a2069b9 /misc/howm/Makefile | |
parent | df148167909a2ea09151d92ca19966fc53f0d999 (diff) | |
download | pkgsrc-a3a0a0009e6f6f1572761029d3dab57fdb60fe22.tar.gz |
Import howm-1.3.9.1 as misc/howm from pkgsrc-wip-jp.
Based on PR#44553 by ISIHARA Takanori.
howm: Write fragmentarily and read collectively.
Howm is a note-taking tool on Emacs. It is similar to emacs-wiki;
you can enjoy hyperlinks and full-text search easily. It is not
similar to emacs-wiki; it can be combined with any format.
Diffstat (limited to 'misc/howm/Makefile')
-rw-r--r-- | misc/howm/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/misc/howm/Makefile b/misc/howm/Makefile new file mode 100644 index 00000000000..bf31b71d28d --- /dev/null +++ b/misc/howm/Makefile @@ -0,0 +1,32 @@ +# $NetBSD: Makefile,v 1.1.1.1 2011/02/25 11:04:56 obache Exp $ + +DISTNAME= howm-1.3.9.1 +CATEGORIES= misc +MASTER_SITES= http://howm.sourceforge.jp/a/ + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://howm.sourceforge.jp/ +COMMENT= Write fragmentarily and read collectively +LICENSE= gnu-gpl-v2 + +DEPENDS+= ${RUBY_PKGPREFIX}-migemo-[0-9]*:../../textproc/migemo +DEPENDS+= ${EMACS_PKGNAME_PREFIX}migemo-elisp-[0-9]*:../../textproc/migemo-elisp + +PKG_DESTDIR_SUPPORT= user-destdir + +GNU_CONFIGURE= yes + +.include "../../editors/emacs/modules.mk" +.if ${EMACS_FLAVOR} == "xemacs" +CONFIGURE_ARGS+= --with-xemacs +CONFIGURE_ARGS+= --with-packagedir=${EMACS_LISPPREFIX} +.else +CONFIGURE_ARGS+= --with-lispdir=${EMACS_LISPPREFIX} +.endif + +REPLACE_RUBY_DIRS= ext +REPLACE_RUBY_PAT= *.rb howm2 howmkara +.include "../../lang/ruby/replace.mk" + +.include "../../lang/ruby/rubyversion.mk" +.include "../../mk/bsd.pkg.mk" |