Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: app-misc/mdp/
Date: Mon, 25 Jan 2016 00:05:40
Message-Id: 1453680301.2bcc952cca96b5f2410801667c89a6ab5d8c4f6b.sping@gentoo
1 commit: 2bcc952cca96b5f2410801667c89a6ab5d8c4f6b
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 25 00:04:57 2016 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 25 00:05:01 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=2bcc952c
7
8 app-misc/mdp: 1.0.4
9
10 app-misc/mdp/mdp-1.0.4.ebuild | 25 +++++++++++++++++++++++++
11 1 file changed, 25 insertions(+)
12
13 diff --git a/app-misc/mdp/mdp-1.0.4.ebuild b/app-misc/mdp/mdp-1.0.4.ebuild
14 new file mode 100644
15 index 0000000..90cfe67
16 --- /dev/null
17 +++ b/app-misc/mdp/mdp-1.0.4.ebuild
18 @@ -0,0 +1,25 @@
19 +# Copyright 1999-2014 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI="5"
24 +
25 +DESCRIPTION="Command-line based markdown presentation tool."
26 +HOMEPAGE="https://github.com/visit1985/mdp"
27 +SRC_URI="https://github.com/visit1985/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
28 +
29 +LICENSE="GPL-3+"
30 +SLOT="0"
31 +KEYWORDS="~amd64 ~x86"
32 +IUSE=""
33 +
34 +src_compile() {
35 + emake CFLAGS="${CFLAGS} -I../include" LDFLAGS="${LDFLAGS}"
36 +}
37 +
38 +src_install() {
39 + emake PREFIX=/usr DESTDIR="${D}" install
40 +
41 + insinto /usr/share/${PN}/
42 + doins sample.md || die
43 +}