diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-10-03 19:31:45 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-10-03 19:31:45 +0000 |
commit | 4dc01658ab4baa8d02f1757054c5fbe5d1be7f95 (patch) | |
tree | 216dec2c3eb9567f4bbaeb6854e49eda8adc3676 /www-servers | |
parent | Version bump (diff) | |
download | gentoo-2-4dc01658ab4baa8d02f1757054c5fbe5d1be7f95.tar.gz gentoo-2-4dc01658ab4baa8d02f1757054c5fbe5d1be7f95.tar.bz2 gentoo-2-4dc01658ab4baa8d02f1757054c5fbe5d1be7f95.zip |
Remove older stable version
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/thttpd/ChangeLog | 5 | ||||
-rw-r--r-- | www-servers/thttpd/thttpd-2.26.4-r2.ebuild | 72 |
2 files changed, 4 insertions, 73 deletions
diff --git a/www-servers/thttpd/ChangeLog b/www-servers/thttpd/ChangeLog index f6d15514763d..25f7d5692a99 100644 --- a/www-servers/thttpd/ChangeLog +++ b/www-servers/thttpd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/thttpd # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.78 2014/10/03 19:30:31 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.79 2014/10/03 19:31:45 blueness Exp $ + + 03 Oct 2014; Anthony G. Basile <blueness@gentoo.org> -thttpd-2.26.4-r2.ebuild: + Remove older stable version *thttpd-2.27.0 (03 Oct 2014) diff --git a/www-servers/thttpd/thttpd-2.26.4-r2.ebuild b/www-servers/thttpd/thttpd-2.26.4-r2.ebuild deleted file mode 100644 index c91015490777..000000000000 --- a/www-servers/thttpd/thttpd-2.26.4-r2.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.26.4-r2.ebuild,v 1.8 2014/08/10 20:09:17 slyfox Exp $ - -EAPI="4" - -inherit eutils flag-o-matic toolchain-funcs user - -MY_P="s${P}" - -DESCRIPTION="Fork of thttpd, a small, fast, multiplexing webserver" -HOMEPAGE="http://opensource.dyc.edu/sthttpd" -SRC_URI="http://opensource.dyc.edu/pub/sthttpd/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="BSD GPL-2" -SLOT="0" -KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~arm-linux ~x86-linux" -IUSE="" - -RDEPEND="" -DEPEND="" - -WEBROOT="/var/www/localhost" - -THTTPD_USER=thttpd -THTTPD_GROUP=thttpd -THTTPD_DOCROOT="${EPREFIX}${WEBROOT}/htdocs" - -DOCS=( README TODO ) - -pkg_setup() { - ebegin "Creating thttpd user and group" - enewgroup ${THTTPD_GROUP} - enewuser ${THTTPD_USER} -1 -1 -1 ${THTTPD_GROUP} -} - -src_prepare () { - epatch "${FILESDIR}"/thttpd-fix-world-readable-log.patch -} - -src_configure() { - econf WEBDIR=${THTTPD_DOCROOT} -} - -src_install () { - default - - newinitd "${FILESDIR}"/thttpd.init.1 thttpd - newconfd "${FILESDIR}"/thttpd.confd.1 thttpd - - insinto /etc/logrotate.d - newins "${FILESDIR}/thttpd.logrotate" thttpd - - insinto /etc/thttpd - doins "${FILESDIR}"/thttpd.conf.sample - - #move htdocs to docdir, bug #429632 - docompress -x /usr/share/doc/"${PF}"/htdocs.dist - mv "${ED}"${WEBROOT}/htdocs \ - "${ED}"/usr/share/doc/"${PF}"/htdocs.dist - mkdir "${ED}"${WEBROOT}/htdocs - - keepdir ${WEBROOT}/htdocs - - chown root:${THTTPD_GROUP} "${ED}/usr/sbin/makeweb" \ - || die "Failed chown makeweb" - chmod 2751 "${ED}/usr/sbin/makeweb" \ - || die "Failed chmod makeweb" - chmod 755 "${ED}/usr/share/doc/${PF}/htdocs.dist/cgi-bin/printenv" \ - || die "Failed chmod printenv" -} |