summaryrefslogtreecommitdiff
blob: 5098973069a6e7cb46fc69d304b5127e3e98f925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
\documentclass[a4paper,12pt]{report}
\usepackage{pslatex}
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{fullpage}
\usepackage[light]{draftcopy}
\usepackage{appendix}
\usepackage{url}
\usepackage{hyperref}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{listings}

\lstloadlanguages{bash}

\bibliographystyle{plainurl}

\parskip          6pt
\parindent        0pt

\renewcommand{\t}[1]{\texttt{#1}}
\renewcommand{\i}[1]{{\it #1}}
\newcommand{\e}[1]{\emph{#1}}
\renewcommand{\b}[1]{\textbf{#1}}
\newcommand{\note}[1]{\paragraph{Note:} #1}
\newcommand{\todiscuss}[1]{\paragraph{To be discussed before release:} #1}
\newenvironment{bulletlist}%
    {\begin{itemize}[topsep=0pt, itemsep=0pt, partopsep=0pt]}%
    {\end{itemize}}

\include{pdfinfo}

\title{Package Manager Specification}
\author{Stephen P. Bennett\\\texttt{spb@gentoo.org}
\and Ciaran McCreesh\\\texttt{ciaranm@ciaranm.org}}

\begin{document}
\maketitle

\tableofcontents
\listofalgorithms
\lstlistoflistings

\include{introduction}

\include{names}

\include{tree-layout}

\include{profiles}

\include{virtuals}

\include{ebuild-format}

\include{eclasses}

\include{ebuild-vars}

\include{dependencies}

\include{ebuild-functions}

\include{ebuild-environment}

\include{glossary}

\include{appendices}

\bibliography{pms}

\end{document}

% vim: set filetype=tex fileencoding=utf8 et tw=100 spell spelllang=en :