Displaying 20 results from an estimated 711 matches for "mandir".
2001 Feb 07
2
Patch for unformatted manpages
...t>
http://www.feep.net/~roth/
-------------- next part --------------
diff -urN openssh_cvs/Makefile.in openssh_work/Makefile.in
--- openssh_cvs/Makefile.in Sun Feb 4 07:54:23 2001
+++ openssh_work/Makefile.in Tue Feb 6 23:42:49 2001
@@ -6,7 +6,6 @@
sbindir=@sbindir@
libexecdir=@libexecdir@
mandir=@mandir@
-mansubdir=@mansubdir@
sysconfdir=@sysconfdir@
piddir=@piddir@
srcdir=@srcdir@
@@ -45,9 +44,7 @@
SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-chall.o auth2-chall.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth2-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o dh.o pty.o log-se...
2002 Feb 13
1
PATCH: vorbis-tools-1.0rc3 does not accept --mandir
This patch fixes vorbis-tools-1.0rc3 to accept the standard --mandir
configure option. The patch is against the top-level configure.in:
m.
<p>--- Begin 'diff -u' output ---
<p>--- TRANSFORM/PATCH/configure.in Thu Feb 14 00:58:23 2002
+++ TRANSFORM/PATCH/configure.in.original Thu Feb 14 00:33:49 2002
@@ -105,14 +105,10 @@
dnl Work...
2013 Dec 07
2
[PATCH 1/2] Fix installing man-pages from out-of-tree build
..., 6 insertions(+), 6 deletions(-)
diff --git a/po-docs/ja/Makefile.am b/po-docs/ja/Makefile.am
index da1bcc3..820f91a 100644
--- a/po-docs/ja/Makefile.am
+++ b/po-docs/ja/Makefile.am
@@ -160,8 +160,8 @@ $(podfiles):
# XXX Can automake do this properly?
install-data-hook:
$(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man1
- $(INSTALL) -m 0644 *.1 $(DESTDIR)$(mandir)/$(LINGUA)/man1
+ $(INSTALL) -m 0644 $(srcdir)/*.1 $(DESTDIR)$(mandir)/$(LINGUA)/man1
$(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man3
- $(INSTALL) -m 0644 *.3 $(DESTDIR)$(mandir)/$(LINGUA)/man3
+ $(INSTALL) -m 0644 $(srcdir)/*.3 $(DESTDIR)...
2002 Feb 13
1
PATCH: mandir incorrectly set in Makefile.in
The following is a small patch to Makefile.in that fixes a problem
when --mandir is passed to configure. Currently this (standard)
option is ignored, being overridden via an explicit setting of
MANDIR in configure.
m.
<p>--- BEGIN 'diff -u' OUTPUT ---
<p>--- TRANSFORM/PATCH/Makefile.in Wed Feb 13 23:41:28 2002
+++ TRANSFORM/PATCH/Makefile.in.original...
2002 Apr 01
0
[Bug 198] New: Error getting file with sftp on old F-Secure servers
...ild.
-------------------------------------------------------------------------------
# $Id: Makefile.in,v 1.197 2002/02/26 19:24:22 mouring Exp $
prefix=/usr/local
exec_prefix=${prefix}
bindir=${exec_prefix}/bin
sbindir=${exec_prefix}/sbin
libexecdir=${exec_prefix}/libexec
datadir=${prefix}/share
mandir=${prefix}/man
mansubdir=man
sysconfdir=/usr/local/etc
piddir=/usr/local/etc
srcdir=.
top_srcdir=.
DESTDIR=
SSH_PROGRAM=${exec_prefix}/bin/ssh
ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
SFTP_SERVER=$(libexecdir)/sftp-server
PATHS= -DSSHDIR=\"$(sysconfdir)\" \
-D_PATH_SSH_PROGRAM=\"...
2001 Oct 16
6
program-prefix does not work
...D" ssh= $(program_prefix)ssh" \
+ -D/scp=/$(program_prefix)scp \
+ -D" scp= $(program_prefix)scp" \
-D/usr/bin:/bin:/usr/sbin:/sbin=@user_path@
FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
***************
*** 187,234 ****
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
$(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
! $(INSTALL) -m $(SSH_MODE) -s ssh $(DESTDIR)$(bindir)/ssh
! $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
! $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-...
2002 Mar 13
2
[PATCH] fix install-strip target in Makefile
...ider." Both are trivial but IMHO
useful.
--- Makefile.orig Wed Mar 13 06:38:42 2002
+++ Makefile Wed Mar 13 06:40:58 2002
@@ -12,6 +12,7 @@
LDFLAGS=
INSTALLCMD=/bin/install -c
+INSTALLMAN=/bin/install -c
srcdir=.
@@ -56,8 +57,8 @@
${INSTALLCMD} -m 755 rsync ${bindir}
-mkdir -p ${mandir}/man1
-mkdir -p ${mandir}/man5
- ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1
- ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5
+ ${INSTALLMAN} -m 644 $(srcdir)/rsync.1 ${mandir}/man1
+ ${INSTALLMAN} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5
install-strip:
$(MAKE) IN...
2001 Jun 22
0
PATCH: Makefile.in more upgrade friendly.
...toreconf
-install: $(TARGETS) install-files host-key
+install: $(TARGETS) install-dirs install-prog install-man install-conf host-key
-install-files:
+install-dirs:
$(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
$(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
+
+install-prog:
$(INSTALL) -m $(SSH_MODE) -s ssh $(DESTDIR)$(bindir)/ssh
$(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp...
1999 Nov 23
0
[PATCH] Adding BSD compatible install script to 1.2pre14.
...ANLIB=@RANLIB@
+INSTALL=@INSTALL@
GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
GNOME_LIBS=`gnome-config --libs gnome gnomeui`
@@ -61,40 +62,40 @@
rm -f *.o core $(TARGETS) config.status config.cache config.log
install: all
- install -d $(bindir)
- install -d $(sbindir)
- install -d $(mandir)
- install -d $(mandir)/man1
- install -d $(mandir)/man8
- install -s -c ssh $(bindir)/ssh
- install -s -c scp $(bindir)/scp
- install -s -c ssh-add $(bindir)/ssh-add
- install -s -c ssh-agent $(bindir)/ssh-agent
- install -s -c ssh-keygen $(bindir)/ssh-keygen
- install -s -c sshd $(sbindir)/sshd
-...
2002 Mar 26
0
[Bug 187] New: ssh-keygen not converting from and to SECSH standard correctly
...o compile OpenSSH
------------------------------------------------------------------
# $Id: Makefile.in,v 1.197 2002/02/26 19:24:22 mouring Exp $
prefix=/usr/local
exec_prefix=${prefix}
bindir=${exec_prefix}/bin
sbindir=${exec_prefix}/sbin
libexecdir=${exec_prefix}/libexec
datadir=${prefix}/share
mandir=${prefix}/man
mansubdir=man
sysconfdir=/usr/local/etc
piddir=/usr/local/etc
srcdir=.
top_srcdir=.
DESTDIR=
SSH_PROGRAM=${exec_prefix}/bin/ssh
ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
SFTP_SERVER=$(libexecdir)/sftp-server
PATHS= -DSSHDIR=\"$(sysconfdir)\" \
-D_PATH_SSH_PROGRAM=\"...
2002 Mar 15
1
rsync-2.5.4 -- 'make install-strip' failure
...nc-2.5.4.orig/Makefile.in rsync-2.5.4/Makefile.in
--- rsync-2.5.4.orig/Makefile.in Mon Feb 25 19:48:25 2002
+++ rsync-2.5.4/Makefile.in Fri Mar 15 11:29:13 2002
@@ -52,15 +52,15 @@
man: rsync.1 rsyncd.conf.5
install: all
- -mkdir -p ${bindir}
- ${INSTALLCMD} -m 755 rsync ${bindir}
- -mkdir -p ${mandir}/man1
- -mkdir -p ${mandir}/man5
- ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1
- ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5
+ -mkdir -p $(DESTDIR)${bindir}
+ ${INSTALLCMD} ${STRIP} -m 755 rsync $(DESTDIR)${bindir}
+ -mkdir -p $(DESTDIR)${mandir}/man1
+ -mkdir -p $(DESTDIR...
2003 Nov 15
2
[patch] 3.7.1p2: slogin symlink fixes
...000
+++ openssh-3.6.1p2/Makefile.in 2003-05-06 20:55:54.000000000 +0000
@@ -48,6 +48,7 @@ LIBWRAP=@LIBWRAP@
AR=@AR@
RANLIB=@RANLIB@
INSTALL=@INSTALL@
+LN_S=@LN_S@
PERL=@PERL@
SED=@SED@
ENT=@ENT@
@@ -263,9 +264,9 @@ install-files: scard-install
$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
$(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
-rm -f $(DESTDIR)$(bindir)/slogin
- ln -s ./ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
+ cd $(DESTDIR)$(bindir) && $(LN_S) ssh$(EXEEXT) slogin$(EXEEXT)
-rm -f $(DESTDIR)$(mand...
2018 Apr 03
1
GnuPG 2.0.16?
...ures and unpack.
Build libraries first:
export CC=gcc
export CXX=g++
export CFLAGS=-O2
export LDFLAGS="-L/usr/local/lib"
export CPPFLAGS="-I/usr/local/include"
dest=/usr/local
cd /path/to/libassuan-source
./configure --prefix=$dest --mandir=$dest/man
make && make check && make install && make clean
cd /path/to/libgcrypt-source
./configure --prefix=$dest --mandir=$dest/man
make && make check && make install && make clean
cd /path/to/libgpg-error-source
./co...
2002 Aug 14
0
automake 1.6 compatability patch
...man_pages)
+docs=$(doc_files)
+else
+mans=
+docs=$(doc_files)
+endif
datadir = @datadir@
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
-bin_PROGRAMS = ogg123
+bin_PROGRAMS = @OGG123@
+EXTRA_PROGRAMS = ogg123
docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)
mandir = @MANDIR@
@@ -36,11 +43,9 @@
ogg123_SOURCES = $(ogg123sources)
man_MANS = $(mans)
+EXTRA_MANS = $(man_pages)
doc_DATA = $(docs)
-
-endif
-
-EXTRA_DIST = $(ogg123sources) $(mans) $(docs)
+EXTRA_DATA = $(doc_files)
debug:
Index: ogg123/cmdline_options.c
=================================...
1999 Dec 09
1
[PATCH] Fixing a couple of small problems in Makefile.in (1.2pre17).
Hi,
This patch fixes a couple of small ``problems'' in 1.2pre17 Makefile.in:
1. Avoid making an empty $(libexecdir)/ssh directory.
2. Don't try to uninstall $(mandir)/man1/slogin.1 twice.
--- openssh-1.2pre17/Makefile.in~ Thu Dec 9 00:48:58 1999
+++ openssh-1.2pre17/Makefile.in Thu Dec 9 06:51:41 1999
@@ -92,9 +92,9 @@
-rm -f $(mandir)/man1/slogin.1
ln -s ssh.1 $(mandir)/man1/slogin.1
- $(INSTALL) -d $(libexecdir) ;
- $(INSTALL) -d $(libexecdir)/ssh ;...
2015 Oct 22
2
[PATCH 1/2] build: isolate common po-docs logic
...run the following commands:"; \
- echo "*** rm po-docs/podfiles; make -C po-docs update-po"; \
- echo "*** After that, rerun make."; \
- echo "***"; \
- exit 1; \
- fi
-
-# XXX Can automake do this properly?
-install-data-hook:
- $(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man1
- $(INSTALL) -m 0644 $(srcdir)/*.1 $(DESTDIR)$(mandir)/$(LINGUA)/man1
- $(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man3
- $(INSTALL) -m 0644 $(srcdir)/*.3 $(DESTDIR)$(mandir)/$(LINGUA)/man3
- $(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man5
- $(INSTALL) -m 0644 $(srcdir)/*.5 $(DESTDIR)$(...
2004 Aug 06
2
speex-1.0.4 bug and change request
Hi!
The pkgconfig file installed by speex-1.0.4 has a bug
and a pasto: the bug is that @VERSION@ has not been replaced
with the real version, and the pasto is that the comment at
the top says libogg.
Also, I have a request for src/Makefile.am: Please do not
override mandir. If you do not like the default, you can easily
change it from the configure command line with
./configure --with-mandir=path
Thanks.
Cheers,
Thomas
2009 Dec 17
1
[PATCH] contrib/cygwin/Makefile: Install ssh-copy-id
...le,v
retrieving revision 1.4
diff -u -p -r1.4 Makefile
--- contrib/cygwin/Makefile 1 Dec 2008 10:34:28 -0000 1.4
+++ contrib/cygwin/Makefile 17 Dec 2009 09:44:39 -0000
@@ -1,8 +1,10 @@
srcdir=../..
+copyidsrcdir=..
prefix=/usr
exec_prefix=$(prefix)
bindir=$(prefix)/bin
datadir=$(prefix)/share
+mandir=$(datadir)/man
docdir=$(datadir)/doc
sshdocdir=$(docdir)/openssh
cygdocdir=$(docdir)/Cygwin
@@ -59,5 +61,16 @@ install-scripts: ssh-host-config ssh-use
$(INSTALL) -m 755 ssh-host-config $(DESTDIR)$(bindir)/ssh-host-config
$(INSTALL) -m 755 ssh-user-config $(DESTDIR)$(bindir)/ssh-user-config...
2000 Jul 28
0
buildroot patch for 2.1.1p4
...----------
24c24
< CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
---
> CFLAGS=@CFLAGS@ $(PATHS) @DEFS@ -I at top_srcdir@ -I.
28a29
> MKINSTALLDIRS=@srcdir@/mkinstalldirs
121,125c122,126
< ./mkinstalldirs $(DESTDIR)$(bindir)
< ./mkinstalldirs $(DESTDIR)$(sbindir)
< ./mkinstalldirs $(DESTDIR)$(mandir)
< ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
< ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
---
> $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
> $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
> $(MKINSTALLDIRS) $(DESTDIR)$(mandir)
> $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/$(mansubd...
2000 Jul 28
0
whoops, revised patch for buildroot in 2.1.1p4
...----------
24c24
< CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
---
> CFLAGS=@CFLAGS@ $(PATHS) @DEFS@ -I at top_srcdir@ -I.
28a29
> MKINSTALLDIRS=@srcdir@/mkinstalldirs
121,125c122,126
< ./mkinstalldirs $(DESTDIR)$(bindir)
< ./mkinstalldirs $(DESTDIR)$(sbindir)
< ./mkinstalldirs $(DESTDIR)$(mandir)
< ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
< ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
---
> $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
> $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
> $(MKINSTALLDIRS) $(DESTDIR)$(mandir)
> $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/$(mansubd...