forked from GNOME/jhbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added minimal autotools infrastucture and moved documentation to use
* AUTHORS, Makefile.am, autogen.sh, configure.ac, doc/Makefile.am, doc/C/jhbuild.xml, doc/jhbuild.omf.in, doc/jhbuild.xml: added minimal autotools infrastucture and moved documentation to use gnome-doc-utils. svn path=/trunk/; revision=1562
- Loading branch information
Frederic Peters
committed
Aug 12, 2007
1 parent
29edaf8
commit 4269303
Showing
11 changed files
with
98 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
James Henstridge <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2007-08-12 Frederic Peters <[email protected]> | ||
|
||
* AUTHORS, Makefile.am, autogen.sh, configure.ac, doc/Makefile.am, | ||
doc/C/jhbuild.xml, doc/jhbuild.omf.in, doc/jhbuild.xml: added minimal | ||
autotools infrastucture and moved documentation to use gnome-doc-utils. | ||
|
||
2007-08-11 Fernando Herrera <[email protected]> | ||
|
||
* modulesets/gnome-external-deps-2.20.modules: Update | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
SUBDIRS = doc | ||
|
||
EXTRA_DIST = gnome-doc-utils.make | ||
|
||
all-local: | ||
@echo "-------------------------------------------------------" | ||
@echo "This Makefile is only used to build documentation" | ||
@echo "Type make -f Makefile.plain to build or install JhBuild" | ||
@echo "-------------------------------------------------------" | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#! /bin/sh | ||
# Run this to generate all the initial makefiles, etc. | ||
|
||
srcdir=`dirname $0` | ||
test -z "$srcdir" && srcdir=. | ||
|
||
PKG_NAME=jhbuild | ||
|
||
(test -f $srcdir/jhbuild/main.py) || { | ||
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" | ||
echo " top-level $PKG_NAME directory" | ||
exit 1 | ||
} | ||
|
||
which gnome-autogen.sh || { | ||
echo "Autotools are only used to build documentation" | ||
echo "Type make -f Makefile.plain to build or install JhBuild" | ||
echo "" | ||
echo "If you want to build documentation, you need to install gnome-common" | ||
echo "from the GNOME Subversion." | ||
exit 1 | ||
} | ||
|
||
|
||
REQUIRED_AUTOCONF_VERSION=2.57 | ||
REQUIRED_AUTOMAKE_VERSION=1.8 | ||
REQUIRED_INTLTOOL_VERSION=0.35.0 | ||
REQUIRED_PKG_CONFIG_VERSION=0.16.0 | ||
USE_GNOME2_MACROS=1 USE_COMMON_DOC_BUILD=yes . gnome-autogen.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
AC_INIT(jhbuild, 0.1, [email protected]) | ||
AC_CONFIG_SRCDIR(jhbuild/main.py) | ||
|
||
AM_INIT_AUTOMAKE | ||
GNOME_COMMON_INIT | ||
AM_MAINTAINER_MODE | ||
|
||
AC_PROG_CC | ||
|
||
# gnome-doc-utils | ||
PKG_PROG_PKG_CONFIG | ||
GNOME_DOC_INIT | ||
|
||
AC_OUTPUT([ | ||
Makefile | ||
doc/Makefile | ||
]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
DOC_LINGUAS = | ||
|
||
include $(top_srcdir)/gnome-doc-utils.make | ||
dist-hook: doc-dist-hook | ||
|
||
DOC_MODULE = jhbuild | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" standalone="no"?> | ||
<omf> | ||
<resource> | ||
<subject category="Development|Development Tools|Build Tools"/> | ||
<type></type> | ||
<relation seriesid="0c6369a0-48d3-11dc-8895-e0474514a045"/> | ||
<rights type="GNU GPL" license.version="2.0 or later" holder="James Henstridge" /> | ||
</resource> | ||
</omf> |