diff options
author | lippe <lippe@FreeBSD.org> | 2009-08-25 09:13:19 +0800 |
---|---|---|
committer | lippe <lippe@FreeBSD.org> | 2009-08-25 09:13:19 +0800 |
commit | 5a8e87908457d678cdf303c2c255587e28fb9392 (patch) | |
tree | d12002a6b4bfdc46a52fc294046e476b16629541 | |
parent | de02489984c19f8bfda8fcafb99960f65414d44b (diff) | |
download | freebsd-ports-gnome-5a8e87908457d678cdf303c2c255587e28fb9392.tar.gz freebsd-ports-gnome-5a8e87908457d678cdf303c2c255587e28fb9392.tar.zst freebsd-ports-gnome-5a8e87908457d678cdf303c2c255587e28fb9392.zip |
This port is for the Gist commandline tool, which allows for posting to the
Gist pastebin.
WWW: http://github.com/defunkt/gist/
PR: ports/137829
Submitted by: "Rick E." <codeblock@eighthbit.net>
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/gist/Makefile | 26 | ||||
-rw-r--r-- | www/gist/distinfo | 3 | ||||
-rw-r--r-- | www/gist/pkg-descr | 4 |
4 files changed, 34 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 6b257bc14713..127511666c4c 100644 --- a/www/Makefile +++ b/www/Makefile @@ -251,6 +251,7 @@ SUBDIR += geronimo SUBDIR += getleft SUBDIR += gforge + SUBDIR += gist SUBDIR += glibwww SUBDIR += glpi SUBDIR += gnome-user-share diff --git a/www/gist/Makefile b/www/gist/Makefile new file mode 100644 index 000000000000..8c1bf41784bb --- /dev/null +++ b/www/gist/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: gist +# Date created: 2009-08-16 +# Whom: Ricky E. <codeblock@eighthbit.net> +# +# $FreeBSD$ +# + +PORTNAME= gist +PORTVERSION= 1.0 +CATEGORIES= www net +MASTER_SITES= http://github.com/defunkt/gist/raw/master/ +DISTNAME= gist +EXTRACT_SUFX= .rb +EXTRACT_ONLY= + +MAINTAINER= codeblock@eighthbit.net +COMMENT= A gist pastebin posting command + +USE_RUBY= YES +NO_BUILD= YES +PLIST_FILES= bin/gist + +do-install: + ${INSTALL_SCRIPT} ${DISTDIR}/gist.rb ${PREFIX}/bin/gist + +.include <bsd.port.mk> diff --git a/www/gist/distinfo b/www/gist/distinfo new file mode 100644 index 000000000000..0e5fe3ba6681 --- /dev/null +++ b/www/gist/distinfo @@ -0,0 +1,3 @@ +MD5 (gist.rb) = 8c173f3c99878b01904b932f1e0c3b10 +SHA256 (gist.rb) = 6b0010582486e828d26f9fec216bd08b3c5968b32d5f3aeec419ba7a71efe732 +SIZE (gist.rb) = 2172 diff --git a/www/gist/pkg-descr b/www/gist/pkg-descr new file mode 100644 index 000000000000..e901093de166 --- /dev/null +++ b/www/gist/pkg-descr @@ -0,0 +1,4 @@ +This port is for the Gist commandline tool, which allows for posting to the +Gist pastebin. + +WWW: http://github.com/defunkt/gist/ |