The current dev-db/freetds ebuild is missing two configuration files -
/etc/freetds.conf and /etc/locales.conf. Both are included in the source
package, but are not install by the current (0.61) ebuild.
Reproducible: Always
Steps to Reproduce:
1. emerge freetds
Actual Results:
No locales.conf and freetds.conf in /etc.
Expected Results:
Put them in there.
Created an attachment (id=17503) [details]
Patch to the current ebuild to include the required conf files
Just need to remove the line:
-e 's/^ETC = /ETC = $(DESTDIR)/' \
From the ebuild to get it to install correct. The $(DESTDIR) is already in the
Makefile that is included in the distribution. The current ebuild adds a
duplicate $(DESTDIR) to the Makefile for the ETC variable which is then set to
`$(DESTDIR)/$(DESTDIR)/etc', which doesn't exist, preventing the conf files
from being installed.