diff options
author | Thomas Matthijs <axxo@gentoo.org> | 2005-07-19 00:01:11 +0000 |
---|---|---|
committer | Thomas Matthijs <axxo@gentoo.org> | 2005-07-19 00:01:11 +0000 |
commit | 24d8521ba92e3339c193676ce446de7b920fbd1a (patch) | |
tree | 038546e15bd1916871949b0d07451b2b0071e5e4 /www-servers | |
parent | style fix (diff) | |
download | gentoo-2-24d8521ba92e3339c193676ce446de7b920fbd1a.tar.gz gentoo-2-24d8521ba92e3339c193676ce446de7b920fbd1a.tar.bz2 gentoo-2-24d8521ba92e3339c193676ce446de7b920fbd1a.zip |
keyw
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/resin-ee/files/digest-resin-ee-2.1.9 | 1 | ||||
-rw-r--r-- | www-servers/resin-ee/resin-ee-2.1.14.ebuild | 4 | ||||
-rw-r--r-- | www-servers/resin-ee/resin-ee-2.1.9.ebuild | 121 |
3 files changed, 2 insertions, 124 deletions
diff --git a/www-servers/resin-ee/files/digest-resin-ee-2.1.9 b/www-servers/resin-ee/files/digest-resin-ee-2.1.9 deleted file mode 100644 index 22c1e6589ade..000000000000 --- a/www-servers/resin-ee/files/digest-resin-ee-2.1.9 +++ /dev/null @@ -1 +0,0 @@ -MD5 c43ed7a62b3ffffeb1260e3cebda391f resin-ee-2.1.9.tar.gz 4792757 diff --git a/www-servers/resin-ee/resin-ee-2.1.14.ebuild b/www-servers/resin-ee/resin-ee-2.1.14.ebuild index 7a2f864ef4f9..98c2c9262bfe 100644 --- a/www-servers/resin-ee/resin-ee-2.1.14.ebuild +++ b/www-servers/resin-ee/resin-ee-2.1.14.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/resin-ee/resin-ee-2.1.14.ebuild,v 1.3 2005/07/09 17:51:40 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/resin-ee/resin-ee-2.1.14.ebuild,v 1.4 2005/07/19 00:01:11 axxo Exp $ inherit java-pkg eutils DESCRIPTION="The Enterprise Edition of Resin" SRC_URI="http://www.caucho.com/download/${P}.tar.gz" HOMEPAGE="http://www.caucho.com" -KEYWORDS="~x86 ~ppc ~sparc" +KEYWORDS="~ppc ~sparc x86" LICENSE="CAUCHO" SLOT="0" DEPEND="!net-www/resin" diff --git a/www-servers/resin-ee/resin-ee-2.1.9.ebuild b/www-servers/resin-ee/resin-ee-2.1.9.ebuild deleted file mode 100644 index ae59b6b31ce2..000000000000 --- a/www-servers/resin-ee/resin-ee-2.1.9.ebuild +++ /dev/null @@ -1,121 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/resin-ee/resin-ee-2.1.9.ebuild,v 1.3 2005/07/09 17:51:40 swegener Exp $ - -inherit java-pkg eutils - -DESCRIPTION="The Enterprise Edition of Resin" -SRC_URI="http://www.caucho.com/download/${P}.tar.gz" -HOMEPAGE="http://www.caucho.com" -KEYWORDS="x86 ~ppc ~sparc" -LICENSE="CAUCHO" -SLOT="0" -DEPEND="!net-www/resin" -RDEPEND=">=virtual/jdk-1.2" -IUSE="" - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PV}/${PN}.diff -} - -pkg_preinst() { - enewgroup resin - enewuser resin -1 /bin/bash /opt/resin resin - chown -R resin:resin ${D}/opt/resin - chown -R resin:resin ${D}/var/log/${PN} -} -src_compile() { :; } - -src_install() { - cd ${S} - RESIN_HOME="/opt/resin" - diropts -m0755 - - # Create directories - dodir ${RESIN_HOME} - dodir /var/log/${PN} - dosym /var/log/${PN} ${RESIN_HOME}/logs - keepdir /var/log/${PN}/ - - # INIT SCRIPTS AND ENV - - cp -a ${FILESDIR}/${PV}/resin.init ${S}/resin - insinto /etc/init.d - insopts -m0750 - doins ${S}/resin - - cp -a ${FILESDIR}/${PV}/resin.conf ${S}/resin - insinto /etc/conf.d - insopts -m0755 - doins ${S}/resin - - cp -a ${FILESDIR}/${PV}/21resin ${S}/21resin - insinto /etc/env.d - insopts -m0755 - doins ${S}/21resin - - dodir /opt/resin || die - dodoc LICENSE readme.txt - - java-pkg_dojar lib/*.jar - - cp -Rdp \ - bin \ - doc \ - conf \ - contrib \ - webapps \ - xsl \ - ${D}${RESIN_HOME} || die - dosym /usr/share/${PN}/lib ${RESIN_HOME}/lib - - dodir /etc/env.d - insinto /etc/env.d - doins ${FILESDIR}/${PV}/21resin -} - -pkg_postinst() { - einfo - einfo " NOTICE!" - einfo " User and group 'resin' have been added." - einfo - einfo " FILE LOCATIONS:" - einfo " 1. Resin home directory: ${RESIN_HOME}" - einfo " Contains application data, configuration files." - einfo " 2. Runtime settings: /etc/conf.d/resin" - einfo " Contains CLASSPATH and JAVA_HOME settings." - einfo " 3. Logs: /var/log/resin/" - einfo " 4. Executables, libraries: /usr/share/resin-ee/" - einfo - einfo " STARTING AND STOPPING RESIN:" - einfo " /etc/init.d/resin start" - einfo " /etc/init.d/resin stop" - einfo " /etc/init.d/resin restart" - einfo - einfo " NETWORK CONFIGURATION:" - einfo " By default, Resin runs on port 8080. You can change this" - einfo " value by editing ${RESIN_HOME}/conf/resin.conf." - einfo - einfo " To test Resin while it's running, point your web browser to:" - einfo " http://localhost:8080/" - einfo - einfo " Be sure to allow Resin a minute or two to compile the pages" - einfo " the first time you run it." - einfo - einfo " Resin cannot run on port 80 as non-root (as of this time)." - einfo " The best way to get Resin to respond on port 80 is via port" - einfo " forwarding -- by installing a firewall on the machine running" - einfo " Resin or the network gateway. Simply redirect port 80 to" - einfo " port 8080." - einfo - einfo " BUGS:" - einfo " Please file any bugs at http://bugs.gentoo.org/ or else it" - einfo " may not get seen. Thank you." - einfo -} - -pkg_postrm() { - einfo "You may want to remove the resin user and group" -} |