summaryrefslogtreecommitdiff
path: root/dev-vcs/cvsps/files/cvsps-3.13-make.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-vcs/cvsps/files/cvsps-3.13-make.patch
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-vcs/cvsps/files/cvsps-3.13-make.patch')
-rw-r--r--dev-vcs/cvsps/files/cvsps-3.13-make.patch52
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-vcs/cvsps/files/cvsps-3.13-make.patch b/dev-vcs/cvsps/files/cvsps-3.13-make.patch
deleted file mode 100644
index 7c96d60300a1..000000000000
--- a/dev-vcs/cvsps/files/cvsps-3.13-make.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 6266c9d..4f60d2f 100644
---- a/Makefile
-+++ b/Makefile
-@@ -8,6 +8,9 @@ INSTALL = install
- prefix?=/usr/local
- target=$(DESTDIR)$(prefix)
-
-+PROG = cvsps
-+MANPAGE = $(PROG).1
-+
- OBJS= debug.o \
- hash.o \
- sio.o \
-@@ -19,12 +22,12 @@ OBJS= debug.o \
- cvsclient.o \
- list_sort.o
-
--all: cvsps
-+all: $(PROG) $(MANPAGE)
-
- deps:
- makedepend -Y -I. *.c
-
--cvsps: $(OBJS)
-- $(CC) -o cvsps $(OBJS) $(LDFLAGS) $(LDLIBS)
-+$(PROG): $(OBJS)
-+ $(CC) -o $(PROG) $(OBJS) $(LDFLAGS) $(LDLIBS)
-
- check:
-@@ -50,17 +53,17 @@ pylint:
- .txt.html:
- a2x --doctype manpage --format xhtml $*.txt
-
--install: cvsps.1 all
-+install: all
- $(INSTALL) -d "$(target)/bin"
- $(INSTALL) -d "$(target)/share/man/man1"
-- $(INSTALL) cvsps "$(target)/bin"
-- $(INSTALL) -m 644 cvsps.1 "$(target)/share/man/man1"
-+ $(INSTALL) $(PROG) "$(target)/bin"
-+ $(INSTALL) -m 644 $(MANPAGE) "$(target)/share/man/man1"
-
- tags: *.c *.h
- ctags *.c *.h
-
- clean:
-- rm -f cvsps *.o core tags cvsps.1 cvsps.html docbook-xsl.css
-+ rm -f $(PROG) *.o core tags $(MANPAGE) cvsps.html docbook-xsl.css
-
- SOURCES = Makefile *.[ch] merge_utils.sh
- DOCS = README COPYING NEWS cvsps.asc TODO