Skip to content

Commit c5db6b8

Browse files
committed
Restore information files from legacy branch
1 parent 8cffe59 commit c5db6b8

File tree

8 files changed

+480
-0
lines changed

8 files changed

+480
-0
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Hong Jen Yee (PCMan) <[email protected]>
2+
Ying-Chun Liu (PaulLiu) <[email protected]>

COPYING

Lines changed: 339 additions & 0 deletions
Large diffs are not rendered by default.

ChangeLog

Whitespace-only changes.

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
No news is good news.

README

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
LXAppearance is part of LXDE project.
2+
It's a desktop-independent theme switcher for GTK+.
3+

acinclude.m4

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Checks the location of the XML Catalog
2+
# Usage:
3+
# JH_PATH_XML_CATALOG([ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
4+
# Defines XMLCATALOG and XML_CATALOG_FILE substitutions
5+
AC_DEFUN([JH_PATH_XML_CATALOG],
6+
[
7+
# check for the presence of the XML catalog
8+
AC_ARG_WITH([xml-catalog],
9+
AC_HELP_STRING([--with-xml-catalog=CATALOG],
10+
[path to xml catalog to use]),,
11+
[with_xml_catalog=/etc/xml/catalog])
12+
jh_found_xmlcatalog=true
13+
XML_CATALOG_FILE="$with_xml_catalog"
14+
AC_SUBST([XML_CATALOG_FILE])
15+
AC_MSG_CHECKING([for XML catalog ($XML_CATALOG_FILE)])
16+
if test -f "$XML_CATALOG_FILE"; then
17+
AC_MSG_RESULT([found])
18+
else
19+
jh_found_xmlcatalog=false
20+
AC_MSG_RESULT([not found])
21+
fi
22+
23+
# check for the xmlcatalog program
24+
AC_PATH_PROG(XMLCATALOG, xmlcatalog, no)
25+
if test "x$XMLCATALOG" = xno; then
26+
jh_found_xmlcatalog=false
27+
fi
28+
29+
if $jh_found_xmlcatalog; then
30+
ifelse([$1],,[:],[$1])
31+
else
32+
ifelse([$2],,[AC_MSG_ERROR([could not find XML catalog])],[$2])
33+
fi
34+
])
35+
36+
# Checks if a particular URI appears in the XML catalog
37+
# Usage:
38+
# JH_CHECK_XML_CATALOG(URI, [FRIENDLY-NAME], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
39+
AC_DEFUN([JH_CHECK_XML_CATALOG],
40+
[
41+
AC_REQUIRE([JH_PATH_XML_CATALOG],[JH_PATH_XML_CATALOG(,[:])])dnl
42+
AC_MSG_CHECKING([for ifelse([$2],,[$1],[$2]) in XML catalog])
43+
if $jh_found_xmlcatalog && \
44+
AC_RUN_LOG([$XMLCATALOG --noout "$XML_CATALOG_FILE" "$1" >&2]); then
45+
AC_MSG_RESULT([found])
46+
ifelse([$3],,,[$3
47+
])dnl
48+
else
49+
AC_MSG_RESULT([not found])
50+
ifelse([$4],,
51+
[AC_MSG_ERROR([could not find ifelse([$2],,[$1],[$2]) in XML catalog])],
52+
[$4])
53+
fi
54+
])
55+

man/Makefile.am

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
man_MANS = \
2+
lxappearance.1
3+
4+
man_XMANS = \
5+
lxappearance.xml
6+
7+
EXTRA_DIST = \
8+
$(man_MANS) \
9+
$(man_XMANS)
10+
11+
12+
if ENABLE_REGENERATE_MAN
13+
14+
lxappearance.1: lxappearance.xml
15+
$(XSLTPROC) -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
16+
17+
CLEANFILES = $(man_MANS)
18+
else
19+
20+
$(man_MANS):
21+
@echo ""
22+
@echo "Error: you need to run configure with '--enable-man'"
23+
@echo " in order to regenerate man pages."
24+
@echo ""
25+
@false
26+
endif
27+
28+

man/lxappearance.xml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0"?>
2+
<refentry> <refentryinfo> <address> <email>[email protected]</email>
3+
</address>
4+
<author> <firstname>Ying-Chun</firstname>
5+
<surname>Liu</surname>
6+
</author>
7+
<copyright> <year>2008</year>
8+
<holder>paulliu</holder>
9+
</copyright>
10+
<date>April 20, 2008</date>
11+
</refentryinfo>
12+
<refmeta> <refentrytitle>LXAPPEARANCE</refentrytitle>
13+
<refmiscinfo class="source">http://LXDE.org</refmiscinfo>
14+
15+
<manvolnum>1</manvolnum>
16+
</refmeta>
17+
<refnamediv> <refname>lxappearance</refname>
18+
19+
<refpurpose>GTK+ theme switcher</refpurpose>
20+
</refnamediv>
21+
<refsynopsisdiv> <cmdsynopsis> <command>lxappearance</command>
22+
</cmdsynopsis>
23+
</refsynopsisdiv>
24+
<refsect1> <title>DESCRIPTION</title>
25+
26+
<para>This manual page documents briefly the
27+
<command>lxappearance</command> command.</para>
28+
29+
<para><command>lxappearance</command> is a program to change
30+
GTK+ themes, icon themes, and fonts used by applications. It is a
31+
feature-rich GTK+ theme switcher.
32+
</para>
33+
34+
</refsect1>
35+
36+
<refsect1> <title>AUTHOR</title>
37+
38+
<para>This manual page was written by paulliu <email>[email protected]</email> for
39+
the <productname>Debian</productname> system (but may be used by others). Permission is
40+
granted to copy, distribute and/or modify this document under
41+
the terms of the <acronym>GNU</acronym> General Public License, Version 2 any
42+
later version published by the Free Software Foundation.
43+
</para>
44+
<para> On Debian systems, the complete text of the GNU General Public
45+
License can be found in /usr/share/common-licenses/GPL.
46+
</para>
47+
<para> The source code of this manual page should be in
48+
<filename>.sgml</filename> format. It is better not to modify
49+
the <filename>.1</filename> file directly.
50+
</para>
51+
52+
</refsect1></refentry>

0 commit comments

Comments
 (0)