summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-06-15 15:25:38 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-06-15 15:25:38 (EDT)
commit32f7ccc0b1e3a32dad9d4f7acfe72f5069aaa9b3 (patch)
tree2a66cf55f43d0b9c95ce09fe85c608a2ad85ed06
parent06ea7decdeb2e7d2cdb0857f59623c3e919489d1 (diff)
Remove old input makefiles.
-rw-r--r--lib/Makefile.in80
-rw-r--r--lib/metadata/Makefile.in75
-rw-r--r--lib/package/Makefile.in68
-rw-r--r--locale/Makefile.in73
-rw-r--r--man/Makefile.in116
-rw-r--r--src/Makefile.in83
6 files changed, 0 insertions, 495 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
deleted file mode 100644
index 12cddc5..0000000
--- a/lib/Makefile.in
+++ /dev/null
@@ -1,80 +0,0 @@
-# opkbuild
-# Makefile.in
-# Input Makefile for configure.
-#
-# Copyright (C) 2012 Patrick "P. J." McDermott
-#
-# 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, either version 2 of the License, or
-# (at your option) any later version.
-#
-# 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, see <http://www.gnu.org/licenses/>.
-
-package_name = @package_name@
-package_version= @package_version@
-
-srcdir = @srcdir@
-prefix = @prefix@
-libdir = @libdir@
-datadir = @datadir@
-localedir = @localedir@
-libopkbuild = @libopkbuild@
-metadata = @metadata@
-
-sed_script = s&@@PACKAGE_NAME@@&$(package_name)&;\
- s&@@PACKAGE_VERSION@@&$(package_version)&;\
- s&@@LOCALEDIR@@&$(localedir)&;\
- s&@@LIBOPKBUILD@@&$(libopkbuild)&;\
- s&@@METADATA@@&$(metadata)&;
-
-.SUFFIXES:
-.SUFFIXES: .sh .sm
-
-SRCS = load.sh common.sh \
- locale.sh output.sh \
- package.sh \
- metadata.sh \
- control.sh changelog.sh \
- deps.sh
-OBJS = $(SRCS:.sh=.sm)
-
-distdir = ../$(package_name)-$(package_version)/lib
-distfiles = Makefile.in $(SRCS)
-
-all: $(OBJS)
-
-$(OBJS):
- @printf ' SED lib/%s\n' '$@'
- @sed '$(sed_script)' '$(srcdir)/lib/$*.sh' >'$@'
-
-clean:
- @for obj in $(OBJS); do \
- printf ' RM lib/%s\n' "$${obj}"; \
- rm -f "$${obj}"; \
- done
-
-install: all
- @mkdir -p '$(DESTDIR)/$(libopkbuild)'
- @for obj in $(OBJS); do \
- printf ' INSTALL lib/%s\n' "$${obj}"; \
- cp "$${obj}" "$(DESTDIR)/$(libopkbuild)/$${obj}"; \
- chmod 644 "$(DESTDIR)/$(libopkbuild)/$${obj}"; \
- done
-
-uninstall:
- @for obj in $(OBJS); do \
- printf ' RM %s\n' "$${obj}"; \
- rm -f "$(DESTDIR)/$(libopkbuild)/$${obj}"; \
- done
- @rmdir '$(DESTDIR)/$(libopkbuild)' 2>/dev/null || true
-
-$(distdir):
- @mkdir -p '$(distdir)'
- @cp -pR $(distfiles) '$(distdir)'
diff --git a/lib/metadata/Makefile.in b/lib/metadata/Makefile.in
deleted file mode 100644
index 28c4d48..0000000
--- a/lib/metadata/Makefile.in
+++ /dev/null
@@ -1,75 +0,0 @@
-# opkbuild
-# Makefile.in
-# Input Makefile for configure.
-#
-# Copyright (C) 2012 Patrick "P. J." McDermott
-#
-# 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, either version 2 of the License, or
-# (at your option) any later version.
-#
-# 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, see <http://www.gnu.org/licenses/>.
-
-package_name = @package_name@
-package_version= @package_version@
-
-srcdir = @srcdir@
-prefix = @prefix@
-libdir = @libdir@
-datadir = @datadir@
-sysconfdir = @sysconfdir@
-opkhelper_3_0 = @opkhelper_3_0@
-
-sed_script = s&@@PACKAGE_NAME@@&$(package_name)&;\
- s&@@PACKAGE_VERSION@@&$(package_version)&;\
- s&@@LIBDIR@@&$(libdir)&;\
- s&@@DATADIR@@&$(datadir)&;\
- s&@@SYSCONFDIR@@&$(sysconfdir)&;\
- s&@@OPKHELPER_3_0@@&$(opkhelper_3_0)&;
-
-.SUFFIXES:
-.SUFFIXES: .sh .sm
-
-SRCS = proteanos.sh
-OBJS = $(SRCS:.sh=.sm)
-
-distdir = ../../$(package_name)-$(package_version)/lib/metadata
-distfiles = Makefile.in $(SRCS)
-
-all: $(OBJS)
-
-$(OBJS):
- @printf ' SED lib/metadata/%s\n' '$@'
- @sed '$(sed_script)' '$(srcdir)/lib/metadata/$*.sh' >'$@'
-
-clean:
- @for obj in $(OBJS); do \
- printf ' RM lib/metadata/%s\n' "$${obj}"; \
- rm -f "$${obj}"; \
- done
-
-install: all
- @mkdir -p '$(DESTDIR)/$(libopkbuild)/metadata'
- @for obj in $(OBJS); do \
- printf ' INSTALL lib/metadata/%s\n' "$${obj}"; \
- cp "$${obj}" "$(DESTDIR)/$(libopkbuild)/metadata/$${obj}"; \
- chmod 644 "$(DESTDIR)/$(libopkbuild)/metadata/$${obj}"; \
- done
-
-uninstall:
- @for obj in $(OBJS); do \
- printf ' RM %s\n' "$${obj}"; \
- rm -f "$(DESTDIR)/$(libopkbuild)/metadata/$${obj}"; \
- done
- @rmdir '$(DESTDIR)/$(libopkbuild)/metadata' 2>/dev/null || true
-
-$(distdir):
- @mkdir -p '$(distdir)'
- @cp -pR $(distfiles) '$(distdir)'
diff --git a/lib/package/Makefile.in b/lib/package/Makefile.in
deleted file mode 100644
index c28c412..0000000
--- a/lib/package/Makefile.in
+++ /dev/null
@@ -1,68 +0,0 @@
-# opkbuild
-# Makefile.in
-# Input Makefile for configure.
-#
-# Copyright (C) 2012 Patrick "P. J." McDermott
-#
-# 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, either version 2 of the License, or
-# (at your option) any later version.
-#
-# 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, see <http://www.gnu.org/licenses/>.
-
-package_name = @package_name@
-package_version= @package_version@
-
-srcdir = @srcdir@
-prefix = @prefix@
-libdir = @libdir@
-
-sed_script = s&@@PACKAGE_NAME@@&$(package_name)&;\
- s&@@PACKAGE_VERSION@@&$(package_version)&;
-
-.SUFFIXES:
-.SUFFIXES: .sh .sm
-
-SRCS = 2.sh
-OBJS = $(SRCS:.sh=.sm)
-
-distdir = ../../$(package_name)-$(package_version)/lib/package
-distfiles = Makefile.in $(SRCS)
-
-all: $(OBJS)
-
-$(OBJS):
- @printf ' SED lib/package/%s\n' '$@'
- @sed '$(sed_script)' '$(srcdir)/lib/package/$*.sh' >'$@'
-
-clean:
- @for obj in $(OBJS); do \
- printf ' RM lib/package/%s\n' "$${obj}"; \
- rm -f "$${obj}"; \
- done
-
-install: all
- @mkdir -p '$(DESTDIR)/$(libopkbuild)/package'
- @for obj in $(OBJS); do \
- printf ' INSTALL lib/package/%s\n' "$${obj}"; \
- cp "$${obj}" "$(DESTDIR)/$(libopkbuild)/package/$${obj}"; \
- chmod 644 "$(DESTDIR)/$(libopkbuild)/package/$${obj}"; \
- done
-
-uninstall:
- @for obj in $(OBJS); do \
- printf ' RM %s\n' "$${obj}"; \
- rm -f "$(DESTDIR)/$(libopkbuild)/package/$${obj}"; \
- done
- @rmdir '$(DESTDIR)/$(libopkbuild)/package' 2>/dev/null || true
-
-$(distdir):
- @mkdir -p '$(distdir)'
- @cp -pR $(distfiles) '$(distdir)'
diff --git a/locale/Makefile.in b/locale/Makefile.in
deleted file mode 100644
index 71cfc2c..0000000
--- a/locale/Makefile.in
+++ /dev/null
@@ -1,73 +0,0 @@
-# opkbuild
-# Makefile.in
-# Input Makefile for configure.
-#
-# Copyright (C) 2012 Patrick "P. J." McDermott
-#
-# 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, either version 2 of the License, or
-# (at your option) any later version.
-#
-# 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, see <http://www.gnu.org/licenses/>.
-
-package_name = @package_name@
-package_version= @package_version@
-
-srcdir = @srcdir@
-prefix = @prefix@
-datadir = @datadir@
-localedir = @localedir@
-
-.SUFFIXES:
-.SUFFIXES: .sh .ms
-
-SRCS = en_MID/libopkbuild_1.sh en_US/libopkbuild_1.sh \
- en_US/opkbuild.sh
-OBJS = $(SRCS:.sh=.ms)
-
-distdir = ../$(package_name)-$(package_version)/locale
-distfiles = Makefile.in $(SRCS)
-
-all: $(OBJS)
-
-$(OBJS):
- @printf ' CP locale/%s\n' '$@'
- @obj='$@'; mkdir -p "$${obj%/*}"
- @cp '$(srcdir)/locale/$*.sh' '$@'
-
-clean:
- @for obj in $(OBJS); do \
- printf ' RM locale/%s\n' "$${obj}"; \
- rm -f "$${obj}"; \
- done
-
-install: all
- @for obj in $(OBJS); do \
- printf ' INSTALL locale/%s\n' "$${obj}"; \
- mkdir -p "$(DESTDIR)/$(localedir)/$${obj%/*}/LC_MESSAGES"; \
- dest="$(DESTDIR)/$(localedir)/$${obj%/*}/LC_MESSAGES/$${obj##*/}"; \
- cp "$${obj}" "$${dest}"; \
- chmod 644 "$${dest}"; \
- done
-
-uninstall:
- @for obj in $(OBJS); do \
- printf ' RM %s\n' "$${obj}"; \
- dest="$(DESTDIR)/$(localedir)/$${obj%/*}/LC_MESSAGES/$${obj##*/}"; \
- rm -f "$${dest}"; \
- done
-
-$(distdir):
- @mkdir -p '$(distdir)'
- @for file in $(distfiles); do \
- file="./$${file}"; \
- mkdir -p "$(distdir)/$${file%/*}"; \
- cp -p "$${file}" "$(distdir)/$${file%/*}"; \
- done
diff --git a/man/Makefile.in b/man/Makefile.in
deleted file mode 100644
index d17aba1..0000000
--- a/man/Makefile.in
+++ /dev/null
@@ -1,116 +0,0 @@
-# opkbuild
-# Makefile.in
-# Input Makefile for configure.
-#
-# Copyright (C) 2012 Patrick "P. J." McDermott
-#
-# 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, either version 2 of the License, or
-# (at your option) any later version.
-#
-# 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, see <http://www.gnu.org/licenses/>.
-
-package_name = @package_name@
-package_version= @package_version@
-package_description = @package_description@
-
-srcdir = @srcdir@
-prefix = @prefix@
-datadir = @datadir@
-mandir = @mandir@
-
-sh = @sh@
-
-sed_script = s&@@PACKAGE_NAME@@&$(package_name)&;\
- s&@@PACKAGE_VERSION@@&$(package_version)&;\
- s&@@PACKAGE_DESCRIPTION@@&$(package_description)&;
-
-.SUFFIXES:
-.SUFFIXES: .in
-
-#SRCS_1 = opkbuild.1.in \
-# ob-checkbuilddeps.1.in \
-# ob-buildenv.1.in \
-# ob-unpacksource.1.in \
-# ob-applypatches.1.in \
-# ob-installplatconf.1.in \
-# ob-installdocs.1.in \
-# ob-gencontrol.1.in \
-# ob-buildopk.1.in \
-# ob-genchanges.1.in
-#SRCS_3 = ob_get_text_domain.3.in \
-# ob_set_text_domain.3.in \
-# ob_get_msg.3.in \
-# ob_error.3.in \
-# ob_warn.3.in \
-# ob_info.3.in \
-# ob_init_package.3.in \
-# ob_parse_package_metadata.3.in \
-# ob_get_binary_packages.3.in \
-# ob_get_source_parameter.3.in \
-# ob_get_binary_parameter.3.in \
-# ob_summarize_package_arch.3.in \
-# ob_summarize_package_plat.3.in \
-# ob_parse_control.3.in \
-# ob_parse_changelog.3.in \
-# ob_validate_source_package_name.3.in \
-# ob_validate_binary_package_name.3.in \
-# ob_parse_version.3.in \
-# ob_reduce_build_deps.3.in \
-# ob_reduce_runinst_deps.3.in \
-# ob_get_system_arch.3.in \
-# ob_match_arch.3.in \
-# ob_get_system_plat.3.in \
-# ob_match_plat.3.in
-SRCS = $(SRCS_1) $(SRCS_3)
-OBJS = $(SRCS:.in=)
-
-distdir = ../$(package_name)-$(package_version)/man
-distfiles = Makefile.in $(SRCS)
-
-all: $(OBJS)
-
-$(OBJS):
- @printf ' SED man/%s\n' '$@'
- @abmon='Nul Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec '; \
- date=$$(LC_TIME=POSIX ls -l $(srcdir)/man/$@.in | sed 's/ / /g' | \
- cut -d ' ' -f 6-8); \
- md="$${date% *}"; \
- m="$$(echo $${abmon% $${md% *} *} | wc -w)"; \
- d="$${md#* }"; \
- [ $${m} -lt 10 ] && m="0$${m}"; \
- [ $${d} -lt 10 ] && d="0$${d}"; \
- y="$${date##* }"; \
- [ "$${y%:*}" != "$${y}" ] && y=$$(date '+%Y'); \
- sed "$(sed_script) s&@@DATE@@&$${y}-$${m}-$${d}&;" '$(srcdir)/man/$@.in' >'$@'
-
-clean:
- @for obj in $(OBJS); do \
- printf ' RM man/%s\n' "$${obj}"; \
- rm -f $${obj}; \
- done
-
-install: all
- @for obj in $(OBJS); do \
- printf ' INSTALL man/%s\n' "$${obj}"; \
- mkdir -p "$(DESTDIR)/$(mandir)/man$${obj##*.}"; \
- cp "$${obj}" "$(DESTDIR)/$(mandir)/man$${obj##*.}/$${obj}"; \
- chmod 644 "$(DESTDIR)/$(mandir)/man$${obj##*.}/$${obj}"; \
- done
-
-uninstall:
- @for obj in $(OBJS); do \
- printf ' RM %s\n' "$${obj}"; \
- rm -f "$(DESTDIR)/$(mandir)/man$${obj##*.}/$${obj}"; \
- done
-
-$(distdir):
- @mkdir -p '$(distdir)'
- @cp -pR $(distfiles) '$(distdir)'
diff --git a/src/Makefile.in b/src/Makefile.in
deleted file mode 100644
index 21c1451..0000000
--- a/src/Makefile.in
+++ /dev/null
@@ -1,83 +0,0 @@
-# opkbuild
-# Makefile.in
-# Input Makefile for configure.
-#
-# Copyright (C) 2012 Patrick "P. J." McDermott
-#
-# 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, either version 2 of the License, or
-# (at your option) any later version.
-#
-# 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, see <http://www.gnu.org/licenses/>.
-
-package_name = @package_name@
-package_version= @package_version@
-
-srcdir = @srcdir@
-prefix = @prefix@
-bindir = @bindir@
-libdir = @libdir@
-libopkbuild = @libopkbuild@
-
-sh = @sh@
-
-sed_script = s&@@PACKAGE_NAME@@&$(package_name)&;\
- s&@@PACKAGE_VERSION@@&$(package_version)&;\
- s&@@BINDIR@@&$(bindir)&;\
- s&@@LIBOPKBUILD@@&$(libopkbuild)&;\
- s&@@SH@@&$(sh)&;
-
-.SUFFIXES:
-.SUFFIXES: .sh
-
-SRCS = opkbuild.sh \
- ob-checkbuilddeps.sh \
- ob-buildenv.sh \
- ob-unpacksource.sh \
- ob-applypatches.sh \
- ob-installplatconf.sh \
- ob-installdocs.sh \
- ob-gencontrol.sh \
- ob-buildopk.sh \
-# ob-genchanges.sh
-OBJS = $(SRCS:.sh=)
-
-distdir = ../$(package_name)-$(package_version)/src
-distfiles = Makefile.in $(SRCS)
-
-all: $(OBJS)
-
-$(OBJS):
- @printf ' SED src/%s\n' '$@'
- @sed '$(sed_script)' '$(srcdir)/src/$@.sh' >'$@'
-
-clean:
- @for obj in $(OBJS); do \
- printf ' RM src/%s\n' "$${obj}"; \
- rm -f "$${obj}"; \
- done
-
-install: all
- @for obj in $(OBJS); do \
- printf ' INSTALL src/%s\n' "$${obj}"; \
- mkdir -p '$(DESTDIR)/$(bindir)'; \
- cp "$${obj}" "$(DESTDIR)/$(bindir)/$${obj}"; \
- chmod 755 "$(DESTDIR)/$(bindir)/$${obj}"; \
- done
-
-uninstall:
- @for obj in $(OBJS); do \
- printf ' RM %s\n' "$${obj}"; \
- rm -f "$(DESTDIR)/$(bindir)/$${obj}"; \
- done
-
-$(distdir):
- @mkdir -p '$(distdir)'
- @cp -pR $(distfiles) '$(distdir)'