Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalwareutils.git;a=commitdiff;h=35fd2800d47dfa016208fe5cffc391fb8c8562bd
commit 35fd2800d47dfa016208fe5cffc391fb8c8562bd Author: Miklos Vajna <[EMAIL PROTECTED]> Date: Mon Nov 5 11:35:26 2007 +0100 renamed the doc dir to apidoc, doc will be something we want to localize diff --git a/Makefile b/Makefile index b52729a..d32ba5a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Makefile for frugalwareutils # -# Copyright (C) 2006 Miklos Vajna <[EMAIL PROTECTED]> +# Copyright (C) 2006, 2007 Miklos Vajna <[EMAIL PROTECTED]> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -19,7 +19,7 @@ -include config.mak -include Makefile.inc -SUBDIRS = doc libfwutil libfwdialog setup \ +SUBDIRS = apidoc libfwutil libfwdialog setup \ libfwnetconfig netconfig \ libfwtimeconfig timeconfig \ libfwraidconfig raidconfig \ diff --git a/apidoc/Makefile b/apidoc/Makefile new file mode 100644 index 0000000..9f5482e --- /dev/null +++ b/apidoc/Makefile @@ -0,0 +1,38 @@ +# Makefile for frugalwareutils +# +# Copyright (C) 2006 Miklos Vajna <[EMAIL PROTECTED]> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# + +-include ../Makefile.inc +-include ../config.mak + +compile: +ifneq ($(doxygen),) + cd .. && doxygen Doxyfile + rm -rf man3/_* +endif + +install: +ifneq ($(doxygen),) + for i in man3/* frugalwareutils.3; do \ + $(INSTALL) -m644 $$i $(DESTDIR)$(mandir)/man3/; \ + done +endif + +clean: + rm -rf man3 + +prepare: diff --git a/apidoc/frugalwareutils.3 b/apidoc/frugalwareutils.3 new file mode 100644 index 0000000..c67947f --- /dev/null +++ b/apidoc/frugalwareutils.3 @@ -0,0 +1,25 @@ +.TH frugalwareutils 3 "17 Jun 2006" "Frugalware 0.5" "" +.SH NAME +frugalwareutils \- Developer documentation for the Frugalware configuration +libraries +.SH SYNOPSIS +For ease of access, the frugalwareutils manual has been split up into several +sections. + +.nf +libfwutil Functions to make writing Frugalware configuration tools + easier. +libfwdialog Functions to make libdialog usage easier. +libfwnetconfig Functions to make network configuration easier. +libfwtimeconfig Functions to make time configuration easier. +libfwraidconfig Functions to make RAID configuration easier. +libfwmouseconfig Functions to make mouse configuration easier. +libfwxconfig Functions to make X configuration easier. +libfwxwmonfig Functions to make XDM configuration easier. +libfwgrubonfig Functions to make GRUB configuration easier. +.fi + +.SH AUTHORS +Written by Miklos Vajna. +.SH "REPORTING BUGS" +If you find any bug, then please file a bugreport at <http://bugs.frugalware.org/>. diff --git a/doc/Makefile b/doc/Makefile deleted file mode 100644 index 9f5482e..0000000 --- a/doc/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# Makefile for frugalwareutils -# -# Copyright (C) 2006 Miklos Vajna <[EMAIL PROTECTED]> -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; version 2 of the License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# - --include ../Makefile.inc --include ../config.mak - -compile: -ifneq ($(doxygen),) - cd .. && doxygen Doxyfile - rm -rf man3/_* -endif - -install: -ifneq ($(doxygen),) - for i in man3/* frugalwareutils.3; do \ - $(INSTALL) -m644 $$i $(DESTDIR)$(mandir)/man3/; \ - done -endif - -clean: - rm -rf man3 - -prepare: diff --git a/doc/frugalwareutils.3 b/doc/frugalwareutils.3 deleted file mode 100644 index c67947f..0000000 --- a/doc/frugalwareutils.3 +++ /dev/null @@ -1,25 +0,0 @@ -.TH frugalwareutils 3 "17 Jun 2006" "Frugalware 0.5" "" -.SH NAME -frugalwareutils \- Developer documentation for the Frugalware configuration -libraries -.SH SYNOPSIS -For ease of access, the frugalwareutils manual has been split up into several -sections. - -.nf -libfwutil Functions to make writing Frugalware configuration tools - easier. -libfwdialog Functions to make libdialog usage easier. -libfwnetconfig Functions to make network configuration easier. -libfwtimeconfig Functions to make time configuration easier. -libfwraidconfig Functions to make RAID configuration easier. -libfwmouseconfig Functions to make mouse configuration easier. -libfwxconfig Functions to make X configuration easier. -libfwxwmonfig Functions to make XDM configuration easier. -libfwgrubonfig Functions to make GRUB configuration easier. -.fi - -.SH AUTHORS -Written by Miklos Vajna. -.SH "REPORTING BUGS" -If you find any bug, then please file a bugreport at <http://bugs.frugalware.org/>. _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
