diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2017-05-21 13:56:02 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2017-05-21 13:57:58 +0200 |
commit | e246873f43db77850c172263be72bc5153b23adb (patch) | |
tree | 26c6861efc2147a669fb5da13daa0b2b3c3a82e3 /dev-db/firebird | |
parent | cmake-utils.eclass: Drop _cmake_execute_optionally after WANT_CMAKE (diff) | |
download | gentoo-e246873f43db77850c172263be72bc5153b23adb.tar.gz gentoo-e246873f43db77850c172263be72bc5153b23adb.tar.bz2 gentoo-e246873f43db77850c172263be72bc5153b23adb.zip |
dev-db/firebird: Simplify and add work from linuxunderground overlay
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-db/firebird')
-rw-r--r-- | dev-db/firebird/files/firebird.init.d.3.0 | 22 | ||||
-rw-r--r-- | dev-db/firebird/files/firebird.xinetd.3.0 | 11 | ||||
-rw-r--r-- | dev-db/firebird/firebird-3.0.2.32703.0.ebuild | 186 | ||||
-rw-r--r-- | dev-db/firebird/metadata.xml | 1 |
4 files changed, 116 insertions, 104 deletions
diff --git a/dev-db/firebird/files/firebird.init.d.3.0 b/dev-db/firebird/files/firebird.init.d.3.0 new file mode 100644 index 000000000000..9fd4f8504769 --- /dev/null +++ b/dev-db/firebird/files/firebird.init.d.3.0 @@ -0,0 +1,22 @@ +#!/sbin/openrc-run +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License, v2 or later + +name=${RC_SVCNAME} + +fbhomedir="/var/run/firebird" +fblogdir="/var/log/firebird" +pidfile="${fbhomedir}/firebird.pid" +command="/usr/sbin/fbguard" +command_args="-forever -daemon -pidfile $pidfile" + +start_stop_daemon_args="-p ${pidfile} -u ${FBUSER:-firebird}:${FBGROUP:-firebird}" + +depend() { + need net +} + +start_pre() { + checkpath -q -d -m 0770 -o ${FBUSER:-firebird}:${FBGROUP:-firebird} ${fbhomedir} || return 1 + checkpath -q -d -m 0770 -o ${FBUSER:-firebird}:${FBGROUP:-firebird} ${fblogdir} || return 1 +} diff --git a/dev-db/firebird/files/firebird.xinetd.3.0 b/dev-db/firebird/files/firebird.xinetd.3.0 new file mode 100644 index 000000000000..4e094bdf0627 --- /dev/null +++ b/dev-db/firebird/files/firebird.xinetd.3.0 @@ -0,0 +1,11 @@ +service gds_db +{ + flags = REUSE + socket_type = stream + wait = no + user = firebird + log_on_success += USERID + log_on_failure += USERID + server = /usr/bin/firebird + disable = yes +} diff --git a/dev-db/firebird/firebird-3.0.2.32703.0.ebuild b/dev-db/firebird/firebird-3.0.2.32703.0.ebuild index 4cf71cd1fe15..4bee6fc80bd6 100644 --- a/dev-db/firebird/firebird-3.0.2.32703.0.ebuild +++ b/dev-db/firebird/firebird-3.0.2.32703.0.ebuild @@ -17,9 +17,11 @@ LICENSE="IDPL Interbase-1.0" SLOT="0" KEYWORDS="" -IUSE="doc examples xinetd" +IUSE="doc examples +server xinetd" +# FIXME: cloop? CDEPEND=" + dev-libs/libtommath dev-libs/icu:= dev-libs/libedit " @@ -40,6 +42,17 @@ PATCHES=( "${FILESDIR}/${P}"-cloop-compiler.patch ) +pkg_pretend() { + if [[ -e /var/run/${PN}/${PN}.pid ]] ; then + ewarn + ewarn "The presence of server connections may prevent isql or gsec" + ewarn "from establishing an embedded connection. Accordingly," + ewarn "creating employee.fdb or security3.fdb could fail." + ewarn "It is more secure to stop the firebird daemon before running emerge." + ewarn + fi +} + pkg_setup() { enewgroup firebird 450 enewuser firebird 450 /bin/sh /usr/$(get_libdir)/firebird firebird @@ -99,10 +112,10 @@ src_configure() { --with-fbconf=/etc/${PN} \ --with-fblib=/usr/$(get_libdir) \ --with-fbinclude=/usr/include \ - --with-fbdoc=/usr/share/doc/${P} \ + --with-fbdoc=/usr/share/doc/${PF} \ --with-fbudf=/usr/$(get_libdir)/${PN}/UDF \ - --with-fbsample=/usr/share/doc/${P}/examples \ - --with-fbsample-db=/usr/share/doc/${P}/examples/db \ + --with-fbsample=/usr/share/doc/${PF}/examples \ + --with-fbsample-db=/usr/share/doc/${PF}/examples/db \ --with-fbhelp=/usr/$(get_libdir)/${PN}/help \ --with-fbintl=/usr/$(get_libdir)/${PN}/intl \ --with-fbmisc=/usr/share/${PN} \ @@ -115,143 +128,108 @@ src_configure() { ${myconf} } -src_compile() { - MAKEOPTS="${MAKEOPTS/-j*/-j1} ${MAKEOPTS/-j/CPU=}" - emake -} - +# from linux underground, merging into this here src_install() { - cd "gen/Release/${PN}" || die - if use doc; then - dodoc "${S}"/doc/*.pdf + dodoc -r doc find "${WORKDIR}"/manuals -type f -iname "*.pdf" -exec dodoc '{}' + || die fi - doheader include/* + cd "${S}/gen/Release/${PN}" || die - insinto /usr/$(get_libdir) + doheader include/* dolib.so lib/*.so* # links for backwards compatibility + insinto /usr/$(get_libdir) dosym libfbclient.so /usr/$(get_libdir)/libgds.so dosym libfbclient.so /usr/$(get_libdir)/libgds.so.0 dosym libfbclient.so /usr/$(get_libdir)/libfbclient.so.1 - insinto /usr/$(get_libdir)/${PN} + insinto /usr/share/${PN}/msg doins *.msg + use server || return + einfo "Renaming isql -> fbsql" mv bin/isql bin/fbsql || die "failed to rename isql -> fbsql" - local bins="fbguard fbsql fbsvcmgr fbtracemgr firebird gbak gfix gpre gpre_boot gpre_current gsec gsplit gstat nbackup qli" - for bin in ${bins}; do - dobin bin/${bin} - done - - dosbin bin/fb_lock_print + dobin bin/{fbsql,fbsvcmgr,fbtracemgr,gbak,gfix,gpre,gsec,gsplit,gstat,nbackup,qli} + dosbin bin/{firebird,fbguard,fb_lock_print} - insinto /usr/$(get_libdir)/${PN}/help + insinto /usr/share/${PN}/help + # why??? + insopts -m0660 -o firebird -g firebird doins help/help.fdb - exeinto /usr/$(get_libdir)/firebird/intl + into /usr/$(get_libdir)/${PN}/intl dolib.so intl/libfbintl.so - dosym ../../libfbintl.so /usr/$(get_libdir)/${PN}/intl/fbintl - dosym libfbintl.so /usr/$(get_libdir)/libfbintl.so.1 - dosym /etc/firebird/fbintl.conf /usr/$(get_libdir)/${PN}/intl/fbintl.conf + dosym libfbintl.so /usr/$(get_libdir)/${PN}/intl/fbintl.so + insinto /usr/$(get_libdir)/${PN}/intl + insopts -m0644 -o root -g root + doins intl/fbintl.conf + + # plugins exeinto /usr/$(get_libdir)/${PN}/plugins - dolib.so plugins/libfbtrace.so - dosym ../../libfbtrace.so /usr/$(get_libdir)/${PN}/plugins/libfbtrace.so - dosym libfbtrace.so /usr/$(get_libdir)/libfbtrace.so.0 + doexe plugins/*.so + exeinto /usr/$(get_libdir)/${PN}/plugins/udr + doexe plugins/udr/*.so exeinto /usr/$(get_libdir)/${PN}/UDF doexe UDF/*.so - insinto /usr/share/${PN}/upgrade - doins -r "${S}"/src/misc/upgrade/v2/* - - insinto /etc/${PN} - insopts -m0644 -o firebird -g firebird - doins ../install/misc/*.conf - insopts -m0660 -o firebird -g firebird - doins security2.fdb - - if use xinetd ; then - insinto /etc/xinetd.d - newins "${FILESDIR}/${PN}.xinetd" ${PN} - else - newinitd "${FILESDIR}/${PN}.init.d.2.5" ${PN} - newconfd "${FILESDIR}/${PN}.conf.d.2.5" ${PN} - fperms 640 /etc/conf.d/${PN} - fi - - insinto /etc/logrotate.d - newins "${FILESDIR}/${PN}.logrotate" ${PN} - fperms 0644 /etc/logrotate.d/${PN} - + # logging (do we really need the perms?) diropts -m 755 -o firebird -g firebird dodir /var/log/${PN} keepdir /var/log/${PN} - use examples && docinto examples -} - -pkg_postinst() { - # Hack to fix ownership/perms - chown -fR firebird:firebird "${ROOT}/etc/${PN}" "${ROOT}/usr/$(get_libdir)/${PN}" - chmod 750 "${ROOT}/etc/${PN}" -} - -pkg_config() { - # if found /etc/security.gdb from previous install, backup, and restore as - # /etc/security2.fdb - if [[ -f "${ROOT}/etc/firebird/security.gdb" ]] ; then - # if we have scurity2.fdb already, back it 1st - if [[ -f "${ROOT}/etc/firebird/security2.fdb" ]] ; then - cp "${ROOT}/etc/firebird/security2.fdb" "${ROOT}/etc/firebird/security2.fdb.old" || die - fi - gbak -B "${ROOT}/etc/firebird/security.gdb" "${ROOT}/etc/firebird/security.gbk" || die - gbak -R "${ROOT}/etc/firebird/security.gbk" "${ROOT}/etc/firebird/security2.fdb" || die - mv "${ROOT}/etc/firebird/security.gdb" "${ROOT}/etc/firebird/security.gdb.old" || die - rm "${ROOT}/etc/firebird/security.gbk" || die - - # make sure they are readable only to firebird - chown firebird:firebird "${ROOT}/etc/firebird/{security.*,security2.*}" || die - chmod 660 "${ROOT}/etc/firebird/{security.*,security2.*}" || die - - echo - einfo "Converted old security.gdb to security2.fdb, security.gdb has been " - einfo "renamed to security.gdb.old. if you had previous security2.fdb, " - einfo "it's backed to security2.fdb.old (all under ${ROOT}/etc/firebird)." - echo - fi + # logrotate + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}.logrotate" ${PN} - # we need to enable local access to the server - if [[ ! -f "${ROOT}/etc/hosts.equiv" ]] ; then - touch "${ROOT}/etc/hosts.equiv" || die - chown root:0 "${ROOT}/etc/hosts.equiv" || die - chmod u=rw,go=r "${ROOT}/etc/hosts.equiv" || die - fi + # configuration files + insinto /etc/${PN}/plugins + doins plugins/udr_engine.conf + insinto /etc/${PN} + doins {databases,fbtrace,firebird,plugins}.conf - # add 'localhost.localdomain' to the hosts.equiv file... - if grep -q 'localhost.localdomain$' "${ROOT}/etc/hosts.equiv" ; then - echo "localhost.localdomain" >> "${ROOT}/etc/hosts.equiv" || die - einfo "Added localhost.localdomain to ${ROOT}/etc/hosts.equiv" - fi + # install secutity3.fdb + insopts -m0660 -o firebird -g firebird + doins security3.fdb - # add 'localhost' to the hosts.equiv file... - if grep -q 'localhost$' "${ROOT}/etc/hosts.equiv" ; then - echo "localhost" >> "${ROOT}/etc/hosts.equiv" || die - einfo "Added localhost to ${ROOT}/etc/hosts.equiv" + if use xinetd; then + insinto /etc/xinetd.d + newins "${FILESDIR}/${PN}.xinetd.3.0" ${PN} + else + newinitd "${FILESDIR}/${PN}.init.d.3.0" ${PN} fi - HS_NAME=`hostname` - if grep -q ${HS_NAME} "${ROOT}/etc/hosts.equiv" ; then - echo "${HS_NAME}" >> "${ROOT}/etc/hosts.equiv" || die - einfo "Added ${HS_NAME} to ${ROOT}/etc/hosts.equiv" + if use examples; then + cd examples + insinto /usr/share/${PN}/examples + insopts -m0644 -o root -g root + doins -r api + doins -r dbcrypt + doins -r include + doins -r interfaces + doins -r package + doins -r stat + doins -r udf + doins -r udr + doins CMakeLists.txt + doins functions.c + doins README + insinto /usr/share/${PN}/examples/empbuild + insopts -m0660 -o firebird -g firebird + doins empbuild/employee.fdb fi - einfo "If you're using UDFs, please remember to move them" - einfo "to /usr/$(get_libdir)/firebird/UDF" + einfo + elog "Starting with version 3, server mode is set in firebird.conf" + elog "The default setting is superserver." + einfo + elog "If you're using UDFs, please remember to move them to /usr/$(get_libdir)/firebird/UDF" + einfo + ewarn "${CATEGORY}/${PF} is still a tad experimental. Please test and file bugs!" } diff --git a/dev-db/firebird/metadata.xml b/dev-db/firebird/metadata.xml index 64d8608cc9ae..a6eba6edad06 100644 --- a/dev-db/firebird/metadata.xml +++ b/dev-db/firebird/metadata.xml @@ -10,6 +10,7 @@ </longdescription> <use> <flag name="superserver">Install SuperServer</flag> + <flag name="server">Install the server components of Firebird, not just the client</flag> <flag name="xinetd">Install ClassicServer</flag> </use> <upstream> |