diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-08-15 20:55:26 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-08-15 20:55:26 +0100 |
commit | aa3f881cac1665727b93cfc21759225452d1b929 (patch) | |
tree | fcf44ff434f1c6fd3cfeb8db96430e21cc2e02ad | |
parent | Add dev-python/markdown for cgit readme pages (diff) | |
download | portage-aa3f881cac1665727b93cfc21759225452d1b929.tar.bz2 portage-aa3f881cac1665727b93cfc21759225452d1b929.tar.xz portage-aa3f881cac1665727b93cfc21759225452d1b929.zip |
Add www-apache/apache-mod-markdown
-rw-r--r-- | www-apache/apache-mod-markdown/Manifest | 2 | ||||
-rw-r--r-- | www-apache/apache-mod-markdown/apache-mod-markdown-1.0.3.ebuild | 37 |
2 files changed, 39 insertions, 0 deletions
diff --git a/www-apache/apache-mod-markdown/Manifest b/www-apache/apache-mod-markdown/Manifest new file mode 100644 index 0000000..b14d746 --- /dev/null +++ b/www-apache/apache-mod-markdown/Manifest @@ -0,0 +1,2 @@ +DIST apache-mod-markdown-1.0.3.tar.gz 14765 BLAKE2B 55d584c038e526cffaa7a0263c45d067c0f2db0d1b99cb0271ea0e4fe2a2c40a8e30be7902cbe6df3efe2fd18f483d6dbb2eb26eb1df8a1d102d610ded3e1276 SHA512 7ea98a69b4b9e9914f42fa4fb5eac744a02fa1ad277abb90e6f313e2a3e729de8b9b959bb45684b589c4198d0d0ef7e8ed7d1eab90cb410294b0b6e8ece54998 +EBUILD apache-mod-markdown-1.0.3.ebuild 667 BLAKE2B 2b5fafc925690d3e432ee5d41a54384d0444ae8456af10c5a9537db46e9762b7d4631fc06d3713f5f42cb11b3c84b1fed5b02c76a7451e4237cdf328c99adfa6 SHA512 ea38fd834a02e09a32429ef530c72c034c3cea57f6fe9b55806643b87bd796c4da23051ae520eae11f8d78a4bb9538e6219b2b91caa7d21daa2848184c9af851 diff --git a/www-apache/apache-mod-markdown/apache-mod-markdown-1.0.3.ebuild b/www-apache/apache-mod-markdown/apache-mod-markdown-1.0.3.ebuild new file mode 100644 index 0000000..c76c345 --- /dev/null +++ b/www-apache/apache-mod-markdown/apache-mod-markdown-1.0.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +inherit apache-module autotools + +DESCRIPTION="mod_markdown is Markdown filter module for Apache HTTPD Server." +HOMEPAGE="https://github.com/hamano/apache-mod-markdown" +SRC_URI="https://github.com/hamano/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-text/discount" +RDEPEND="${DEPEND}" +BDEPEND="" + +need_apache2 + +src_prepare() { + eautoreconf +} + +src_configure() { + econf --with-apxs="${APXS}" --with-discount="/usr" +} + +src_compile() { + emake +} + +src_install() { + emake install DESTDIR="${D}" +} + |