diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/cpio | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/cpio')
-rw-r--r-- | recipes/cpio/cpio_2.5.bb | 33 | ||||
-rw-r--r-- | recipes/cpio/files/install.patch | 61 |
2 files changed, 94 insertions, 0 deletions
diff --git a/recipes/cpio/cpio_2.5.bb b/recipes/cpio/cpio_2.5.bb new file mode 100644 index 0000000000..c21a59a44a --- /dev/null +++ b/recipes/cpio/cpio_2.5.bb @@ -0,0 +1,33 @@ +DESCRIPTION = "GNU cpio is a program to manage archives of files." +HOMEPAGE = "http://www.gnu.org/software/cpio/" +SECTION = "console" +LICENSE = "GPL" +PR = "r4" + +DEPENDS += " texinfo-native " + +SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \ + file://install.patch;patch=1" +S = "${WORKDIR}/cpio-${PV}" + +inherit autotools + +do_install () { + autotools_do_install + install -d ${D}${base_bindir}/ + mv ${D}${bindir}/cpio ${D}${base_bindir}/cpio.${PN} + mv ${D}${libexecdir}/rmt ${D}${libexecdir}/rmt.${PN} +} + + +pkg_postinst_${PN} () { + update-alternatives --install ${base_bindir}/cpio cpio cpio.${PN} 100 + update-alternatives --install ${libexecdir}/rmt rmt rmt.${PN} 50 +} + + +pkg_prerm_${PN} () { + update-alternatives --remove cpio cpio.${PN} + update-alternatives --remove rmt rmt.${PN} +} + diff --git a/recipes/cpio/files/install.patch b/recipes/cpio/files/install.patch new file mode 100644 index 0000000000..3554156ffc --- /dev/null +++ b/recipes/cpio/files/install.patch @@ -0,0 +1,61 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- cpio-2.5/Makefile.in~install.patch ++++ cpio-2.5/Makefile.in +@@ -70,6 +70,7 @@ + # Prefix for each installed man page, normally empty or `g'. + manprefix = + ++DESTDIR = + + # Where to install the cpio and mt executables. + bindir = @bindir@ +@@ -123,19 +124,19 @@ + $(CC) -c $(CPPFLAGS) $(DEFS) -I$(srcdir) $(CFLAGS) $< + + install:: installdirs all $(srcdir)/cpio.1 $(srcdir)/mt.1 +- $(INSTALL_PROGRAM) cpio $(bindir)/$(binprefix)cpio +- test ! -f mt || $(INSTALL_PROGRAM) mt $(bindir)/$(binprefix)mt +- -test ! -f rmt || $(INSTALL_PROGRAM) rmt $(libexecdir)/rmt +- -$(INSTALL_DATA) $(srcdir)/cpio.1 $(mandir)/$(manprefix)cpio.$(manext) +- -test ! -f mt || $(INSTALL_DATA) $(srcdir)/mt.1 $(mandir)/$(manprefix)mt.$(manext) ++ $(INSTALL_PROGRAM) -D cpio $(DESTDIR)$(bindir)/$(binprefix)cpio ++ test ! -f mt || $(INSTALL_PROGRAM) -D mt $(DESTDIR)$(bindir)/$(binprefix)mt ++ -test ! -f rmt || $(INSTALL_PROGRAM) -D rmt $(DESTDIR)$(libexecdir)/rmt ++ -$(INSTALL_DATA) -D $(srcdir)/cpio.1 $(DESTDIR)$(mandir)/$(manprefix)cpio.$(manext) ++ -test ! -f mt || $(INSTALL_DATA) -D $(srcdir)/mt.1 $(DESTDIR)$(mandir)/$(manprefix)mt.$(manext) + + installdirs: +- $(srcdir)/mkinstalldirs $(bindir) $(libexecdir) $(mandir) $(infodir) ++ $(srcdir)/mkinstalldirs $(DESTDIR)/$(bindir) $(DESTDIR)/$(libexecdir) $(DESTDIR)/$(mandir) $(DESTDIR)/$(infodir) + + uninstall:: +- cd $(bindir); rm -f $(binprefix)cpio $(binprefix)mt +- -rm -f $(libexecdir)/rmt +- cd $(mandir); rm -f $(manprefix)cpio.$(manext) $(manprefix)mt.$(manext) ++ cd $(DESTDIR)$(bindir); rm -f $(binprefix)cpio $(binprefix)mt ++ -rm -f $(DESTDIR)$(libexecdir)/rmt ++ cd $(DESTDIR)$(mandir); rm -f $(manprefix)cpio.$(manext) $(manprefix)mt.$(manext) + + check: + @echo No tests are supplied. +@@ -186,14 +187,14 @@ + + install-info: $(INFO_DEPS) + for file in *.info*; do \ +- $(INSTALL_DATA) $$file $(infodir)/$$file; \ ++ $(INSTALL_DATA) -D $$file $(DESTDIR)$(infodir)/$$file; \ + done + + uninstall:: uninstall-info + + uninstall-info: + for file in *.info*; do \ +- rm -f $(infodir)/$$file; \ ++ rm -f $(DESTDIR)$(infodir)/$$file; \ + done + + clean: |