Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/apache-tools/files: apache-tools-2.2.20-Makefile.patch
Date: Thu, 01 Sep 2011 07:58:51
Message-Id: 20110901075839.CF6F520051@flycatcher.gentoo.org
1 pva 11/09/01 07:58:39
2
3 Added: apache-tools-2.2.20-Makefile.patch
4 Log:
5 Version bump, bug #368743 wrt Max Nokhrin and Denis Kaganovich
6
7 (Portage version: 2.1.10.11/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 app-admin/apache-tools/files/apache-tools-2.2.20-Makefile.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/files/apache-tools-2.2.20-Makefile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/files/apache-tools-2.2.20-Makefile.patch?rev=1.1&content-type=text/plain
14
15 Index: apache-tools-2.2.20-Makefile.patch
16 ===================================================================
17 === modified file 'support/Makefile.in'
18 --- support/Makefile.in 2011-09-01 06:33:22 +0000
19 +++ support/Makefile.in 2011-09-01 06:43:51 +0000
20 @@ -1,9 +1,10 @@
21 DISTCLEAN_TARGETS = apxs apachectl dbmmanage log_server_status \
22 - logresolve.pl phf_abuse_log.cgi split-logfile envvars-std
23 + logresolve.pl phf_abuse_log.cgi split-logfile
24
25 CLEAN_TARGETS = suexec
26
27 -PROGRAMS = htpasswd htdigest rotatelogs logresolve ab htdbm htcacheclean httxt2dbm $(NONPORTABLE_SUPPORT)
28 +PROGRAMS = htpasswd htdigest rotatelogs logresolve ab htdbm htcacheclean httxt2dbm \
29 + $(NONPORTABLE_SUPPORT) log_server_status split-logfile dbmmanage
30 TARGETS = $(PROGRAMS)
31
32 PROGRAM_LDADD = $(UTIL_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS)
33 @@ -12,22 +13,13 @@
34 include $(top_builddir)/build/rules.mk
35
36 install:
37 - @test -d $(DESTDIR)$(bindir) || $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
38 @test -d $(DESTDIR)$(sbindir) || $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
39 - @test -d $(DESTDIR)$(libexecdir) || $(MKINSTALLDIRS) $(DESTDIR)$(libexecdir)
40 - @cp -p $(top_builddir)/server/httpd.exp $(DESTDIR)$(libexecdir)
41 - @for i in apxs apachectl dbmmanage; do \
42 + @for i in $(PROGRAMS) ; do \
43 if test -f "$(builddir)/$$i"; then \
44 cp -p $$i $(DESTDIR)$(sbindir); \
45 chmod 755 $(DESTDIR)$(sbindir)/$$i; \
46 fi ; \
47 done
48 - @if test -f "$(builddir)/envvars-std"; then \
49 - cp -p envvars-std $(DESTDIR)$(sbindir); \
50 - if test ! -f $(DESTDIR)$(sbindir)/envvars; then \
51 - cp -p envvars-std $(DESTDIR)$(sbindir)/envvars ; \
52 - fi ; \
53 - fi
54
55 htpasswd_OBJECTS = htpasswd.lo
56 htpasswd: $(htpasswd_OBJECTS)