diff options
-rw-r--r-- | dev-util/gambas/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/gambas/files/digest-gambas-0.99 | 1 | ||||
-rw-r--r-- | dev-util/gambas/files/digest-gambas-1.0.1 | 1 | ||||
-rw-r--r-- | dev-util/gambas/files/digest-gambas-1.0.2 | 1 | ||||
-rw-r--r-- | dev-util/gambas/files/digest-gambas-1.0.3 | 1 | ||||
-rw-r--r-- | dev-util/gambas/gambas-0.99.ebuild | 75 | ||||
-rw-r--r-- | dev-util/gambas/gambas-1.0.1.ebuild | 82 | ||||
-rw-r--r-- | dev-util/gambas/gambas-1.0.2.ebuild | 82 | ||||
-rw-r--r-- | dev-util/gambas/gambas-1.0.3.ebuild | 82 | ||||
-rw-r--r-- | dev-util/gambas/gambas-1.0.4.ebuild | 4 |
10 files changed, 8 insertions, 328 deletions
diff --git a/dev-util/gambas/ChangeLog b/dev-util/gambas/ChangeLog index 2f45dc8f9703..fff2f23c3475 100644 --- a/dev-util/gambas/ChangeLog +++ b/dev-util/gambas/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/gambas # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/ChangeLog,v 1.26 2005/03/12 21:45:02 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/ChangeLog,v 1.27 2005/04/06 07:40:59 genone Exp $ + + 06 Apr 2005; Marius Mauch <genone@gentoo.org> -gambas-0.99.ebuild, + -gambas-1.0.1.ebuild, -gambas-1.0.2.ebuild, -gambas-1.0.3.ebuild, + gambas-1.0.4.ebuild: + Marking 1.0.4 stable, cleaning out older versions. *gambas-1.0.4 (12 Mar 2005) diff --git a/dev-util/gambas/files/digest-gambas-0.99 b/dev-util/gambas/files/digest-gambas-0.99 deleted file mode 100644 index b134ef29529d..000000000000 --- a/dev-util/gambas/files/digest-gambas-0.99 +++ /dev/null @@ -1 +0,0 @@ -MD5 5611449f03da1479f76c797b2b433c41 gambas-0.99.tar.bz2 3493163 diff --git a/dev-util/gambas/files/digest-gambas-1.0.1 b/dev-util/gambas/files/digest-gambas-1.0.1 deleted file mode 100644 index a4a1a7a95358..000000000000 --- a/dev-util/gambas/files/digest-gambas-1.0.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 27c8b15d41a416cf4ad5ca0a554d9356 gambas-1.0.1.tar.bz2 4190666 diff --git a/dev-util/gambas/files/digest-gambas-1.0.2 b/dev-util/gambas/files/digest-gambas-1.0.2 deleted file mode 100644 index 97d9cc36299d..000000000000 --- a/dev-util/gambas/files/digest-gambas-1.0.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 26d1034483903c3ca19bd6a302990138 gambas-1.0.2.tar.bz2 4196587 diff --git a/dev-util/gambas/files/digest-gambas-1.0.3 b/dev-util/gambas/files/digest-gambas-1.0.3 deleted file mode 100644 index 82516e43381f..000000000000 --- a/dev-util/gambas/files/digest-gambas-1.0.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 96ae0e75822d309f2d02bd98ebf86dbd gambas-1.0.3.tar.bz2 4198319 diff --git a/dev-util/gambas/gambas-0.99.ebuild b/dev-util/gambas/gambas-0.99.ebuild deleted file mode 100644 index 3295f01df43b..000000000000 --- a/dev-util/gambas/gambas-0.99.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/gambas-0.99.ebuild,v 1.3 2005/01/09 22:46:13 genone Exp $ - -inherit eutils - -DESCRIPTION="a RAD tool for BASIC" -HOMEPAGE="http://gambas.sourceforge.net" -SRC_URI="http://gambas.sourceforge.net/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" -IUSE="postgres mysql sdl doc curl debug sqlite" - -DEPEND=">=sys-devel/automake-1.7.5 - >=x11-libs/qt-3.2 - >=kde-base/kdelibs-3.2 - sdl? ( media-libs/libsdl ) - mysql? ( dev-db/mysql ) - postgres? ( dev-db/postgresql ) - curl? ( net-misc/curl ) - sqlite? ( dev-db/sqlite )" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i 's:-Os::' configure - # replace braindead Makefile - rm Makefile* - cp "${FILESDIR}/Makefile.am-0.97a" ./Makefile.am - # patches against hardcoded paths - #epatch ${FILESDIR}/non-symlink-0.95.patch - - automake -} - -src_compile() { - local myconf - - myconf="${myconf} --enable-kde --enable-qt" - myconf="${myconf} `use_enable mysql`" - myconf="${myconf} `use_enable postgres`" - myconf="${myconf} `use_enable sqlite`" - myconf="${myconf} `use_enable sdl`" - myconf="${myconf} `use_enable curl`" - - if use debug ; then - myconf="${myconf} --disable-optimization --enable-debug" - else - myconf="${myconf} --enable-optimization --disable-debug" - fi - - econf ${myconf} || die - - emake || die -} - -src_install() { - export PATH="${D}/usr/bin:${PATH}" - einstall || die - - dodoc README INSTALL NEWS AUTHORS ChangeLog TODO - - # only install the API docs and examples with USE=doc - if use doc; then - mv ${D}/usr/share/${PN}/help ${D}/usr/share/doc/${PF}/html - mv ${D}/usr/share/${PN}/examples ${D}/usr/share/doc/${PF}/examples - else - dohtml ${FILESDIR}/WebHome.html - fi - rm -rf ${D}/usr/share/${PN}/help ${D}/usr/share/${PN}/examples - dosym ../doc/${PF}/html /usr/share/${PN}/help - dosym ../doc/${PF}/examples /usr/share/${PN}/examples -} diff --git a/dev-util/gambas/gambas-1.0.1.ebuild b/dev-util/gambas/gambas-1.0.1.ebuild deleted file mode 100644 index 9e4a26ea2821..000000000000 --- a/dev-util/gambas/gambas-1.0.1.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/gambas-1.0.1.ebuild,v 1.2 2005/03/08 00:41:59 genone Exp $ - -inherit eutils - -DESCRIPTION="a RAD tool for BASIC" -HOMEPAGE="http://gambas.sourceforge.net" -SRC_URI="http://gambas.sourceforge.net/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" -IUSE="postgres mysql sdl doc curl debug sqlite xml xsl zlib kde" - -DEPEND=">=sys-devel/automake-1.7.5 - >=x11-libs/qt-3.2 - kde? ( >=kde-base/kdelibs-3.2 ) - sdl? ( media-libs/libsdl media-libs/sdl-mixer sys-libs/gpm ) - mysql? ( dev-db/mysql ) - postgres? ( dev-db/postgresql ) - curl? ( net-misc/curl ) - sqlite? ( dev-db/sqlite ) - xml? ( dev-libs/libxml2 ) - xsl? ( dev-libs/libxslt ) - zlib? ( sys-libs/zlib app-arch/bzip2 )" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i 's:-Os::' configure - # replace braindead Makefile (it's getting better, but - # still has the stupid symlink stuff) - rm Makefile* - cp "${FILESDIR}/Makefile.am-1.0_rc2" ./Makefile.am - - automake -} - -src_compile() { - local myconf - - myconf="${myconf} --enable-qt --enable-net --enable-vb" - myconf="${myconf} `use_enable mysql`" - myconf="${myconf} `use_enable postgres`" - myconf="${myconf} `use_enable sqlite`" - myconf="${myconf} `use_enable sdl`" - myconf="${myconf} `use_enable curl`" - myconf="${myconf} `use_enable zlib`" - myconf="${myconf} `use_enable xml2 libxml`" - myconf="${myconf} `use_enable xsl xslt`" - myconf="${myconf} `use_enable zlib bzlib2`" - myconf="${myconf} `use_enable kde`" - - if use debug ; then - myconf="${myconf} --disable-optimization --enable-debug --enable-profiling" - else - myconf="${myconf} --enable-optimization --disable-debug --disable-profiling" - fi - - econf ${myconf} || die - - emake || die -} - -src_install() { - export PATH="${D}/usr/bin:${PATH}" - make DESTDIR="$D" install || die - - dodoc README INSTALL NEWS AUTHORS ChangeLog TODO - - # only install the API docs and examples with USE=doc - if use doc; then - mv ${D}/usr/share/${PN}/help ${D}/usr/share/doc/${PF}/html - mv ${D}/usr/share/${PN}/examples ${D}/usr/share/doc/${PF}/examples - else - dohtml ${FILESDIR}/WebHome.html - fi - rm -rf ${D}/usr/share/${PN}/help ${D}/usr/share/${PN}/examples - dosym ../doc/${PF}/html /usr/share/${PN}/help - dosym ../doc/${PF}/examples /usr/share/${PN}/examples -} diff --git a/dev-util/gambas/gambas-1.0.2.ebuild b/dev-util/gambas/gambas-1.0.2.ebuild deleted file mode 100644 index c712d0f2600f..000000000000 --- a/dev-util/gambas/gambas-1.0.2.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/gambas-1.0.2.ebuild,v 1.2 2005/03/08 00:41:59 genone Exp $ - -inherit eutils - -DESCRIPTION="a RAD tool for BASIC" -HOMEPAGE="http://gambas.sourceforge.net" -SRC_URI="http://gambas.sourceforge.net/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" -IUSE="postgres mysql sdl doc curl debug sqlite xml xsl zlib kde" - -DEPEND=">=sys-devel/automake-1.7.5 - >=x11-libs/qt-3.2 - kde? ( >=kde-base/kdelibs-3.2 ) - sdl? ( media-libs/libsdl media-libs/sdl-mixer sys-libs/gpm ) - mysql? ( dev-db/mysql ) - postgres? ( dev-db/postgresql ) - curl? ( net-misc/curl ) - sqlite? ( dev-db/sqlite ) - xml? ( dev-libs/libxml2 ) - xsl? ( dev-libs/libxslt ) - zlib? ( sys-libs/zlib app-arch/bzip2 )" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i 's:-Os::' configure - # replace braindead Makefile (it's getting better, but - # still has the stupid symlink stuff) - rm Makefile* - cp "${FILESDIR}/Makefile.am-1.0_rc2" ./Makefile.am - - automake -} - -src_compile() { - local myconf - - myconf="${myconf} --enable-qt --enable-net --enable-vb" - myconf="${myconf} `use_enable mysql`" - myconf="${myconf} `use_enable postgres`" - myconf="${myconf} `use_enable sqlite`" - myconf="${myconf} `use_enable sdl`" - myconf="${myconf} `use_enable curl`" - myconf="${myconf} `use_enable zlib`" - myconf="${myconf} `use_enable xml2 libxml`" - myconf="${myconf} `use_enable xsl xslt`" - myconf="${myconf} `use_enable zlib bzlib2`" - myconf="${myconf} `use_enable kde`" - - if use debug ; then - myconf="${myconf} --disable-optimization --enable-debug --enable-profiling" - else - myconf="${myconf} --enable-optimization --disable-debug --disable-profiling" - fi - - econf ${myconf} || die - - emake || die -} - -src_install() { - export PATH="${D}/usr/bin:${PATH}" - make DESTDIR="$D" install || die - - dodoc README INSTALL NEWS AUTHORS ChangeLog TODO - - # only install the API docs and examples with USE=doc - if use doc; then - mv ${D}/usr/share/${PN}/help ${D}/usr/share/doc/${PF}/html - mv ${D}/usr/share/${PN}/examples ${D}/usr/share/doc/${PF}/examples - else - dohtml ${FILESDIR}/WebHome.html - fi - rm -rf ${D}/usr/share/${PN}/help ${D}/usr/share/${PN}/examples - dosym ../doc/${PF}/html /usr/share/${PN}/help - dosym ../doc/${PF}/examples /usr/share/${PN}/examples -} diff --git a/dev-util/gambas/gambas-1.0.3.ebuild b/dev-util/gambas/gambas-1.0.3.ebuild deleted file mode 100644 index b4599d2c4f91..000000000000 --- a/dev-util/gambas/gambas-1.0.3.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/gambas-1.0.3.ebuild,v 1.1 2005/03/08 00:41:59 genone Exp $ - -inherit eutils - -DESCRIPTION="a RAD tool for BASIC" -HOMEPAGE="http://gambas.sourceforge.net" -SRC_URI="http://gambas.sourceforge.net/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="postgres mysql sdl doc curl debug sqlite xml xsl zlib kde" - -DEPEND=">=sys-devel/automake-1.7.5 - >=x11-libs/qt-3.2 - kde? ( >=kde-base/kdelibs-3.2 ) - sdl? ( media-libs/libsdl media-libs/sdl-mixer sys-libs/gpm ) - mysql? ( dev-db/mysql ) - postgres? ( dev-db/postgresql ) - curl? ( net-misc/curl ) - sqlite? ( dev-db/sqlite ) - xml? ( dev-libs/libxml2 ) - xsl? ( dev-libs/libxslt ) - zlib? ( sys-libs/zlib app-arch/bzip2 )" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i 's:-Os::' configure - # replace braindead Makefile (it's getting better, but - # still has the stupid symlink stuff) - rm Makefile* - cp "${FILESDIR}/Makefile.am-1.0_rc2" ./Makefile.am - - automake -} - -src_compile() { - local myconf - - myconf="${myconf} --enable-qt --enable-net --enable-vb" - myconf="${myconf} `use_enable mysql`" - myconf="${myconf} `use_enable postgres`" - myconf="${myconf} `use_enable sqlite`" - myconf="${myconf} `use_enable sdl`" - myconf="${myconf} `use_enable curl`" - myconf="${myconf} `use_enable zlib`" - myconf="${myconf} `use_enable xml2 libxml`" - myconf="${myconf} `use_enable xsl xslt`" - myconf="${myconf} `use_enable zlib bzlib2`" - myconf="${myconf} `use_enable kde`" - - if use debug ; then - myconf="${myconf} --disable-optimization --enable-debug --enable-profiling" - else - myconf="${myconf} --enable-optimization --disable-debug --disable-profiling" - fi - - econf ${myconf} || die - - emake || die -} - -src_install() { - export PATH="${D}/usr/bin:${PATH}" - make DESTDIR="$D" install || die - - dodoc README INSTALL NEWS AUTHORS ChangeLog TODO - - # only install the API docs and examples with USE=doc - if use doc; then - mv ${D}/usr/share/${PN}/help ${D}/usr/share/doc/${PF}/html - mv ${D}/usr/share/${PN}/examples ${D}/usr/share/doc/${PF}/examples - else - dohtml ${FILESDIR}/WebHome.html - fi - rm -rf ${D}/usr/share/${PN}/help ${D}/usr/share/${PN}/examples - dosym ../doc/${PF}/html /usr/share/${PN}/help - dosym ../doc/${PF}/examples /usr/share/${PN}/examples -} diff --git a/dev-util/gambas/gambas-1.0.4.ebuild b/dev-util/gambas/gambas-1.0.4.ebuild index c7b5d639399d..5d2a31bbbc02 100644 --- a/dev-util/gambas/gambas-1.0.4.ebuild +++ b/dev-util/gambas/gambas-1.0.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/gambas-1.0.4.ebuild,v 1.1 2005/03/12 21:45:02 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gambas/gambas-1.0.4.ebuild,v 1.2 2005/04/06 07:40:59 genone Exp $ inherit eutils @@ -10,7 +10,7 @@ SRC_URI="http://gambas.sourceforge.net/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="x86" IUSE="postgres mysql sdl doc curl debug sqlite xml xsl zlib kde" DEPEND=">=sys-devel/automake-1.7.5 |