diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-05-23 15:42:00 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-05-23 15:42:00 +0000 |
commit | 4d4fea6bac002967f1104da0dfc3976b99437f44 (patch) | |
tree | 498c09781dfd3946d24ce0526ca4a21c5f55e75e /www-servers/monkeyd/files | |
parent | Version bump (bug #417203). (diff) | |
download | gentoo-2-4d4fea6bac002967f1104da0dfc3976b99437f44.tar.gz gentoo-2-4d4fea6bac002967f1104da0dfc3976b99437f44.tar.bz2 gentoo-2-4d4fea6bac002967f1104da0dfc3976b99437f44.zip |
Install man pages in the correct section
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'www-servers/monkeyd/files')
-rw-r--r-- | www-servers/monkeyd/files/monkeyd-fix-manpage-path.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/www-servers/monkeyd/files/monkeyd-fix-manpage-path.patch b/www-servers/monkeyd/files/monkeyd-fix-manpage-path.patch new file mode 100644 index 000000000000..ecb20e720159 --- /dev/null +++ b/www-servers/monkeyd/files/monkeyd-fix-manpage-path.patch @@ -0,0 +1,42 @@ +From 4817136af00893fd46a2993d79c7aeb9fafaa119 Mon Sep 17 00:00:00 2001 +From: Anthony G. Basile <blueness@gentoo.org> +Date: Wed, 23 May 2012 10:53:10 -0400 +Subject: [PATCH] configure: fix #156, install man pages to the correct sections + +The current configure script installs the man pages banana.1, monkey.1 +and monkey-api.3 at the top level man dir, /usr/share/man, and not in +the appropriate categories by FHS standards. This fixes the issue. + +Signed-off-by: Anthony G. Basile <blueness@gentoo.org> +--- + configure | 7 +++++-- + 1 files changed, 5 insertions(+), 2 deletions(-) + +diff --git a/configure b/configure +index ab02d30..d4e8956 100755 +--- a/configure ++++ b/configure +@@ -347,7 +347,8 @@ distclean: + install: + \$(MAKE) -C src all + install -d \$(BINDIR) +- install -d \$(MANDIR) ++ install -d \$(MANDIR)/man1 ++ install -d \$(MANDIR)/man3 + install -d \$(SYSCONFDIR) + install -d \${SYSCONFDIR}/sites + install -d \${SYSCONFDIR}/plugins +@@ -362,7 +363,9 @@ install: + $plgconf + install -m 644 ./conf/sites/* \${SYSCONFDIR}/sites + $plglist +- install -m 644 ./man/* \$(MANDIR) ++ install -m 644 ./man/banana.1 \$(MANDIR)/man1 ++ install -m 644 ./man/monkey.1 \$(MANDIR)/man1 ++ install -m 644 ./man/monkey-api.3 \$(MANDIR)/man3 + install -m 644 ./htdocs/*.* \$(DATADIR) + install -m 644 ./htdocs/imgs/*.* \${DATADIR}/imgs + $STRIP \$(BINDIR)/monkey +-- +1.7.3.4 + |