diff options
author | William Thomson <wltjr@gentoo.org> | 2006-12-05 01:04:57 +0000 |
---|---|---|
committer | William Thomson <wltjr@gentoo.org> | 2006-12-05 01:04:57 +0000 |
commit | 860757a9b68872fc7bbb071559e9f6381929191f (patch) | |
tree | f65fb82b3a96289779229b0f9938cdd20ae50ec5 /dev-java/datavision-bin/datavision-bin-0.8.1-r1.ebuild | |
parent | Remove x11-wm/papuawm from tree. (bug #153222) (diff) | |
download | gentoo-2-860757a9b68872fc7bbb071559e9f6381929191f.tar.gz gentoo-2-860757a9b68872fc7bbb071559e9f6381929191f.tar.bz2 gentoo-2-860757a9b68872fc7bbb071559e9f6381929191f.zip |
Removed datavision-bin, binary package replaced by non-bin compiled from source. Package was moved before removal.
Diffstat (limited to 'dev-java/datavision-bin/datavision-bin-0.8.1-r1.ebuild')
-rw-r--r-- | dev-java/datavision-bin/datavision-bin-0.8.1-r1.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/dev-java/datavision-bin/datavision-bin-0.8.1-r1.ebuild b/dev-java/datavision-bin/datavision-bin-0.8.1-r1.ebuild deleted file mode 100644 index 9a75cceb88e8..000000000000 --- a/dev-java/datavision-bin/datavision-bin-0.8.1-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/datavision-bin/datavision-bin-0.8.1-r1.ebuild,v 1.5 2005/07/16 14:25:43 axxo Exp $ - -DESCRIPTION="DataVision is an Open Source reporting tool similar to Crystal Reports" -SRC_URI="mirror://sourceforge/datavision/${P/-bin}.tar.gz" -HOMEPAGE="http://datavision.sourceforge.net/" - -IUSE="mysql postgres" - -SLOT="0" -LICENSE="Apache-1.1" -KEYWORDS="x86 amd64 ~ppc" - -DEPEND="" -RDEPEND=">=virtual/jre-1.3 \ - mysql? ( >=dev-java/jdbc-mysql-3.0 ) \ - postgres? ( >=dev-java/jdbc2-postgresql-7.3 )" - -DATAVISION_HOME=/opt/datavision - -S=${WORKDIR}/${P/-bin} - -src_compile() { :; } - -src_install() { - dodir ${DATAVISION_HOME} - cp -r * ${D}${DATAVISION_HOME} -} - -pkg_postinst() { - einfo "CONFIGURATION NOTES" - echo - einfo "Make sure your CLASSPATH variable is updated via java-config(1)" - einfo "to use your desired JDBC driver." - echo - einfo "You must then create a database. Run ${DATAVISION_HOME}/datavision.sh" - einfo "and fill the connection dialog box with your database details." - - if use mysql; then - echo - echo "MySQL example:" - eerror "Driver class name: com.mysql.jdbc.Drive" - eerror "Connection: jdbc:mysql://localhost/database" - fi - - if use postgres; then - echo - echo "PostgreSQL example:" - eerror "Driver class name:org.postgresql.Driver" - eerror "Connection: jdbc:postgresql://localhost/database" - fi -} |