diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-07-15 01:44:44 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-07-15 01:44:44 +0000 |
commit | e1827ee86adb3cde2b7ef198e4b00d1810d81277 (patch) | |
tree | 2a3f033e121681d54e9a7f3d8089041f132ec281 /www-servers/monkeyd | |
parent | Keyword ~arm ~ppc64 (diff) | |
download | gentoo-2-e1827ee86adb3cde2b7ef198e4b00d1810d81277.tar.gz gentoo-2-e1827ee86adb3cde2b7ef198e4b00d1810d81277.tar.bz2 gentoo-2-e1827ee86adb3cde2b7ef198e4b00d1810d81277.zip |
Remove older unstable version
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'www-servers/monkeyd')
-rw-r--r-- | www-servers/monkeyd/ChangeLog | 5 | ||||
-rw-r--r-- | www-servers/monkeyd/monkeyd-1.0.0.ebuild | 70 |
2 files changed, 4 insertions, 71 deletions
diff --git a/www-servers/monkeyd/ChangeLog b/www-servers/monkeyd/ChangeLog index 9f760e8d7f94..908849ef89d1 100644 --- a/www-servers/monkeyd/ChangeLog +++ b/www-servers/monkeyd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/monkeyd # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v 1.37 2012/07/15 01:42:38 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v 1.38 2012/07/15 01:44:44 blueness Exp $ + + 15 Jul 2012; Anthony G. Basile <blueness@gentoo.org> -monkeyd-1.0.0.ebuild: + Remove older unstable version 15 Jul 2012; Anthony G. Basile <blueness@gentoo.org> monkeyd-1.0.1.ebuild: Keyword ~arm ~ppc64 diff --git a/www-servers/monkeyd/monkeyd-1.0.0.ebuild b/www-servers/monkeyd/monkeyd-1.0.0.ebuild deleted file mode 100644 index c7235d1998bc..000000000000 --- a/www-servers/monkeyd/monkeyd-1.0.0.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/monkeyd-1.0.0.ebuild,v 1.1 2012/06/07 08:22:05 blueness Exp $ - -EAPI="4" - -inherit toolchain-funcs depend.php multilib - -WEBROOT="/var/www/localhost" - -MY_P="${PN/d}-${PV}" -DESCRIPTION="A small, fast, and scalable web server" -HOMEPAGE="http://www.monkey-project.com/" -SRC_URI="http://monkey-project.com/releases/${PV:0:3}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~mips ~ppc ~x86" -IUSE="php" - -RDEPEND="php? ( virtual/httpd-php )" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - use php && require_php_cgi -} - -src_prepare() { - # Don't install the banana script, we use ${FILESDIR}/monkeyd.initd - sed -i '/install -m 755 bin\/banana/d' configure || die "sed banana" - - # Don't explicitly strip files - sed -i -e '/$STRIP /d' -e 's/install -s -m 644/install -m 755/' configure || die -} - -src_configure() { - # Non-autotools configure - ./configure \ - --prefix=/usr \ - --bindir=/usr/bin \ - --datadir=${WEBROOT}/htdocs \ - --logdir=/var/log/${PN} \ - --mandir=/usr/share/man \ - --plugdir=/usr/$(get_libdir)/monkeyd/plugins \ - --sysconfdir=/etc/${PN} \ - || die -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" - - # Don't install the banana script man page - rm "${S}"/man/banana.1 -} - -src_install() { - default - - if use php ; then - sed -i -e '/^#AddScript application\/x-httpd-php/s:^#::' "${D}"/etc/monkeyd/monkey.conf || die - sed -i -e 's:/home/my_home/php/bin/php:/usr/bin/php-cgi:' "${D}"/etc/monkeyd/monkey.conf || die - fi - - mv "${D}"${WEBROOT}/htdocs/{index,index-monkey}.html - - sed -i -e "s:/var/log/monkeyd/monkey.pid:/var/run/monkey.pid:" "${D}"/etc/monkeyd/monkey.conf || die - newinitd "${FILESDIR}"/monkeyd.initd monkeyd - newconfd "${FILESDIR}"/monkeyd.confd monkeyd -} |