diff options
author | CHOI Junho <cjh@FreeBSD.org> | 2006-02-16 07:57:56 +0000 |
---|---|---|
committer | CHOI Junho <cjh@FreeBSD.org> | 2006-02-16 07:57:56 +0000 |
commit | 8217045be7913fa6d50428d4bf06c0f4e4bd0656 (patch) | |
tree | d6a2782745884f79fb0f4ba4c25e870b70993e03 /misc/linm/files | |
parent | ffe9592945221eecf26c35ec3cb603205b2a6c3d (diff) |
Notes
Diffstat (limited to 'misc/linm/files')
-rw-r--r-- | misc/linm/files/patch-Makefile.in | 48 | ||||
-rw-r--r-- | misc/linm/files/patch-configure | 28 | ||||
-rw-r--r-- | misc/linm/files/patch-lib::define.h | 10 |
3 files changed, 36 insertions, 50 deletions
diff --git a/misc/linm/files/patch-Makefile.in b/misc/linm/files/patch-Makefile.in index 2f19c0aef369..6d8dae1e3fd2 100644 --- a/misc/linm/files/patch-Makefile.in +++ b/misc/linm/files/patch-Makefile.in @@ -1,50 +1,18 @@ ---- Makefile.in.bak Tue Jan 24 11:36:21 2006 -+++ Makefile.in Tue Jan 24 11:40:17 2006 -@@ -657,18 +657,13 @@ - - install-exec-hook : - if test "x$(DESTDIR)" != x; then \ -- install -d -m 755 $(DESTDIR)/etc/linm && \ -- install -d -m 755 $(DESTDIR)/usr/share/locale/ko/LC_MESSAGES && \ -- install -d -m 755 $(DESTDIR)/etc/profile.d \ -+ install -d -m 755 $(DESTDIR)/$(sysconfdir)/linm && \ -+ install -d -m 755 $(DESTDIR)/$(datadir)/locale/ko/LC_MESSAGES \ - ; fi - -- if test -w $(DESTDIR)/etc/profile.d ; then \ -- install -c -m 755 $(top_srcdir)/sh/linm_alias.sh $(DESTDIR)/etc/profile.d \ -- ; fi -- -- if ! test -d $(DESTDIR)/etc/linm ; then \ -- if test -w $(DESTDIR)/etc ; then \ -- mkdir $(DESTDIR)/etc/linm \ -+ if ! test -d $(DESTDIR)/$(sysconfdir)/linm ; then \ -+ if test -w $(DESTDIR)/$(sysconfdir) ; then \ -+ mkdir $(DESTDIR)/$(sysconfdir)/linm \ - ; fi \ - ; fi - -@@ -676,20 +671,12 @@ - install -c -m 644 $(top_srcdir)/sh/default.cfg \ +--- Makefile.in.orig Tue Jan 31 01:14:27 2006 ++++ Makefile.in Thu Feb 16 15:16:59 2006 +@@ -673,15 +673,7 @@ $(top_srcdir)/sh/colorset.cfg \ $(top_srcdir)/sh/keyset.cfg \ -- $(DESTDIR)/etc/linm \ + $(DESTDIR)$(LINM_CFGPATH) \ - ; else \ - if ! test -d ~/.linm ; then \ -- mkdir ~/.linm \ +- install -d -m 755 ~/.linm \ - ; fi && \ - install -c -m 644 $(top_srcdir)/sh/default.cfg \ - $(top_srcdir)/sh/colorset.cfg \ - $(top_srcdir)/sh/keyset.cfg \ - ~/.linm \ -+ $(DESTDIR)/$(sysconfdir)/linm \ - ; fi - -- if test -w $(DESTDIR)/usr/share/locale/ko/LC_MESSAGES; then \ -+ if test -w $(DESTDIR)/$(datadir)/locale/ko/LC_MESSAGES; then \ - install -c -m 644 $(top_srcdir)/locale/linm_euckr.mo $(top_srcdir)/locale/linm_utf8.mo \ -- $(DESTDIR)/usr/share/locale/ko/LC_MESSAGES \ -+ $(DESTDIR)/$(datadir)/locale/ko/LC_MESSAGES \ - ; fi + ; fi - uninstall-hook : + if ! test -d $(DESTDIR)$(KO_LOCALE_FILEPATH) ; then \ + install -d -m 755 $(DESTDIR)$(KO_LOCALE_FILEPATH) \ diff --git a/misc/linm/files/patch-configure b/misc/linm/files/patch-configure new file mode 100644 index 000000000000..8b55f812c518 --- /dev/null +++ b/misc/linm/files/patch-configure @@ -0,0 +1,28 @@ +--- configure.orig Thu Feb 16 15:55:08 2006 ++++ configure Thu Feb 16 15:56:04 2006 +@@ -29097,9 +29097,9 @@ + fi + + +-# Check whether --enable-configpath or --disable-configpath was given. +-if test "${enable_configpath+set}" = set; then +- enableval="$enable_configpath" ++# Check whether --enable-cfgpath or --disable-cfgpath was given. ++if test "${enable_cfgpath+set}" = set; then ++ enableval="$enable_cfgpath" + enable_cfgpath=${enableval} + else + enable_cfgpath=default +@@ -29125,9 +29125,9 @@ + + + +-# Check whether --enable-configpath or --disable-configpath was given. +-if test "${enable_configpath+set}" = set; then +- enableval="$enable_configpath" ++# Check whether --enable-kolocalepath or --disable-kolocalepath was given. ++if test "${enable_kolocalepath+set}" = set; then ++ enableval="$enable_kolocalepath" + enable_kolocalepath=${enableval} + else + enable_kolocalepath=default diff --git a/misc/linm/files/patch-lib::define.h b/misc/linm/files/patch-lib::define.h deleted file mode 100644 index 280f1a50a487..000000000000 --- a/misc/linm/files/patch-lib::define.h +++ /dev/null @@ -1,10 +0,0 @@ ---- lib/define.h~ Sat Jan 14 20:55:18 2006 -+++ lib/define.h Tue Jan 24 11:16:05 2006 -@@ -39,6 +39,7 @@ - # endif - - #ifdef HAVE_GETTEXT -+ #include <libintl.h> - #define _(Text) gettext(Text) - #else - #define _(Text) Text |