diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2009-03-09 18:01:56 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2009-03-09 18:01:56 +0000 |
commit | db8578cc37ae539bd4fb5626d122a4b3a901f307 (patch) | |
tree | a2ee2a214d26b9579889bd80fad9e5bfbab04c64 /www-apache | |
parent | Add SVN snaphot, SVN ebuild (diff) | |
download | gentoo-2-db8578cc37ae539bd4fb5626d122a4b3a901f307.tar.gz gentoo-2-db8578cc37ae539bd4fb5626d122a4b3a901f307.tar.bz2 gentoo-2-db8578cc37ae539bd4fb5626d122a4b3a901f307.zip |
Remove old versions.
(Portage version: 2.2_rc20/cvs/Linux 2.6.29-rc6 i686)
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/anyterm/ChangeLog | 6 | ||||
-rw-r--r-- | www-apache/anyterm/anyterm-1.1.16.ebuild | 89 | ||||
-rw-r--r-- | www-apache/anyterm/anyterm-1.1.22.ebuild | 101 | ||||
-rw-r--r-- | www-apache/anyterm/anyterm-1.1.24.ebuild | 101 |
4 files changed, 5 insertions, 292 deletions
diff --git a/www-apache/anyterm/ChangeLog b/www-apache/anyterm/ChangeLog index daecdac1ad83..eb6021a75377 100644 --- a/www-apache/anyterm/ChangeLog +++ b/www-apache/anyterm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-apache/anyterm # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/anyterm/ChangeLog,v 1.17 2009/01/24 14:22:38 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/anyterm/ChangeLog,v 1.18 2009/03/09 18:01:56 betelgeuse Exp $ + + 09 Mar 2009; Petteri Räty <betelgeuse@gentoo.org> -anyterm-1.1.16.ebuild, + -anyterm-1.1.22.ebuild, -anyterm-1.1.24.ebuild: + Remove old versions. *anyterm-1.1.28 (24 Jan 2009) diff --git a/www-apache/anyterm/anyterm-1.1.16.ebuild b/www-apache/anyterm/anyterm-1.1.16.ebuild deleted file mode 100644 index 8a3f91e1c45c..000000000000 --- a/www-apache/anyterm/anyterm-1.1.16.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/anyterm/anyterm-1.1.16.ebuild,v 1.2 2008/03/23 12:08:17 hollow Exp $ - -inherit apache-module eutils toolchain-funcs webapp - -KEYWORDS="~x86" - -DESCRIPTION="A terminal anywhere." -HOMEPAGE="http://anyterm.org/" -SRC_URI="http://anyterm.org/download/${P}.tbz2" -LICENSE="GPL-2" -SLOT="0" -IUSE="opera pam ssl" - -DEPEND="dev-libs/boost - >=dev-libs/rote-0.2.8 - >=sys-devel/gcc-3 - virtual/ssh - pam? ( www-apache/mod_auth_pam )" -RDEPEND="${DEPEND}" - -APACHE2_MOD_CONF="50_${PN}" -APACHE2_MOD_DEFINE="ANYTERM" -use pam && APACHE2_MOD_DEFINE="${APACHE2_MOD_DEFINE} -D AUTH_PAM" -use ssl && APACHE2_MOD_DEFINE="${APACHE2_MOD_DEFINE} -D SSL" -APACHE2_MOD_FILE="${S}/apachemod/.libs/${PN}.so" -DOCFILES="CHANGELOG README" - -WEBAPP_MANUAL_SLOT="yes" - -need_apache2_2 - -pkg_setup() { - webapp_pkg_setup - - if use ssl && ! built_with_use www-servers/apache ssl; then - die "Build www-servers/apache with USE=ssl." - fi - - if ! built_with_use --missing true dev-libs/boost threads; then - die "Build dev-libs/boost with USE=threads." - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${PN}-1.1.15-browser-gentoo.patch - sed -i -e "s:apr-config:apr-1-config:g" apachemod/Makefile -} - -src_compile() { - cd apachemod - emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die "Apachemod make failed" - cd .. - - # Modify browser files to reflect USE flags. - for flag in opera pam ssl ; do - if use ${flag} ; then - sed -i -e "s/^#USE=${flag}#//" browser/{*,.htaccess} - sed -i -e "/^#USE=-${flag}#/D" browser/{*,.htaccess} - else - sed -i -e "s/^#USE=-${flag}#//" browser/{*,.htaccess} - sed -i -e "/^#USE=${flag}#/D" browser/{*,.htaccess} - fi - done -} - -src_install() { - apache-module_src_install - webapp_src_preinst - cp -f browser/{*,.htaccess} "${D}/${MY_HTDOCSDIR}" - webapp_postinst_txt en "${FILESDIR}"/${PN}-1.1.15-postinst-en.txt - webapp_src_install -} - -pkg_postinst() { - webapp_pkg_postinst - apache-module_pkg_postinst - - use ssl || ewarn "USE=-ssl: Anyterm without SSL is very insecure!" - use pam || ewarn "USE=-pam: You will have to add your own authentication mechanism." - use opera || ewarn "USE=opera: Be sure to disable some logging in your Apache configuration files!" - if ! use ssl || ! use pam || use opera ; then - ewarn "For more information see http://anyterm.org/security.html" - fi -} diff --git a/www-apache/anyterm/anyterm-1.1.22.ebuild b/www-apache/anyterm/anyterm-1.1.22.ebuild deleted file mode 100644 index 381445ceb0d0..000000000000 --- a/www-apache/anyterm/anyterm-1.1.22.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/anyterm/anyterm-1.1.22.ebuild,v 1.2 2008/06/01 09:29:03 hollow Exp $ - -inherit apache-module eutils toolchain-funcs webapp - -DESCRIPTION="A terminal anywhere." -HOMEPAGE="http://anyterm.org/" -SRC_URI="http://anyterm.org/download/${P}.tbz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="opera pam ssl" - -DEPEND="dev-libs/boost - >=dev-libs/rote-0.2.8 - >=sys-devel/gcc-3 - virtual/ssh - pam? ( || ( www-apache/mod_authn_pam www-apache/mod_auth_pam ) )" -RDEPEND="${DEPEND}" - -APACHE2_MOD_CONF="50_${PN}" -APACHE2_MOD_DEFINE="ANYTERM" -use pam && APACHE2_MOD_DEFINE="${APACHE2_MOD_DEFINE} AUTH_PAM" -use ssl && APACHE2_MOD_DEFINE="${APACHE2_MOD_DEFINE} SSL" -APACHE2_MOD_FILE="${S}/apachemod/.libs/${PN}.so" -DOCFILES="CHANGELOG README" - -WEBAPP_MANUAL_SLOT="yes" - -need_apache2_2 - -pkg_setup() { - webapp_pkg_setup - - if use ssl && ! built_with_use www-servers/apache ssl; then - die "Build www-servers/apache with USE=ssl." - fi - - if ! built_with_use --missing true dev-libs/boost threads; then - die "Build dev-libs/boost with USE=threads." - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${PN}-1.1.15-browser-gentoo.patch - epatch "${FILESDIR}"/${PN}-1.1.22-respect-flags.patch - sed -i -e "s:apr-config:apr-1-config:g" apachemod/Makefile -} - -src_compile() { - local my_LDFLAGS - for flag in ${LDFLAGS} ; do - my_LDFLAGS="${my_LDFLAGS} -Wl,${flag}" - done - unset flag - export LDFLAGS="${my_LDFLAGS# }" - - cd apachemod - emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die "Apachemod make failed" - cd .. - - # Modify browser files to reflect USE flags. - for flag in opera pam ssl ; do - if use ${flag} ; then - sed -i -e "s/^#USE=${flag}#//" browser/{*,.htaccess} - sed -i -e "/^#USE=-${flag}#/D" browser/{*,.htaccess} - else - sed -i -e "s/^#USE=-${flag}#//" browser/{*,.htaccess} - sed -i -e "/^#USE=${flag}#/D" browser/{*,.htaccess} - fi - done -} - -src_install() { - apache-module_src_install - webapp_src_preinst - - insinto "${MY_HTDOCSDIR}" - doins -r browser/{*,.htaccess} - - webapp_postinst_txt en "${FILESDIR}"/${PN}-1.1.15-postinst-en.txt - webapp_src_install -} - -pkg_postinst() { - webapp_pkg_postinst - apache-module_pkg_postinst - - use ssl || ewarn "USE=-ssl: Anyterm without SSL is very insecure!" - use pam || ewarn "USE=-pam: You will have to add your own authentication mechanism." - use opera && ewarn "USE=opera: Be sure to disable some logging in your Apache configuration files!" - - if ! use ssl || ! use pam || use opera ; then - ewarn "For more information see http://anyterm.org/security.html" - fi -} diff --git a/www-apache/anyterm/anyterm-1.1.24.ebuild b/www-apache/anyterm/anyterm-1.1.24.ebuild deleted file mode 100644 index 32746f68eab5..000000000000 --- a/www-apache/anyterm/anyterm-1.1.24.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/anyterm/anyterm-1.1.24.ebuild,v 1.1 2008/07/01 19:40:48 hollow Exp $ - -inherit apache-module eutils toolchain-funcs webapp - -DESCRIPTION="A terminal anywhere." -HOMEPAGE="http://anyterm.org/" -SRC_URI="http://anyterm.org/download/${P}.tbz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="opera pam ssl" - -DEPEND="dev-libs/boost - >=dev-libs/rote-0.2.8 - >=sys-devel/gcc-3 - virtual/ssh - pam? ( || ( www-apache/mod_authn_pam www-apache/mod_auth_pam ) )" -RDEPEND="${DEPEND}" - -APACHE2_MOD_CONF="50_${PN}" -APACHE2_MOD_DEFINE="ANYTERM" -use pam && APACHE2_MOD_DEFINE="${APACHE2_MOD_DEFINE} AUTH_PAM" -use ssl && APACHE2_MOD_DEFINE="${APACHE2_MOD_DEFINE} SSL" -APACHE2_MOD_FILE="${S}/apachemod/.libs/${PN}.so" -DOCFILES="CHANGELOG README" - -WEBAPP_MANUAL_SLOT="yes" - -need_apache2_2 - -pkg_setup() { - webapp_pkg_setup - - if use ssl && ! built_with_use www-servers/apache ssl; then - die "Build www-servers/apache with USE=ssl." - fi - - if ! built_with_use --missing true dev-libs/boost threads; then - die "Build dev-libs/boost with USE=threads." - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${PN}-1.1.15-browser-gentoo.patch - epatch "${FILESDIR}"/${PN}-1.1.22-respect-flags.patch - sed -i -e "s:apr-config:apr-1-config:g" apachemod/Makefile -} - -src_compile() { - local my_LDFLAGS - for flag in ${LDFLAGS} ; do - my_LDFLAGS="${my_LDFLAGS} -Wl,${flag}" - done - unset flag - export LDFLAGS="${my_LDFLAGS# }" - - cd apachemod - emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die "Apachemod make failed" - cd .. - - # Modify browser files to reflect USE flags. - for flag in opera pam ssl ; do - if use ${flag} ; then - sed -i -e "s/^#USE=${flag}#//" browser/{*,.htaccess} - sed -i -e "/^#USE=-${flag}#/D" browser/{*,.htaccess} - else - sed -i -e "s/^#USE=-${flag}#//" browser/{*,.htaccess} - sed -i -e "/^#USE=${flag}#/D" browser/{*,.htaccess} - fi - done -} - -src_install() { - apache-module_src_install - webapp_src_preinst - - insinto "${MY_HTDOCSDIR}" - doins -r browser/{*,.htaccess} - - webapp_postinst_txt en "${FILESDIR}"/${PN}-1.1.15-postinst-en.txt - webapp_src_install -} - -pkg_postinst() { - webapp_pkg_postinst - apache-module_pkg_postinst - - use ssl || ewarn "USE=-ssl: Anyterm without SSL is very insecure!" - use pam || ewarn "USE=-pam: You will have to add your own authentication mechanism." - use opera && ewarn "USE=opera: Be sure to disable some logging in your Apache configuration files!" - - if ! use ssl || ! use pam || use opera ; then - ewarn "For more information see http://anyterm.org/security.html" - fi -} |