diff options
author | William Thomson <wltjr@gentoo.org> | 2007-06-14 04:33:53 +0000 |
---|---|---|
committer | William Thomson <wltjr@gentoo.org> | 2007-06-14 04:33:53 +0000 |
commit | 935a5b446a78503df5105cf96267f63669b0b251 (patch) | |
tree | a09476efe3a4561e9a1f0c6ac70cdf6b011f6394 | |
parent | Stable for HPPA (bug #176367). (diff) | |
download | gentoo-2-935a5b446a78503df5105cf96267f63669b0b251.tar.gz gentoo-2-935a5b446a78503df5105cf96267f63669b0b251.tar.bz2 gentoo-2-935a5b446a78503df5105cf96267f63669b0b251.zip |
Fix for character sets like ISO8859_1 and others. Thanks to Gianni Rossi <nasus.maximos@gmail.com>. Also removed log file creation and etc from pkg_config. It's in src_install now.
(Portage version: 2.1.2.9)
-rw-r--r-- | dev-db/firebird/ChangeLog | 10 | ||||
-rw-r--r-- | dev-db/firebird/files/digest-firebird-2.0.1.12855.0-r4 (renamed from dev-db/firebird/files/digest-firebird-2.0.1.12855.0-r3) | 0 | ||||
-rw-r--r-- | dev-db/firebird/firebird-2.0.1.12855.0-r4.ebuild (renamed from dev-db/firebird/firebird-2.0.1.12855.0-r3.ebuild) | 20 |
3 files changed, 12 insertions, 18 deletions
diff --git a/dev-db/firebird/ChangeLog b/dev-db/firebird/ChangeLog index 8e33ebf434d2..ec652ea5d0e2 100644 --- a/dev-db/firebird/ChangeLog +++ b/dev-db/firebird/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-db/firebird # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/firebird/ChangeLog,v 1.61 2007/05/16 17:04:39 wltjr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/firebird/ChangeLog,v 1.62 2007/06/14 04:33:53 wltjr Exp $ + +*firebird-2.0.1.12855.0-r4 (14 Jun 2007) + + 14 Jun 2007; William L. Thomson Jr. <wltjr@gentoo.org> + -firebird-2.0.1.12855.0-r3.ebuild, +firebird-2.0.1.12855.0-r4.ebuild: + Fix for character sets like ISO8859_1 and others. Thanks to Gianni Rossi + <nasus.maximos@gmail.com>. Also removed log file creation and etc from + pkg_config. It's in src_install now. *firebird-1.5.4-r3 (16 May 2007) diff --git a/dev-db/firebird/files/digest-firebird-2.0.1.12855.0-r3 b/dev-db/firebird/files/digest-firebird-2.0.1.12855.0-r4 index 04a90efef089..04a90efef089 100644 --- a/dev-db/firebird/files/digest-firebird-2.0.1.12855.0-r3 +++ b/dev-db/firebird/files/digest-firebird-2.0.1.12855.0-r4 diff --git a/dev-db/firebird/firebird-2.0.1.12855.0-r3.ebuild b/dev-db/firebird/firebird-2.0.1.12855.0-r4.ebuild index b7ff285f6645..1e8d72233a34 100644 --- a/dev-db/firebird/firebird-2.0.1.12855.0-r3.ebuild +++ b/dev-db/firebird/firebird-2.0.1.12855.0-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/firebird/firebird-2.0.1.12855.0-r3.ebuild,v 1.1 2007/05/14 14:28:03 wltjr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/firebird/firebird-2.0.1.12855.0-r4.ebuild,v 1.1 2007/06/14 04:33:53 wltjr Exp $ inherit flag-o-matic eutils autotools versionator @@ -101,6 +101,7 @@ src_install() { doexe UDF/*.so exeinto /opt/firebird/intl doexe intl/*.so + newexe intl/libfbintl.so fbintl diropts -m 755 -o firebird -g firebird dodir /var/log/firebird @@ -115,6 +116,7 @@ src_install() { dosym /etc/firebird/aliases.conf /opt/firebird/aliases.conf dosym /etc/firebird/security2.fdb /opt/firebird/security2.fdb dosym /etc/firebird/firebird.conf /opt/firebird/firebird.conf + dosym /etc/firebird/fbintl.conf /opt/firebird/intl/fbintl.conf dosym /var/log/firebird/firebird.log /opt/firebird/firebird.log local my_lib=$(get_libdir) @@ -191,22 +193,6 @@ pkg_config() { chmod ug=rw,o= $FileName done - # Create log - if [ ! -h firebird.log ] - then - if [ -f firebird.log ] - then - mv firebird.log /var/log - else - touch /var/log/firebird.log - chown firebird:firebird /var/log/firebird.log - chmod ug=rw,o= /var/log/firebird.log - fi - - # symlink the log to /var/log - ln -s /var/log/firebird.log firebird.log - fi - # if found /etc/security.gdb from previous install, backup, and restore as # /etc/security2.fdb if [ -f /etc/firebird/security.gdb ] |