diff options
-rw-r--r-- | app-text/pastebin/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/pastebin/Manifest | 4 | ||||
-rw-r--r-- | app-text/pastebin/metadata.xml | 5 | ||||
-rw-r--r-- | app-text/pastebin/pastebin-0.3.ebuild | 19 |
4 files changed, 36 insertions, 0 deletions
diff --git a/app-text/pastebin/ChangeLog b/app-text/pastebin/ChangeLog new file mode 100644 index 000000000..334c2a120 --- /dev/null +++ b/app-text/pastebin/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-text/pastebin +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 11 Sep 2008; Erik Hahn (a_b) <erikholgerhahn@web.de> +pastebin-0.3.ebuild, + +metadata.xml: + Ebuild for Bug #235377, based on the one by cHoBi + diff --git a/app-text/pastebin/Manifest b/app-text/pastebin/Manifest new file mode 100644 index 000000000..c7e6fc952 --- /dev/null +++ b/app-text/pastebin/Manifest @@ -0,0 +1,4 @@ +DIST pastebin-0.3.tar.bz2 2097 RMD160 da6e35343ea472f54a3ddb3d50b4d33d22f1b293 SHA1 9d601a3902008e742f9814c40516db280005cb19 SHA256 dd60e118231630e3e547d61bd49948d94872e6ada9b657fa45d2f9880a63e9e2 +EBUILD pastebin-0.3.ebuild 405 RMD160 92a4ae4d8ccbe476449c2b82565a553ed5874621 SHA1 405ddfdad1eda7a753d13d13e8cceb7aebf78a8e SHA256 53c8bf9b258a8ffc306a4c1079cf5671c3014207bc351c62d0923413367b926d +MISC ChangeLog 265 RMD160 5a77e55224bba65cf7dbc57d892734c993ccc8b6 SHA1 2281743597c13eea0c9ac74764813105f064d0bb SHA256 308aaebb0f9ddca4e9666b2c8aff1e8fdbede08f05ca3b9a99e46d8de4b123e3 +MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/app-text/pastebin/metadata.xml b/app-text/pastebin/metadata.xml new file mode 100644 index 000000000..7e3286984 --- /dev/null +++ b/app-text/pastebin/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>maintainer-wanted</herd> +</pkgmetadata> diff --git a/app-text/pastebin/pastebin-0.3.ebuild b/app-text/pastebin/pastebin-0.3.ebuild new file mode 100644 index 000000000..7296ec28a --- /dev/null +++ b/app-text/pastebin/pastebin-0.3.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="CLI to pastebin.com" +HOMEPAGE="http://code.google.com/p/pastebin-cli/" +SRC_URI="http://pastebin-cli.googlecode.com/files/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND="dev-lang/perl + dev-perl/libwww-perl" + +src_install() { + dobin ${PN} || die +} |