From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- www-apache/mod_tidy/Manifest | 1 + www-apache/mod_tidy/files/55_mod_tidy.conf | 5 ++++ www-apache/mod_tidy/metadata.xml | 5 ++++ www-apache/mod_tidy/mod_tidy-0.5.5-r1.ebuild | 38 ++++++++++++++++++++++++++++ 4 files changed, 49 insertions(+) create mode 100644 www-apache/mod_tidy/Manifest create mode 100644 www-apache/mod_tidy/files/55_mod_tidy.conf create mode 100644 www-apache/mod_tidy/metadata.xml create mode 100644 www-apache/mod_tidy/mod_tidy-0.5.5-r1.ebuild (limited to 'www-apache/mod_tidy') diff --git a/www-apache/mod_tidy/Manifest b/www-apache/mod_tidy/Manifest new file mode 100644 index 0000000000..c295124850 --- /dev/null +++ b/www-apache/mod_tidy/Manifest @@ -0,0 +1 @@ +DIST mod_tidy-0.5.5.tar.gz 312340 SHA256 3c8d3ca0ac67974efc82040bde224068e9b3024e1a2521664716aa2618310392 diff --git a/www-apache/mod_tidy/files/55_mod_tidy.conf b/www-apache/mod_tidy/files/55_mod_tidy.conf new file mode 100644 index 0000000000..70984f71bd --- /dev/null +++ b/www-apache/mod_tidy/files/55_mod_tidy.conf @@ -0,0 +1,5 @@ + +LoadModule tidy_module modules/mod_tidy.so + + +# vim: ts=4 filetype=apache diff --git a/www-apache/mod_tidy/metadata.xml b/www-apache/mod_tidy/metadata.xml new file mode 100644 index 0000000000..4538a68724 --- /dev/null +++ b/www-apache/mod_tidy/metadata.xml @@ -0,0 +1,5 @@ + + + +maintainer-needed@gentoo.org + diff --git a/www-apache/mod_tidy/mod_tidy-0.5.5-r1.ebuild b/www-apache/mod_tidy/mod_tidy-0.5.5-r1.ebuild new file mode 100644 index 0000000000..f57aaf30af --- /dev/null +++ b/www-apache/mod_tidy/mod_tidy-0.5.5-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="2" + +inherit apache-module + +DESCRIPTION="a TidyLib based module to parse, clean-up and pretty-print the webservers' (X)HTML output" +SRC_URI="http://mod-tidy.sourceforge.net/src/${P}.tar.gz" +HOMEPAGE="http://mod-tidy.sourceforge.net/" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +APACHE2_MOD_CONF="55_${PN}" +APACHE2_MOD_DEFINE="TIDY" + +DEPEND="app-text/htmltidy" +RDEPEND="${DEPEND}" + +need_apache2 + +DOCFILES="Changes INSTALL LICENSE README" + +src_prepare() { + rm -rf tidy/ +} + +src_configure() { + : +} + +src_compile() { + ${APXS} -c src/mod_tidy.c -ltidy +} -- cgit v1.2.3