diff options
author | Dawid Węgliński <cla@gentoo.org> | 2009-02-24 19:19:06 +0000 |
---|---|---|
committer | Dawid Węgliński <cla@gentoo.org> | 2009-02-24 19:19:06 +0000 |
commit | 6739ab5294da6351f3ee377255469282a3c5bc74 (patch) | |
tree | a0f52c3e57e4877448624687426537c07f233f0d /app-text/wklej/wklej-0.1.6.ebuild | |
parent | Version bump and old version cleanup (diff) | |
download | gentoo-2-6739ab5294da6351f3ee377255469282a3c5bc74.tar.gz gentoo-2-6739ab5294da6351f3ee377255469282a3c5bc74.tar.bz2 gentoo-2-6739ab5294da6351f3ee377255469282a3c5bc74.zip |
Version bump to 0.1.6 (bug #260021)
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'app-text/wklej/wklej-0.1.6.ebuild')
-rw-r--r-- | app-text/wklej/wklej-0.1.6.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-text/wklej/wklej-0.1.6.ebuild b/app-text/wklej/wklej-0.1.6.ebuild new file mode 100644 index 000000000000..e74203706dde --- /dev/null +++ b/app-text/wklej/wklej-0.1.6.ebuild @@ -0,0 +1,34 @@ +# $Header: /var/cvsroot/gentoo-x86/app-text/wklej/wklej-0.1.6.ebuild,v 1.1 2009/02/24 19:19:06 cla Exp $ + +EAPI=2 + +inherit eutils + +DESCRIPTION="A wklej.org submitter" +HOMEPAGE="http://wklej.org" +SRC_URI="http://wklej.org/m/apps/wklej-${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="+vim" + +DEPEND="${RDEPEND}" +RDEPEND="dev-lang/python + vim? ( app-editors/vim[python] )" + +src_install() { + if use vim; then + insinto /usr/share/vim/vimfiles/plugin + doins "${WORKDIR}"/${PN}.vim + fi + + dobin "${WORKDIR}"/${PN} + dodoc "${FILESDIR}"/wklejrc.txt + + elog "A new feature was added since version ${PV}" + elog "Now you can use ~/.wklejrc which allows you to pastebin as" + elog "an authorized user." + elog "Go to http://wklej.org/salt to get your SALT_KEY." +} + |