diff options
author | mef <mef@pkgsrc.org> | 2013-06-14 13:41:46 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2013-06-14 13:41:46 +0000 |
commit | 35fe876789aebdcd098c22951e54707b68e8c2f8 (patch) | |
tree | d97d7de2a028db207d0c71f72a09506080494cd2 /net | |
parent | d47c89e0b9d0a175f9c756dfac7a093db0863d4d (diff) | |
download | pkgsrc-35fe876789aebdcd098c22951e54707b68e8c2f8.tar.gz |
Import twittering-mode-3.0.0 as net/twittering-mode.
Twittering-mode enables you to tweet on Emacsen.
- web: http://twmode.sf.net
- github: http://github.com/hayamiz/twittering-mode
Diffstat (limited to 'net')
-rw-r--r-- | net/twittering-mode/DESCR | 4 | ||||
-rw-r--r-- | net/twittering-mode/MESSAGE | 19 | ||||
-rw-r--r-- | net/twittering-mode/Makefile | 34 | ||||
-rw-r--r-- | net/twittering-mode/Makefile.~1.6.~ | 33 | ||||
-rw-r--r-- | net/twittering-mode/PLIST | 2 | ||||
-rw-r--r-- | net/twittering-mode/distinfo | 5 |
6 files changed, 97 insertions, 0 deletions
diff --git a/net/twittering-mode/DESCR b/net/twittering-mode/DESCR new file mode 100644 index 00000000000..e4a414bcaf7 --- /dev/null +++ b/net/twittering-mode/DESCR @@ -0,0 +1,4 @@ +Twittering-mode enables you to tweet on Emacsen. + +- web: http://twmode.sf.net +- github: http://github.com/hayamiz/twittering-mode diff --git a/net/twittering-mode/MESSAGE b/net/twittering-mode/MESSAGE new file mode 100644 index 00000000000..6423f3034ca --- /dev/null +++ b/net/twittering-mode/MESSAGE @@ -0,0 +1,19 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1 2013/06/14 13:41:46 mef Exp $ +;; You may set following lines in your init file (~/.emacs etc) +;; (add-to-list 'load-path "/path/to/installed/dir") ;; if you need + (require 'twittering-mode) + (setq twittering-username "your_account_name") +;; http://www.emacswiki.org/emacs/TwitteringMode +;; Show icons (requires wget) + (twittering-icon-mode) +;; Update your timeline each 300 seconds (5 minutes) + (setq twittering-timer-interval 300) +;; Directory to store buddy icons + (setq twittering-tmp-dir "/tmp/twittering-tmp-dir") +;; sometimes you may need following line + (setq twittering-auth-method 'xauth) +;; work-around for twitter problem (occasionally you may need this) +;; Don't set this for regular use. +;; (setq twittering-allow-insecure-server-cert t) +=========================================================================== diff --git a/net/twittering-mode/Makefile b/net/twittering-mode/Makefile new file mode 100644 index 00000000000..e41c215cb18 --- /dev/null +++ b/net/twittering-mode/Makefile @@ -0,0 +1,34 @@ +# $NetBSD: Makefile,v 1.1 2013/06/14 13:41:46 mef Exp $ + +DISTNAME= twittering-mode-3.0.0 +CATEGORIES= net +MASTER_SITES+= http://sourceforge.net/projects/twmode/files/twittering-mode-3.0.0/ + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/hayamiz/twittering-mode/ +COMMENT= Emacs client for twitter +LICENSE= gnu-gpl-v2 + +NO_BUILD= yes + +USE_LANGUAGES= # none + +# Original shows vHEAD by M-x twittering-mode-version, but it might be nice +# to tell a user the version number by this command (mef@). +SUBST_CLASSES+= version +SUBST_MESSAGE.version= Replace version string 'HEAD' by ${PKGVERSION} +SUBST_STAGE.version= post-patch +SUBST_FILES.version= twittering-mode.el +SUBST_SED.version= -e '/defconst/s,HEAD,${PKGVERSION},' + +.include "../../editors/emacs/modules.mk" +# Avoid single file spread out just under site-lisp directory. +# And directory name should get higher precedence, so begins with 'a'. +INSTALLATION_DIRS= ${EMACS_LISPPREFIX}/a-files + +TEST_TARGET= check + +do-install: + ${INSTALL_DATA} ${WRKSRC}/twittering-mode.el ${DESTDIR}${INSTALLATION_DIRS} + +.include "../../mk/bsd.pkg.mk" diff --git a/net/twittering-mode/Makefile.~1.6.~ b/net/twittering-mode/Makefile.~1.6.~ new file mode 100644 index 00000000000..a76aaba7d42 --- /dev/null +++ b/net/twittering-mode/Makefile.~1.6.~ @@ -0,0 +1,33 @@ +# $NetBSD: Makefile.~1.6.~,v 1.1 2013/06/14 13:41:46 mef Exp $ + +DISTNAME= twittering-mode-3.0.0 +CATEGORIES= net + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/hayamiz/twittering-mode/ +COMMENT= Emacs client for twitter +LICENSE= gnu-gpl-v2 + +MASTER_SITES+= http://sourceforge.net/projects/twmode/files/twittering-mode-3.0.0/ + +NO_BUILD= yes +USE_LANGUAGES= # none +TEST_TARGET= check + +# Original shows vHEAD by M-x twittering-mode-version, but it might be nice +# to tell a user the version number by this command (mef@). +SUBST_CLASSES+= version +SUBST_MESSAGE.version= Replace version string 'HEAD' by ${PKGVERSION} +SUBST_STAGE.version= post-patch +SUBST_FILES.version= twittering-mode.el +SUBST_SED.version= -e '/defconst/s,HEAD,${PKGVERSION},' + +.include "../../editors/emacs/modules.mk" +# Avoid single file spread out just under site-lisp directory. +# And directory name should get higher precedence, so begins with 'a'. +INSTALLATION_DIRS= ${EMACS_LISPPREFIX}/a-files + +do-install: + ${INSTALL_DATA} ${WRKSRC}/twittering-mode.el ${DESTDIR}${INSTALLATION_DIRS} + +.include "../../mk/bsd.pkg.mk" diff --git a/net/twittering-mode/PLIST b/net/twittering-mode/PLIST new file mode 100644 index 00000000000..2f04f201002 --- /dev/null +++ b/net/twittering-mode/PLIST @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2013/06/14 13:41:46 mef Exp $ +share/emacs/site-lisp/a-files/twittering-mode.el diff --git a/net/twittering-mode/distinfo b/net/twittering-mode/distinfo new file mode 100644 index 00000000000..dd7407b76e0 --- /dev/null +++ b/net/twittering-mode/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2013/06/14 13:41:46 mef Exp $ + +SHA1 (twittering-mode-3.0.0.tar.gz) = f94b69113ca2cb074f36f2606f099dee13ef8602 +RMD160 (twittering-mode-3.0.0.tar.gz) = c99e8b6b857c81debbf6edfbb0a1437b8087ad18 +Size (twittering-mode-3.0.0.tar.gz) = 1363235 bytes |