Skip to content

Commit f6ce926

Browse files
committed
inicial
0 parents  commit f6ce926

File tree

602 files changed

+287728
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

602 files changed

+287728
-0
lines changed

Diff for: AUTHORS

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
The Xpdf software and documentation are
2+
Copyright 1996-2003 Glyph & Cog, LLC.
3+
4+
Martin Kretzschmar <[email protected]>
5+
Marco Pesenti Gritti <[email protected]>
6+
Jonathan Blandford <[email protected]>
7+
Nickolay V. Shmyrev <[email protected]>
8+
Bryan Clark <[email protected]>
9+
Carlos Garcia Campos <[email protected]>
10+
Wouter Bolsterlee <[email protected]>
11+
12+
And many others

Diff for: COPYING

+340
Large diffs are not rendered by default.

Diff for: MAINTAINERS

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Jonathan Blandford
2+
3+
Userid: jrb
4+
5+
Nickolay V. Shmyrev
6+
7+
Userid: nshmyrev
8+
9+
Carlos Garcia Campos
10+
11+
Userid: carlosgc

Diff for: Makefile.am

+116
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
ACLOCAL_AMFLAGS = -I m4
2+
3+
# Set the minimum required Windows version to Windows 2000 (0x0500).
4+
if PLATFORM_WIN32
5+
AM_CPPFLAGS = -D_WIN32_WINNT=0x0500
6+
endif
7+
8+
SUBDIRS = \
9+
cut-n-paste \
10+
data \
11+
libdocument \
12+
backend \
13+
libview \
14+
libmisc \
15+
properties \
16+
shell \
17+
po \
18+
help
19+
20+
if ENABLE_TESTS
21+
SUBDIRS += test
22+
endif
23+
24+
if ENABLE_THUMBNAILER
25+
SUBDIRS += thumbnailer
26+
endif
27+
28+
if ENABLE_PREVIEWER
29+
SUBDIRS += previewer
30+
endif
31+
32+
NULL =
33+
34+
pkgconfigdir = $(libdir)/pkgconfig
35+
pkgconfig_DATA = \
36+
evince-document-$(EV_API_VERSION).pc \
37+
evince-view-$(EV_API_VERSION).pc \
38+
$(NULL)
39+
40+
headerdir = $(includedir)/evince/$(EV_API_VERSION)
41+
header_DATA = \
42+
evince-document.h \
43+
evince-view.h \
44+
$(NULL)
45+
46+
# Applications
47+
48+
intltool_extra = intltool-extract.in intltool-merge.in intltool-update.in
49+
50+
EXTRA_DIST = \
51+
$(intltool_extra) \
52+
$(header_DATA) \
53+
autogen.sh \
54+
mate-doc-utils.make \
55+
MAINTAINERS
56+
57+
DISTCLEANFILES = \
58+
mate-doc-utils.make \
59+
intltool-extract \
60+
intltool-merge \
61+
intltool-update
62+
63+
MAINTAINERCLEANFILES = \
64+
ChangeLog \
65+
$(srcdir)/INSTALL \
66+
$(srcdir)/aclocal.m4 \
67+
$(srcdir)/autoscan.log \
68+
$(srcdir)/compile \
69+
$(srcdir)/config.guess \
70+
$(srcdir)/config.h.in \
71+
$(srcdir)/config.sub \
72+
$(srcdir)/configure \
73+
$(srcdir)/configure.scan \
74+
$(srcdir)/depcomp \
75+
$(srcdir)/install-sh \
76+
$(srcdir)/ltmain.sh \
77+
$(srcdir)/missing \
78+
$(srcdir)/mkinstalldirs \
79+
$(srcdir)/omf.make \
80+
$(srcdir)/xmldocs.make \
81+
$(srcdir)/gtk-doc.make \
82+
$(srcdir)/po/Makefile.in.in \
83+
`find "$(srcdir)" -type f -name Makefile.in -print`
84+
85+
DISTCHECK_CONFIGURE_FLAGS = \
86+
--disable-schemas-install \
87+
--disable-scrollkeeper \
88+
--enable-gtk-doc \
89+
--disable-caja \
90+
--disable-tests \
91+
--disable-silent-rules
92+
93+
# Ignore scrollkeeper issues for now. @#*$& scrollkeeper
94+
distuninstallcheck_listfiles = find . -type f -print | grep -v scrollkeeper | grep -v /share/mate/help/ | grep -v \.omf
95+
96+
distclean-local:
97+
if test "$(srcdir)" = "."; then :; else \
98+
rm -f ChangeLog; \
99+
fi
100+
101+
ChangeLog:
102+
$(AM_V_GEN) if test -d "$(srcdir)/.git"; then \
103+
(GIT_DIR=$(top_srcdir)/.git ./missing --run git log -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \
104+
&& mv -f $@.tmp $@ \
105+
|| ($(RM) $@.tmp; \
106+
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
107+
(test -f $@ || echo git log is required to generate this file >> $@)); \
108+
else \
109+
test -f $@ || \
110+
(echo A git checkout and git log is required to generate ChangeLog >&2 && \
111+
echo A git checkout and git log is required to generate this file >> $@); \
112+
fi
113+
114+
.PHONY: ChangeLog
115+
116+
-include $(top_srcdir)/git.mk

0 commit comments

Comments
 (0)