commit: 7499f720d5498a6e6d53110fa4e16c1c22073ddf Author: Justin Lecher <jlec <AT> gentoo <DOT> org> AuthorDate: Tue Sep 22 10:31:48 2015 +0000 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org> CommitDate: Tue Sep 22 10:31:48 2015 +0000 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=7499f720
Drop obsolete Sources unavailable Signed-off-by: Justin Lecher <jlec <AT> gentoo.org> dev-db/monetdb-client/ChangeLog | 8 -- dev-db/monetdb-client/metadata.xml | 7 -- dev-db/monetdb-client/monetdb-client-1.38.3.ebuild | 86 -------------------- dev-db/monetdb-client/monetdb-client-1.40.1.ebuild | 85 ------------------- dev-db/monetdb-client/monetdb-client-1.40.3.ebuild | 85 ------------------- dev-db/monetdb-common/ChangeLog | 8 -- dev-db/monetdb-common/metadata.xml | 7 -- dev-db/monetdb-common/monetdb-common-1.38.3.ebuild | 69 ---------------- dev-db/monetdb-common/monetdb-common-1.40.1.ebuild | 68 ---------------- dev-db/monetdb-common/monetdb-common-1.40.3.ebuild | 68 ---------------- dev-db/monetdb-sql/ChangeLog | 8 -- dev-db/monetdb-sql/files/monetdb.conf-5.2.0 | 4 - dev-db/monetdb-sql/files/monetdb.init-5.2.0 | 29 ------- dev-db/monetdb-sql/metadata.xml | 10 --- dev-db/monetdb-sql/monetdb-sql-2.38.3.ebuild | 92 --------------------- dev-db/monetdb-sql/monetdb-sql-2.40.1.ebuild | 91 --------------------- dev-db/monetdb-sql/monetdb-sql-2.40.3.ebuild | 91 --------------------- dev-db/monetdb5-server/ChangeLog | 8 -- dev-db/monetdb5-server/metadata.xml | 10 --- .../monetdb5-server/monetdb5-server-5.20.3.ebuild | 95 ---------------------- .../monetdb5-server/monetdb5-server-5.22.1.ebuild | 94 --------------------- .../monetdb5-server/monetdb5-server-5.22.3.ebuild | 94 --------------------- 22 files changed, 1117 deletions(-) diff --git a/dev-db/monetdb-client/ChangeLog b/dev-db/monetdb-client/ChangeLog deleted file mode 100644 index 2e60428..0000000 --- a/dev-db/monetdb-client/ChangeLog +++ /dev/null @@ -1,8 +0,0 @@ -# ChangeLog for dev-db/monetdb-client -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Id$ - - 13 Oct 2013; Justin Lecher <[email protected]> monetdb-client-1.38.3.ebuild, - monetdb-client-1.40.1.ebuild, monetdb-client-1.40.3.ebuild, +metadata.xml: - QA fixes - diff --git a/dev-db/monetdb-client/metadata.xml b/dev-db/monetdb-client/metadata.xml deleted file mode 100644 index a759be0..0000000 --- a/dev-db/monetdb-client/metadata.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer> - <email>[email protected]</email> - </maintainer> -</pkgmetadata> diff --git a/dev-db/monetdb-client/monetdb-client-1.38.3.ebuild b/dev-db/monetdb-client/monetdb-client-1.38.3.ebuild deleted file mode 100644 index 0b3f69d..0000000 --- a/dev-db/monetdb-client/monetdb-client-1.38.3.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic - -MY_PN="MonetDB-client" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="libraries and programs to communicate with the server(s) that are part of the MonetDB/SQL suite" -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Jun2010-SP1/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="debug python perl php ruby curl iconv bzip2 zlib odbc" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - python? ( >=dev-lang/python-2.4 ) - perl? ( dev-lang/perl ) - php? ( dev-lang/php ) - ruby? ( dev-lang/ruby ) - curl? ( net-misc/curl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - odbc? ( dev-db/unixODBC ) - >=dev-db/monetdb-common-1.38.0 - !!dev-db/monetdb" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use python && myconf+=" $(use_with python)" - use perl && myconf+=" $(use_with perl)" - use php && myconf+=" $(use_with php)" - use ruby && myconf+=" $(use_with ruby)" - use curl && myconf+=" $(use_with curl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - use odbc && myconf+=" $(use_with odbc unixodbc)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb-clients-config - dosbin conf/monetdb-clients-config - - # remove testing framework and compiled tests - rm -rf "${D}"/usr/lib/MonetDB/Tests "${D}"/usr/lib64/MonetDB/Tests || true - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" - - # remove unwanted parts - use php || rm -rf "${D}"/usr/share/php || true - use perl || rm -rf "${D}"/usr/share/MonetDB/perl "${D}"/usr/lib/perl "${D}"/usr/lib64/perl5 || true - use python || rm -rf "${D}"/usr/lib64/python2.6 || true - use odbc || \ - rm -rf "${D}"/usr/lib/libMonetODBC* "${D}"/usr/lib64/libMonetODBC* "${D}"/usr/include/MonetDB/odbc/ || true -} diff --git a/dev-db/monetdb-client/monetdb-client-1.40.1.ebuild b/dev-db/monetdb-client/monetdb-client-1.40.1.ebuild deleted file mode 100644 index c1a549c..0000000 --- a/dev-db/monetdb-client/monetdb-client-1.40.1.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic - -MY_PN="MonetDB-client" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="libraries and programs to communicate with the server(s) that are part of the MonetDB/SQL suite" -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Oct2010/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="debug python perl php ruby curl iconv bzip2 zlib odbc" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - python? ( >=dev-lang/python-2.4 ) - perl? ( dev-lang/perl ) - php? ( dev-lang/php ) - ruby? ( dev-lang/ruby ) - curl? ( net-misc/curl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - odbc? ( dev-db/unixODBC ) - >=dev-db/monetdb-common-1.40.1" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use python && myconf+=" $(use_with python)" - use perl && myconf+=" $(use_with perl)" - use php && myconf+=" $(use_with php)" - use ruby && myconf+=" $(use_with ruby)" - use curl && myconf+=" $(use_with curl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - use odbc && myconf+=" $(use_with odbc unixodbc)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb-clients-config - dosbin conf/monetdb-clients-config - - # remove testing framework and compiled tests - rm -rf "${D}"/usr/lib/MonetDB/Tests "${D}"/usr/lib64/MonetDB/Tests || true - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" - - # remove unwanted parts - use php || rm -rf "${D}"/usr/share/php || true - use perl || rm -rf "${D}"/usr/share/MonetDB/perl "${D}"/usr/lib/perl "${D}"/usr/lib64/perl5 || true - use python || rm -rf "${D}"/usr/lib64/python2.6 || true - use odbc || \ - rm -rf "${D}"/usr/lib/libMonetODBC* "${D}"/usr/lib64/libMonetODBC* "${D}"/usr/include/MonetDB/odbc/ || true -} diff --git a/dev-db/monetdb-client/monetdb-client-1.40.3.ebuild b/dev-db/monetdb-client/monetdb-client-1.40.3.ebuild deleted file mode 100644 index d6f30de..0000000 --- a/dev-db/monetdb-client/monetdb-client-1.40.3.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic - -MY_PN="MonetDB-client" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="libraries and programs to communicate with the server(s) that are part of the MonetDB/SQL suite" -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Oct2010-SP1/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="debug python perl php ruby curl iconv bzip2 zlib odbc" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - python? ( >=dev-lang/python-2.4 ) - perl? ( dev-lang/perl ) - php? ( dev-lang/php ) - ruby? ( dev-lang/ruby ) - curl? ( net-misc/curl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - odbc? ( dev-db/unixODBC ) - >=dev-db/monetdb-common-1.40.3" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use python && myconf+=" $(use_with python)" - use perl && myconf+=" $(use_with perl)" - use php && myconf+=" $(use_with php)" - use ruby && myconf+=" $(use_with ruby)" - use curl && myconf+=" $(use_with curl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - use odbc && myconf+=" $(use_with odbc unixodbc)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb-clients-config - dosbin conf/monetdb-clients-config - - # remove testing framework and compiled tests - rm -rf "${D}"/usr/lib/MonetDB/Tests "${D}"/usr/lib64/MonetDB/Tests || true - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" - - # remove unwanted parts - use php || rm -rf "${D}"/usr/share/php || true - use perl || rm -rf "${D}"/usr/share/MonetDB/perl "${D}"/usr/lib/perl "${D}"/usr/lib64/perl5 || true - use python || rm -rf "${D}"/usr/lib64/python2.6 || true - use odbc || \ - rm -rf "${D}"/usr/lib/libMonetODBC* "${D}"/usr/lib64/libMonetODBC* "${D}"/usr/include/MonetDB/odbc/ || true -} diff --git a/dev-db/monetdb-common/ChangeLog b/dev-db/monetdb-common/ChangeLog deleted file mode 100644 index a4614e5..0000000 --- a/dev-db/monetdb-common/ChangeLog +++ /dev/null @@ -1,8 +0,0 @@ -# ChangeLog for dev-db/monetdb-common -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Id$ - - 13 Oct 2013; Justin Lecher <[email protected]> monetdb-common-1.38.3.ebuild, - monetdb-common-1.40.1.ebuild, monetdb-common-1.40.3.ebuild, +metadata.xml: - QA fixes - diff --git a/dev-db/monetdb-common/metadata.xml b/dev-db/monetdb-common/metadata.xml deleted file mode 100644 index a759be0..0000000 --- a/dev-db/monetdb-common/metadata.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer> - <email>[email protected]</email> - </maintainer> -</pkgmetadata> diff --git a/dev-db/monetdb-common/monetdb-common-1.38.3.ebuild b/dev-db/monetdb-common/monetdb-common-1.38.3.ebuild deleted file mode 100644 index d7616db..0000000 --- a/dev-db/monetdb-common/monetdb-common-1.38.3.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic eutils - -MY_PN="MonetDB" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="fundamental libraries used in the other parts of the MonetDB/SQL suite" -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Jun2010-SP1/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 curl debug iconv perl python zlib" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - python? ( >=dev-lang/python-2.4 ) - perl? ( dev-lang/perl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - curl? ( net-misc/curl ) - !!dev-db/monetdb" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use python && myconf+=" $(use_with python)" - use perl && myconf+=" $(use_with perl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - use curl && myconf+=" $(use_with curl)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb-config - dosbin conf/monetdb-config - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" -} diff --git a/dev-db/monetdb-common/monetdb-common-1.40.1.ebuild b/dev-db/monetdb-common/monetdb-common-1.40.1.ebuild deleted file mode 100644 index 947f477..0000000 --- a/dev-db/monetdb-common/monetdb-common-1.40.1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic eutils - -MY_PN="MonetDB" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="fundamental libraries used in the other parts of the MonetDB/SQL suite" -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Oct2010/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 curl debug iconv perl python zlib" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - python? ( >=dev-lang/python-2.4 ) - perl? ( dev-lang/perl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - curl? ( net-misc/curl )" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use python && myconf+=" $(use_with python)" - use perl && myconf+=" $(use_with perl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - use curl && myconf+=" $(use_with curl)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb-config - dosbin conf/monetdb-config - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" -} diff --git a/dev-db/monetdb-common/monetdb-common-1.40.3.ebuild b/dev-db/monetdb-common/monetdb-common-1.40.3.ebuild deleted file mode 100644 index 157b378..0000000 --- a/dev-db/monetdb-common/monetdb-common-1.40.3.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic eutils - -MY_PN="MonetDB" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="fundamental libraries used in the other parts of the MonetDB/SQL suite" -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Oct2010-SP1/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 curl debug iconv perl python zlib" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - python? ( >=dev-lang/python-2.4 ) - perl? ( dev-lang/perl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - curl? ( net-misc/curl )" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use python && myconf+=" $(use_with python)" - use perl && myconf+=" $(use_with perl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - use curl && myconf+=" $(use_with curl)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb-config - dosbin conf/monetdb-config - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" -} diff --git a/dev-db/monetdb-sql/ChangeLog b/dev-db/monetdb-sql/ChangeLog deleted file mode 100644 index bd15b07..0000000 --- a/dev-db/monetdb-sql/ChangeLog +++ /dev/null @@ -1,8 +0,0 @@ -# ChangeLog for dev-db/monetdb-sql -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Id$ - - 13 Oct 2013; Justin Lecher <[email protected]> monetdb-sql-2.38.3.ebuild, - monetdb-sql-2.40.1.ebuild, monetdb-sql-2.40.3.ebuild, +metadata.xml: - QA fixes - diff --git a/dev-db/monetdb-sql/files/monetdb.conf-5.2.0 b/dev-db/monetdb-sql/files/monetdb.conf-5.2.0 deleted file mode 100644 index 7f15c67..0000000 --- a/dev-db/monetdb-sql/files/monetdb.conf-5.2.0 +++ /dev/null @@ -1,4 +0,0 @@ -# The user to run the MonetDB database as. It is recommended to -# leave this as is, portage created this user during installation -MDB_USER=monetdb -MDB_GROUP=monetdb diff --git a/dev-db/monetdb-sql/files/monetdb.init-5.2.0 b/dev-db/monetdb-sql/files/monetdb.init-5.2.0 deleted file mode 100644 index ecfe168..0000000 --- a/dev-db/monetdb-sql/files/monetdb.init-5.2.0 +++ /dev/null @@ -1,29 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -depend() { - use net -} - -start() { - ebegin "Starting MonetDB/SQL" - # -b can go away next release, hopefully, see: - # http://sourceforge.net/tracker/index.php?func=detail&aid=1825922&group_id=56967&atid=482471 - start-stop-daemon --start \ - -c $MDB_USER:$MDB_GROUP \ - -b \ - -m -p /var/run/merovingian \ - --exec /usr/sbin/merovingian - eend $? -} - -stop() { - ebegin "Stopping MonetDB/SQL" - start-stop-daemon --stop \ - -c $MDB_USER:$MDB_GROUP \ - -p /var/run/merovingian \ - --exec /usr/sbin/merovingian - eend $? -} diff --git a/dev-db/monetdb-sql/metadata.xml b/dev-db/monetdb-sql/metadata.xml deleted file mode 100644 index 8f66177..0000000 --- a/dev-db/monetdb-sql/metadata.xml +++ /dev/null @@ -1,10 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer> - <email>[email protected]</email> - </maintainer> - <use> - <flag name="rdf"> Some magical rdf functionality</flag> - </use> -</pkgmetadata> diff --git a/dev-db/monetdb-sql/monetdb-sql-2.38.3.ebuild b/dev-db/monetdb-sql/monetdb-sql-2.38.3.ebuild deleted file mode 100644 index a97eead..0000000 --- a/dev-db/monetdb-sql/monetdb-sql-2.38.3.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic - -MY_PN="MonetDB-SQL" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="SQL server built on top of (targeted on) MonetDB5" -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Jun2010-SP1/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 curl debug iconv rdf xml zlib" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - curl? ( net-misc/curl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - >=dev-db/monetdb-common-1.38.0 - >=dev-db/monetdb-client-1.38.0 - >=dev-db/monetdb5-server-5.20.0[rdf?,xml?] - !!dev-db/monetdb" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - enewgroup monetdb 61 || die "problem adding 'monetdb' group" - enewuser monetdb 61 -1 /dev/null monetdb || die "problem adding 'monetdb' user" -} - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use curl && myconf+=" $(use_with curl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - newinitd "${FILESDIR}"/monetdb.init-5.2.0 monetdb || die "init.d script" - newconfd "${FILESDIR}"/monetdb.conf-5.2.0 monetdb || die "conf.d file" - einfo - einfo "Remember to set a vault password. See /etc/monetdb5.conf." - einfo "You can start MonetDB/SQL servers by /etc/init.d/monetdb." - einfo - - if use arm; then - ewarn - ewarn "merovingian (the MonetDB manager) behaves quirky," - ewarn "therefore the init script may yield an error despite" - ewarn "the process merovingian having been launched correctly." - ewarn - fi - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb-sql-config - dosbin conf/monetdb-sql-config - rm "${D}"/usr/bin/monetdb - dosbin src/backends/monet5/merovingian/monetdb - rm "${D}"/usr/bin/merovingian - dosbin src/backends/monet5/merovingian/merovingian - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" -} diff --git a/dev-db/monetdb-sql/monetdb-sql-2.40.1.ebuild b/dev-db/monetdb-sql/monetdb-sql-2.40.1.ebuild deleted file mode 100644 index 591c3c6..0000000 --- a/dev-db/monetdb-sql/monetdb-sql-2.40.1.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic - -MY_PN="MonetDB-SQL" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="SQL server built on top of (targeted on) MonetDB5" -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Oct2010/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 curl debug iconv rdf xml zlib" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - curl? ( net-misc/curl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - >=dev-db/monetdb-common-1.40.1 - >=dev-db/monetdb-client-1.40.1 - >=dev-db/monetdb5-server-5.22.1[rdf?,xml?]" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - enewgroup monetdb 61 || die "problem adding 'monetdb' group" - enewuser monetdb 61 -1 /dev/null monetdb || die "problem adding 'monetdb' user" -} - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use curl && myconf+=" $(use_with curl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - newinitd "${FILESDIR}"/monetdb.init-5.2.0 monetdb || die "init.d script" - newconfd "${FILESDIR}"/monetdb.conf-5.2.0 monetdb || die "conf.d file" - einfo - einfo "Remember to set a vault password. See /etc/monetdb5.conf." - einfo "You can start MonetDB/SQL servers by /etc/init.d/monetdb." - einfo - - if use arm; then - ewarn - ewarn "merovingian (the MonetDB manager) behaves quirky," - ewarn "therefore the init script may yield an error despite" - ewarn "the process merovingian having been launched correctly." - ewarn - fi - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb-sql-config - dosbin conf/monetdb-sql-config - rm "${D}"/usr/bin/monetdb - dosbin src/backends/monet5/merovingian/monetdb - rm "${D}"/usr/bin/merovingian - dosbin src/backends/monet5/merovingian/merovingian - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" -} diff --git a/dev-db/monetdb-sql/monetdb-sql-2.40.3.ebuild b/dev-db/monetdb-sql/monetdb-sql-2.40.3.ebuild deleted file mode 100644 index 5286738..0000000 --- a/dev-db/monetdb-sql/monetdb-sql-2.40.3.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic - -MY_PN="MonetDB-SQL" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="SQL server built on top of (targeted on) MonetDB5" -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Oct2010-SP1/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 curl debug iconv rdf xml zlib" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - curl? ( net-misc/curl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - >=dev-db/monetdb-common-1.40.3 - >=dev-db/monetdb-client-1.40.3 - >=dev-db/monetdb5-server-5.22.3[rdf?,xml?]" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - enewgroup monetdb 61 || die "problem adding 'monetdb' group" - enewuser monetdb 61 -1 /dev/null monetdb || die "problem adding 'monetdb' user" -} - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use curl && myconf+=" $(use_with curl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - newinitd "${FILESDIR}"/monetdb.init-5.2.0 monetdb || die "init.d script" - newconfd "${FILESDIR}"/monetdb.conf-5.2.0 monetdb || die "conf.d file" - einfo - einfo "Remember to set a vault password. See /etc/monetdb5.conf." - einfo "You can start MonetDB/SQL servers by /etc/init.d/monetdb." - einfo - - if use arm; then - ewarn - ewarn "merovingian (the MonetDB manager) behaves quirky," - ewarn "therefore the init script may yield an error despite" - ewarn "the process merovingian having been launched correctly." - ewarn - fi - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb-sql-config - dosbin conf/monetdb-sql-config - rm "${D}"/usr/bin/monetdb - dosbin src/backends/monet5/merovingian/monetdb - rm "${D}"/usr/bin/merovingian - dosbin src/backends/monet5/merovingian/merovingian - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" -} diff --git a/dev-db/monetdb5-server/ChangeLog b/dev-db/monetdb5-server/ChangeLog deleted file mode 100644 index 438192e..0000000 --- a/dev-db/monetdb5-server/ChangeLog +++ /dev/null @@ -1,8 +0,0 @@ -# ChangeLog for dev-db/monetdb5-server -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Id$ - - 13 Oct 2013; Justin Lecher <[email protected]> monetdb5-server-5.20.3.ebuild, - monetdb5-server-5.22.1.ebuild, monetdb5-server-5.22.3.ebuild, +metadata.xml: - QA fixes - diff --git a/dev-db/monetdb5-server/metadata.xml b/dev-db/monetdb5-server/metadata.xml deleted file mode 100644 index 8f66177..0000000 --- a/dev-db/monetdb5-server/metadata.xml +++ /dev/null @@ -1,10 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer> - <email>[email protected]</email> - </maintainer> - <use> - <flag name="rdf"> Some magical rdf functionality</flag> - </use> -</pkgmetadata> diff --git a/dev-db/monetdb5-server/monetdb5-server-5.20.3.ebuild b/dev-db/monetdb5-server/monetdb5-server-5.20.3.ebuild deleted file mode 100644 index d8ef264..0000000 --- a/dev-db/monetdb5-server/monetdb5-server-5.20.3.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic - -MY_PN="MonetDB5-server" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="MonetDB's MAL-based server. This can be used with and is recommended for SQL." -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Jun2010-SP1/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 curl debug iconv rdf xml zlib" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - curl? ( net-misc/curl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - rdf? ( >=media-libs/raptor-1.4.16 ) - xml? ( dev-libs/libxml2 ) - >=dev-db/monetdb-common-1.38.0 - >=dev-db/monetdb-client-1.38.0 - !!dev-db/monetdb" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - enewgroup monetdb 61 || die "problem adding 'monetdb' group" - enewuser monetdb 61 -1 /dev/null monetdb || die "problem adding 'monetdb' user" -} - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use curl && myconf+=" $(use_with curl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - use xml && myconf+=" $(use_with xml libxml2)" - use rdf && myconf+=" $(use_with rdf raptor)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - # set proper ACL - chown -R monetdb:monetdb "${D}"/var/lib/MonetDB5 - chmod -R 0750 "${D}"/var/lib/MonetDB5 - keepdir /var/lib/MonetDB5/dbfarm - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb5-config - dosbin conf/monetdb5-config - - # rewrites to match FHS-2.3 - dosed "s:/var/lib/log:/var/log:g" /etc/monetdb5.conf - dosed "s:/var/lib/run:/var/run:g" /etc/monetdb5.conf - fowners monetdb:monetdb /etc/monetdb5.conf - fperms 0644 /etc/monetdb5.conf - - # directory moves to match FHS-2.3 - mv "${D}"/var/lib/log "${D}"/var/log - mv "${D}"/var/lib/run "${D}"/var/run - chown -R monetdb:root "${D}"/var/run/MonetDB - chmod -R 0755 "${D}"/var/run/MonetDB - chown -R monetdb:monetdb "${D}"/var/log/MonetDB - chmod -R 0750 "${D}"/var/log/MonetDB - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" -} diff --git a/dev-db/monetdb5-server/monetdb5-server-5.22.1.ebuild b/dev-db/monetdb5-server/monetdb5-server-5.22.1.ebuild deleted file mode 100644 index 16c26ba..0000000 --- a/dev-db/monetdb5-server/monetdb5-server-5.22.1.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic - -MY_PN="MonetDB5-server" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="MonetDB's MAL-based server. This can be used with and is recommended for SQL." -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Oct2010/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 curl debug iconv rdf xml zlib" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - curl? ( net-misc/curl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - rdf? ( >=media-libs/raptor-1.4.16 ) - xml? ( dev-libs/libxml2 ) - >=dev-db/monetdb-common-1.40.1 - >=dev-db/monetdb-client-1.40.1" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - enewgroup monetdb 61 || die "problem adding 'monetdb' group" - enewuser monetdb 61 -1 /dev/null monetdb || die "problem adding 'monetdb' user" -} - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use curl && myconf+=" $(use_with curl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - use xml && myconf+=" $(use_with xml libxml2)" - use rdf && myconf+=" $(use_with rdf raptor)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - # set proper ACL - chown -R monetdb:monetdb "${D}"/var/lib/MonetDB5 - chmod -R 0750 "${D}"/var/lib/MonetDB5 - keepdir /var/lib/MonetDB5/dbfarm - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb5-config - dosbin conf/monetdb5-config - - # rewrites to match FHS-2.3 - dosed "s:/var/lib/log:/var/log:g" /etc/monetdb5.conf - dosed "s:/var/lib/run:/var/run:g" /etc/monetdb5.conf - fowners monetdb:monetdb /etc/monetdb5.conf - fperms 0644 /etc/monetdb5.conf - - # directory moves to match FHS-2.3 - mv "${D}"/var/lib/log "${D}"/var/log - mv "${D}"/var/lib/run "${D}"/var/run - chown -R monetdb:root "${D}"/var/run/MonetDB - chmod -R 0755 "${D}"/var/run/MonetDB - chown -R monetdb:monetdb "${D}"/var/log/MonetDB - chmod -R 0750 "${D}"/var/log/MonetDB - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" -} diff --git a/dev-db/monetdb5-server/monetdb5-server-5.22.3.ebuild b/dev-db/monetdb5-server/monetdb5-server-5.22.3.ebuild deleted file mode 100644 index 6287678..0000000 --- a/dev-db/monetdb5-server/monetdb5-server-5.22.3.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic - -MY_PN="MonetDB5-server" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="MonetDB's MAL-based server. This can be used with and is recommended for SQL." -HOMEPAGE="http://monetdb.cwi.nl/" -SRC_URI="http://dev.monetdb.org/downloads/sources/Oct2010-SP1/${MY_P}.tar.bz2" -RESTRICT="primaryuri" - -LICENSE="MonetDBPL-1.1" -SLOT="5" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 curl debug iconv rdf xml zlib" - -RDEPEND=">=dev-libs/libpcre-4.5 - >=dev-libs/openssl-0.9.8 - sys-libs/readline - curl? ( net-misc/curl ) - iconv? ( virtual/libiconv ) - bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) ) - zlib? ( sys-libs/zlib ) - rdf? ( >=media-libs/raptor-1.4.16 ) - xml? ( dev-libs/libxml2 ) - >=dev-db/monetdb-common-1.40.3 - >=dev-db/monetdb-client-1.40.3" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - enewgroup monetdb 61 || die "problem adding 'monetdb' group" - enewuser monetdb 61 -1 /dev/null monetdb || die "problem adding 'monetdb' user" -} - -src_configure() { - local myconf= - - if use debug; then - myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert" - else - myconf+=" --disable-strict --disable-debug --disable-assert" - fi - - # Deal with auto-dependencies - use curl && myconf+=" $(use_with curl)" - use iconv && myconf+=" $(use_with iconv)" - use bzip2 && myconf+=" $(use_with bzip2 bz2)" - use zlib && myconf+=" $(use_with zlib z)" - use xml && myconf+=" $(use_with xml libxml2)" - use rdf && myconf+=" $(use_with rdf raptor)" - - econf ${myconf} || die "econf" -} - -src_compile() { - emake || die "emake" -} - -src_install() { - emake DESTDIR="${D}" install || die "install" - - # set proper ACL - chown -R monetdb:monetdb "${D}"/var/lib/MonetDB5 - chmod -R 0750 "${D}"/var/lib/MonetDB5 - keepdir /var/lib/MonetDB5/dbfarm - - # prevent binaries from being installed in wrong paths (FHS 2.3) - rm "${D}"/usr/bin/monetdb5-config - dosbin conf/monetdb5-config - - # rewrites to match FHS-2.3 - dosed "s:/var/lib/log:/var/log:g" /etc/monetdb5.conf - dosed "s:/var/lib/run:/var/run:g" /etc/monetdb5.conf - fowners monetdb:monetdb /etc/monetdb5.conf - fperms 0644 /etc/monetdb5.conf - - # directory moves to match FHS-2.3 - mv "${D}"/var/lib/log "${D}"/var/log - mv "${D}"/var/lib/run "${D}"/var/run - chown -R monetdb:root "${D}"/var/run/MonetDB - chmod -R 0755 "${D}"/var/run/MonetDB - chown -R monetdb:monetdb "${D}"/var/log/MonetDB - chmod -R 0750 "${D}"/var/log/MonetDB - - # remove windows cruft - find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff" -}
