commit: 4b56b0b6a9b30cb521a21c656c6c021223862f20 Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org> AuthorDate: Sat Jul 12 10:15:15 2014 +0000 Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org> CommitDate: Sat Jul 12 10:15:15 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=4b56b0b6
Initial commit, ebuild written by me. --- www-apps/gitlist/Manifest | 3 +++ www-apps/gitlist/files/postinstall-en.txt | 5 +++++ www-apps/gitlist/gitlist-0.5.0.ebuild | 37 +++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/www-apps/gitlist/Manifest b/www-apps/gitlist/Manifest new file mode 100644 index 0000000..0e066fe --- /dev/null +++ b/www-apps/gitlist/Manifest @@ -0,0 +1,3 @@ +AUX postinstall-en.txt 146 SHA256 ea1638103a61e9dba55cabc838a766175aee3ce128b52c944f45a3373643e3e7 SHA512 c16e28eb5ecff45afcc2103d5f67c78d7d167765e30f624cdc8e5e32b00d9407e16207fb08f0d180e2dec7c2e6a09bf04982edb071cdf330c9a62c22b7e06aa2 WHIRLPOOL 1677b5357c702b9c8bc59321856d1e450edd2575518d5174d3ac0d3ea7e88733e1fd6e2662ee709fc20341c046dd9dd6fa416b2a0e0867098269e9c7d2ed6fd6 +DIST gitlist-0.5.0.tar.gz 825578 SHA256 99ba8e1a1acabcfc7de57e6d1ce0c8221934d3e0b9ea8d32c80da07f440e2c7c SHA512 89649191a16749dda55d8b242fb098930d68203c9a3dde7381cd23148af6151d2d7ec63071eed22ab135b4f4fb97159f96ef662e5ccfbe51d31f180123dc14cc WHIRLPOOL 1b0f8194d051b85ffe7098a343d22efedc4f318e17330d911b3b6f5a10818690fe0d71ff49fc34c660a13f1680f1292c3fbec317c13ad925eaeb67ba6ce76a1e +EBUILD gitlist-0.5.0.ebuild 829 SHA256 330c6c739b348b0ff1903a79bb0e5c5c3aa3cda939f08b8328f9794358b4d500 SHA512 c3c90b779d4fd03511867d1ac16b8f9de331b3349f8e0a3e764dd19f49fefaacbf93131d61a3cfa4808f69d2557458527f420e672a7571fca7f6ff36b5b4a432 WHIRLPOOL 4735b569fd923ac32fde9d73d2dfccdf5e2d6ed3b9241e4ee19a4478b99a8b785616e882a60ac6d631626cead9a257a60e4138954120073d2fa36b1994712500 diff --git a/www-apps/gitlist/files/postinstall-en.txt b/www-apps/gitlist/files/postinstall-en.txt new file mode 100644 index 0000000..dd0cbff --- /dev/null +++ b/www-apps/gitlist/files/postinstall-en.txt @@ -0,0 +1,5 @@ +To finish the installation, edit + config.ini +to match the location of your git repositories. + +Please read the README.md for further information. diff --git a/www-apps/gitlist/gitlist-0.5.0.ebuild b/www-apps/gitlist/gitlist-0.5.0.ebuild new file mode 100644 index 0000000..ab463b6 --- /dev/null +++ b/www-apps/gitlist/gitlist-0.5.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit webapp + +DESCRIPTION="Elegant and modern web interface for interacting with multiple git repositories." +HOMEPAGE="https://github.com/klaussilveira/gitlist" +SRC_URI="https://github.com/klaussilveira/gitlist/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" + +KEYWORDS="~amd64" +IUSE="" + +DEPEND="" +RDEPEND="virtual/httpd-php + dev-vcs/git" + +src_install() { + webapp_src_preinst + + dodoc README.md + + rm INSTALL.md README.md LICENSE.txt || die + mv config.ini-example config.ini || die + + cp -R . "${D}/${MY_HTDOCSDIR}" || die + + webapp_serverowned "${MY_HTDOCSDIR}/cache" + webapp_configfile "${MY_HTDOCSDIR}/config.ini" + webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt" + + webapp_src_install +}
