diff options
-rw-r--r-- | dev-db/tora/tora-1.3.10.ebuild | 57 | ||||
-rw-r--r-- | dev-db/tora/tora-1.3.8.ebuild | 63 | ||||
-rw-r--r-- | dev-db/tora/tora-1.3.9.2.ebuild | 58 | ||||
-rw-r--r-- | dev-java/blackdown-jdk/blackdown-jdk-1.4.1.ebuild | 4 | ||||
-rw-r--r-- | dev-java/dom4j/dom4j-1.3.ebuild | 18 | ||||
-rw-r--r-- | dev-java/dom4j/dom4j-1.4.ebuild | 18 |
6 files changed, 112 insertions, 106 deletions
diff --git a/dev-db/tora/tora-1.3.10.ebuild b/dev-db/tora/tora-1.3.10.ebuild index add81db56f55..b60303a2119b 100644 --- a/dev-db/tora/tora-1.3.10.ebuild +++ b/dev-db/tora/tora-1.3.10.ebuild @@ -1,26 +1,43 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-1.3.10.ebuild,v 1.1 2003/07/25 14:47:03 rizzo Exp $ +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-1.3.10.ebuild,v 1.2 2003/08/05 18:50:06 vapier Exp $ -S=${WORKDIR}/${P} DESCRIPTION="TOra - Toolkit For Oracle" -SRC_URI="mirror://sourceforge/${PN}/${PN}-alpha-${PV}.tar.gz" HOMEPAGE="http://www.globecom.se/tora/" -DEPEND=">=x11-libs/qt-3.0.0 - dev-lang/perl - kde? ( >=kde-base/kdebase-3.1 )" +SRC_URI="mirror://sourceforge/${PN}/${PN}-alpha-${PV}.tar.gz" + +LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" -LICENSE="GPL-2" + +DEPEND=">=x11-libs/qt-3.0.0 + dev-lang/perl + kde? ( >=kde-base/kdebase-3.1 )" + +pkg_setup() { + if [ "`use oci8`" -a ! $ORACLE_HOME ] ; then + einfo "ORACLE_HOME variable is not set." + einfo "" + einfo "You must install Oracle >= 8i client for Linux in" + einfo "order to compile TOra with Oracle support." + einfo "" + einfo "Otherwise specify -oci8 in your USE variable." + einfo "" + einfo "You can download the Oracle software from" + einfo "http://otn.oracle.com/software/content.html" + die + fi +} src_compile() { local myconf - use kde && myconf="$myconf --with-kde" \ - || myconf="$myconf --without-kde" - use oci8 || myconf="$myconf --without-oracle" + use kde \ + && myconf="$myconf --with-kde" \ + || myconf="$myconf --without-kde" + use oci8 || myconf="$myconf --without-oracle" - ./configure --prefix=/usr --with-mono $myconf + ./configure --prefix=/usr --with-mono $myconf || die "conf failed" emake || die "emake failed" } @@ -28,19 +45,3 @@ src_install() { dodir ${D}/usr/bin einstall ROOT=${D} } - -pkg_setup () { - - if [ "`use oci8`" -a ! $ORACLE_HOME ] ; then - einfo "ORACLE_HOME variable is not set." - einfo "" - einfo "You must install Oracle >= 8i client for Linux in" - einfo "order to compile TOra with Oracle support." - einfo "" - einfo "Otherwise specify -oci8 in your USE variable." - einfo "" - einfo "You can download the Oracle software from" - einfo "http://otn.oracle.com/software/content.html" - die - fi -} diff --git a/dev-db/tora/tora-1.3.8.ebuild b/dev-db/tora/tora-1.3.8.ebuild index 9f329c74dd55..86fdc080412a 100644 --- a/dev-db/tora/tora-1.3.8.ebuild +++ b/dev-db/tora/tora-1.3.8.ebuild @@ -1,29 +1,48 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-1.3.8.ebuild,v 1.3 2003/07/11 21:04:18 aliz Exp $ +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-1.3.8.ebuild,v 1.4 2003/08/05 18:50:06 vapier Exp $ -S=${WORKDIR}/${P} DESCRIPTION="TOra - Toolkit For Oracle" -SRC_URI="http://unc.dl.sourceforge.net/sourceforge/${PN}/${PN}-alpha-${PV}.tar.gz" HOMEPAGE="http://www.globecom.se/tora/" -DEPEND=">=x11-libs/qt-3.0.0 - mysql? ( >=dev-db/mysql-3.23 ) - postgres? ( >=dev-db/postgresql-7.1 )" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/${PN}/${PN}-alpha-${PV}.tar.gz" + +LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" -LICENSE="GPL-2" + +DEPEND=">=x11-libs/qt-3.0.0 + mysql? ( >=dev-db/mysql-3.23 ) + postgres? ( >=dev-db/postgresql-7.1 )" + +pkg_setup() { + if [ "`use oci8`" -a ! $ORACLE_HOME ] ; then + einfo "ORACLE_HOME variable is not set." + einfo "" + einfo "You must install Oracle >= 8i client for Linux in" + einfo "order to compile TOra with Oracle support." + einfo "" + einfo "Otherwise specify -oci8 in your USE variable." + einfo "" + einfo "You can download the Oracle software from" + einfo "http://otn.oracle.com/software/content.html" + die + fi +} src_compile() { local myconf - use kde && myconf="$myconf --with-kde" \ - || myconf="$myconf --without-kde" - use mysql && myconf="$myconf" \ - || myconf="$myconf --without-mysql" + use kde \ + && myconf="$myconf --with-kde" \ + || myconf="$myconf --without-kde" + use mysql \ + && myconf="$myconf" \ + || myconf="$myconf --without-mysql" # use postgres && myconf="$myconf" \ # || myconf="$myconf --without-postgres" - use oci8 && myconf="$myconf" \ - || myconf="$myconf --without-oracle" + use oci8 \ + && myconf="$myconf" \ + || myconf="$myconf --without-oracle" #patch -p0 < ${FILESDIR}/tora-${PV}.patch @@ -40,19 +59,3 @@ src_install() { ROOT=${D} \ install || die "make install failed" } - -pkg_setup () { - - if [ "`use oci8`" -a ! $ORACLE_HOME ] ; then - einfo "ORACLE_HOME variable is not set." - einfo "" - einfo "You must install Oracle >= 8i client for Linux in" - einfo "order to compile TOra with Oracle support." - einfo "" - einfo "Otherwise specify -oci8 in your USE variable." - einfo "" - einfo "You can download the Oracle software from" - einfo "http://otn.oracle.com/software/content.html" - die - fi -} diff --git a/dev-db/tora/tora-1.3.9.2.ebuild b/dev-db/tora/tora-1.3.9.2.ebuild index d14d3210bb4b..34e6578bf419 100644 --- a/dev-db/tora/tora-1.3.9.2.ebuild +++ b/dev-db/tora/tora-1.3.9.2.ebuild @@ -1,26 +1,44 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-1.3.9.2.ebuild,v 1.4 2003/07/25 14:39:02 rizzo Exp $ +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-1.3.9.2.ebuild,v 1.5 2003/08/05 18:50:06 vapier Exp $ -S=${WORKDIR}/${P} DESCRIPTION="TOra - Toolkit For Oracle" -SRC_URI="mirror://sourceforge/${PN}/${PN}-alpha-${PV}.tar.gz" HOMEPAGE="http://www.globecom.se/tora/" -DEPEND=">=x11-libs/qt-3.0.0 - dev-lang/perl - kde? ( >=kde-base/kdebase-2.2 )" +SRC_URI="mirror://sourceforge/${PN}/${PN}-alpha-${PV}.tar.gz" + +LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" -LICENSE="GPL-2" + +DEPEND=">=x11-libs/qt-3.0.0 + dev-lang/perl + kde? ( >=kde-base/kdebase-2.2 )" + +pkg_setup() { + if [ "`use oci8`" -a ! $ORACLE_HOME ] ; then + einfo "ORACLE_HOME variable is not set." + einfo "" + einfo "You must install Oracle >= 8i client for Linux in" + einfo "order to compile TOra with Oracle support." + einfo "" + einfo "Otherwise specify -oci8 in your USE variable." + einfo "" + einfo "You can download the Oracle software from" + einfo "http://otn.oracle.com/software/content.html" + die + fi +} src_compile() { local myconf - use kde && myconf="$myconf --with-kde" \ - || myconf="$myconf --without-kde" - use oci8 || myconf="$myconf --without-oracle" + use kde \ + && myconf="$myconf --with-kde" \ + || myconf="$myconf --without-kde" + use oci8 \ + || myconf="$myconf --without-oracle" - ./configure --prefix=/usr --with-mono $myconf + ./configure --prefix=/usr --with-mono $myconf || die "conf failed" emake || die "emake failed" } @@ -28,19 +46,3 @@ src_install() { dodir ${D}/usr/bin einstall ROOT=${D} } - -pkg_setup () { - - if [ "`use oci8`" -a ! $ORACLE_HOME ] ; then - einfo "ORACLE_HOME variable is not set." - einfo "" - einfo "You must install Oracle >= 8i client for Linux in" - einfo "order to compile TOra with Oracle support." - einfo "" - einfo "Otherwise specify -oci8 in your USE variable." - einfo "" - einfo "You can download the Oracle software from" - einfo "http://otn.oracle.com/software/content.html" - die - fi -} diff --git a/dev-java/blackdown-jdk/blackdown-jdk-1.4.1.ebuild b/dev-java/blackdown-jdk/blackdown-jdk-1.4.1.ebuild index 542e3f628eac..045f624a1b7e 100644 --- a/dev-java/blackdown-jdk/blackdown-jdk-1.4.1.ebuild +++ b/dev-java/blackdown-jdk/blackdown-jdk-1.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-java/blackdown-jdk/blackdown-jdk-1.4.1.ebuild,v 1.5 2003/06/19 00:48:55 absinthe Exp $ +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/blackdown-jdk/blackdown-jdk-1.4.1.ebuild,v 1.6 2003/08/05 18:50:31 vapier Exp $ IUSE="doc" diff --git a/dev-java/dom4j/dom4j-1.3.ebuild b/dev-java/dom4j/dom4j-1.3.ebuild index 11ad137bdb4b..21ab7747a0d8 100644 --- a/dev-java/dom4j/dom4j-1.3.ebuild +++ b/dev-java/dom4j/dom4j-1.3.ebuild @@ -1,24 +1,24 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-java/dom4j/dom4j-1.3.ebuild,v 1.6 2003/03/03 12:56:57 vladimir Exp $ +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/dom4j/dom4j-1.3.ebuild,v 1.7 2003/08/05 18:51:54 vapier Exp $ -S=${WORKDIR}/dom4j-${PV} -DESCRIPTION="dom4j is an easy to use, open source library for working with XML, XPath and XSLT on the Java platform using the Java Collections Framework and with full support for DOM, SAX and JAXP." +DESCRIPTION="easy to use, open source library for working with XML, XPath and XSLT on the Java platform using the Java Collections Framework and with full support for DOM, SAX and JAXP." +HOMEPAGE="http://dom4j.sourceforge.net/" SRC_URI="mirror://sourceforge/dom4j/${P}.tar.gz" -HOMEPAGE="http://dom4j.sourceforge.net" -DEPEND=">=virtual/jdk-1.3" -RDEPEND=">=virtual/jdk-1.3" + LICENSE="Apache-1.1" SLOT="0" KEYWORDS="x86" -IUSE="" + +DEPEND=">=virtual/jdk-1.3" +RDEPEND=">=virtual/jdk-1.3" src_compile() { cd ${WORKDIR}/dom4j-patched-${PV} sh build.sh || die "Compilation Failed" } -src_install () { +src_install() { cd ${WORKDIR}/dom4j-patched-${PV} # If you need another jar change the name # of the file in dojar to the one you need diff --git a/dev-java/dom4j/dom4j-1.4.ebuild b/dev-java/dom4j/dom4j-1.4.ebuild index 4b62ba122642..de152c540dfc 100644 --- a/dev-java/dom4j/dom4j-1.4.ebuild +++ b/dev-java/dom4j/dom4j-1.4.ebuild @@ -1,24 +1,24 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-java/dom4j/dom4j-1.4.ebuild,v 1.1 2003/04/23 06:16:50 strider Exp $ +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/dom4j/dom4j-1.4.ebuild,v 1.2 2003/08/05 18:51:54 vapier Exp $ -S=${WORKDIR}/dom4j-${PV} -DESCRIPTION="dom4j is an easy to use, open source library for working with XML, XPath and XSLT on the Java platform using the Java Collections Framework and with full support for DOM, SAX and JAXP." +DESCRIPTION="easy to use, open source library for working with XML, XPath and XSLT on the Java platform using the Java Collections Framework and with full support for DOM, SAX and JAXP." +HOMEPAGE="http://dom4j.sourceforge.net/" SRC_URI="mirror://sourceforge/dom4j/${P}.tar.gz" -HOMEPAGE="http://dom4j.sourceforge.net" -DEPEND=">=virtual/jdk-1.3" -RDEPEND=">=virtual/jdk-1.3" + LICENSE="Apache-1.1" SLOT="0" KEYWORDS="x86" -IUSE="" + +DEPEND=">=virtual/jdk-1.3" +RDEPEND=">=virtual/jdk-1.3" src_compile() { cd ${WORKDIR}/dom4j-${PV} sh build.sh || die "Compilation Failed" } -src_install () { +src_install() { cd ${WORKDIR}/dom4j-${PV} # If you need another jar change the name # of the file in dojar to the one you need |