summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMATSUU Takuto <matsuu@gentoo.org>2009-10-25 08:56:37 +0900
committerMATSUU Takuto <matsuu@gentoo.org>2009-10-25 08:56:37 +0900
commit3f77d5b2bff852bd77f594a74880f6832241f462 (patch)
treefbe6a12689a6379f3d14dec3a5bc51f15766cd24 /www-servers
parentnet-misc/termtter: Version bumped. (diff)
downloadmatsuu-3f77d5b2bff852bd77f594a74880f6832241f462.tar.gz
matsuu-3f77d5b2bff852bd77f594a74880f6832241f462.tar.bz2
matsuu-3f77d5b2bff852bd77f594a74880f6832241f462.zip
www-servers/tinytinyhttpd: Version bumped.
Diffstat (limited to 'www-servers')
-rw-r--r--www-servers/tinytinyhttpd/Manifest2
-rw-r--r--www-servers/tinytinyhttpd/tinytinyhttpd-0.0.9.ebuild26
2 files changed, 28 insertions, 0 deletions
diff --git a/www-servers/tinytinyhttpd/Manifest b/www-servers/tinytinyhttpd/Manifest
index 9f768d3..8d2fa06 100644
--- a/www-servers/tinytinyhttpd/Manifest
+++ b/www-servers/tinytinyhttpd/Manifest
@@ -1,4 +1,6 @@
AUX tthttpd.conf 125 RMD160 c9886c4c6f4697cd9666331ea617302488fcbf66 SHA1 23b97fad065ac574184ce2554f316a7e5a995799 SHA256 aa4a8c684062130002a79a9d982124f0688e70dea643d056468875de82494a35
AUX tthttpd.init 607 RMD160 8b88b0e33a888492d0645e7bc58b9ac56248b1f3 SHA1 921b7328ff8fa699382fcd862aa2ff4e56196877 SHA256 cffe8f5ea384b42686cc5b3e975312cfed42fb9208ffa063cd6868ee64a7d8da
DIST tinytinyhttpd-0.0.8.tar.gz 110678 RMD160 a0c8a5c4c3050c0bf11b9ffed02e85081bf9ec70 SHA1 dc9f74ab89429d939491d8cdfe91ef553d76b9b2 SHA256 d1b6b814e86d7357707c5fc2d8f63af42bb0a15a0197180d11c027a373c01f76
+DIST tinytinyhttpd-0.0.9.tar.gz 147412 RMD160 6a4ee603f009634a67ac2b1ccf58935846e3de54 SHA1 bd58b2be92094aa55b0a50a768439966560fa945 SHA256 374041df75722920a355b3284d242a9fcdf009cc7c67078fd527c2682462792f
EBUILD tinytinyhttpd-0.0.8.ebuild 607 RMD160 03a01bdf6c90898b7f9cfdffb760430eadd033ee SHA1 0d5a27d033de07cebed66562766bc60ba16d2822 SHA256 72f4c4e7b7cb628e68274b41ab092247d1688df93a18b8e65d9b26f3df32de84
+EBUILD tinytinyhttpd-0.0.9.ebuild 607 RMD160 03a01bdf6c90898b7f9cfdffb760430eadd033ee SHA1 0d5a27d033de07cebed66562766bc60ba16d2822 SHA256 72f4c4e7b7cb628e68274b41ab092247d1688df93a18b8e65d9b26f3df32de84
diff --git a/www-servers/tinytinyhttpd/tinytinyhttpd-0.0.9.ebuild b/www-servers/tinytinyhttpd/tinytinyhttpd-0.0.9.ebuild
new file mode 100644
index 0000000..660d18b
--- /dev/null
+++ b/www-servers/tinytinyhttpd/tinytinyhttpd-0.0.9.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+DESCRIPTION="tiny tiny httpd"
+HOMEPAGE="http://github.com/mattn/tinytinyhttpd/"
+SRC_URI="http://cloud.github.com/downloads/mattn/tinytinyhttpd/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+
+ rm -rf "${D}/usr/share/tthttpd"
+
+ insinto /etc; doins "${FILESDIR}/tthttpd.conf"
+
+ newinitd "${FILESDIR}/tthttpd.init" tthttpd
+
+ keepdir /var/www/localhost/htdocs
+
+ dodoc AUTHORS ChangeLog NEWS README* example.conf
+}