diff options
author | Raymond Danks <raymond@edanks.com> | 2006-04-18 01:41:36 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-18 01:41:36 +0000 |
commit | fe2cdc3f39f63eda365229766238c1b031b1eb59 (patch) | |
tree | 8da76625dde8a993a1e4aac3f9a8d59265f17b0c /packages/mtools | |
parent | dad650aea1b5d2296f9c2c792ed11de0c063d4d1 (diff) |
mtools: initial add
Diffstat (limited to 'packages/mtools')
-rw-r--r-- | packages/mtools/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/mtools/files/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/mtools/files/mtools-makeinfo.patch | 63 | ||||
-rw-r--r-- | packages/mtools/mtools-native_3.9.9.bb | 8 | ||||
-rw-r--r-- | packages/mtools/mtools_3.9.9.bb | 15 |
5 files changed, 86 insertions, 0 deletions
diff --git a/packages/mtools/.mtn2git_empty b/packages/mtools/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/mtools/.mtn2git_empty diff --git a/packages/mtools/files/.mtn2git_empty b/packages/mtools/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/mtools/files/.mtn2git_empty diff --git a/packages/mtools/files/mtools-makeinfo.patch b/packages/mtools/files/mtools-makeinfo.patch new file mode 100644 index 0000000000..35fae44aba --- /dev/null +++ b/packages/mtools/files/mtools-makeinfo.patch @@ -0,0 +1,63 @@ +--- mtools-3.9.9/configure.in.orig 2006-04-14 16:05:54.337655192 -0600 ++++ mtools-3.9.9/configure.in 2006-04-14 16:12:29.736545424 -0600 +@@ -21,6 +21,33 @@ + AC_C_CONST + AC_C_INLINE + ++AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, ) ++if test "x$MAKEINFO" = "x"; then ++ MAKEINFO="@echo makeinfo missing; true" ++fi ++AC_CHECK_PROG(TEXI2DVI, texi2dvi, texi2dvi, ) ++if test "x$TEXI2DVI" = "x"; then ++ TEXI2DVI="@echo texi2dvi missing; true" ++fi ++AC_CHECK_PROG(TEXI2PDF, texi2pdf, texi2pdf, ) ++if test "x$TEXI2PDF" = "x"; then ++ TEXI2PDF="@echo texi2pdf missing; true" ++fi ++AC_CHECK_PROG(TEXI2HTML, texi2html, texi2html, ) ++if test "x$TEXI2HTML" = "x"; then ++ TEXI2HTML="@echo texi2html missing; true" ++fi ++AC_CHECK_PROG(DVI2PS, dvi2ps, dvi2ps, ) ++if test "x$DVI2PS" = "x"; then ++ DVI2PS="@echo dvi2ps missing; true" ++fi ++ ++AC_SUBST(MAKEINFO) ++AC_SUBST(TEXI2DVI) ++AC_SUBST(TEXI2PDF) ++AC_SUBST(TEXI2HTML) ++AC_SUBST(DVI2PS) ++ + + dnl Check for configuration options + dnl Enable OS/2 extended density format disks +--- mtools-3.9.9/Makefile.in.sav 2006-04-14 15:56:19.000000000 -0600 ++++ mtools-3.9.9/Makefile.in 2006-04-14 16:15:29.315245312 -0600 +@@ -11,10 +11,11 @@ + USERLDFLAGS = + USERLDLIBS = + +-MAKEINFO = makeinfo +-TEXI2DVI = texi2dvi +-TEXI2PDF = texi2pdf +-TEXI2HTML = texi2html ++MAKEINFO = @MAKEINFO@ ++TEXI2DVI = @TEXI2DVI@ ++TEXI2PDF = @TEXI2PDF@ ++TEXI2HTML = @TEXI2HTML@ ++DVI2PS = @DVI2PS@ + + + # do not edit below this line +@@ -181,7 +182,7 @@ + + ps: mtools.ps + %.ps: %.dvi +- dvips -f < $< > $@ ++ $(DVI2PS) -f < $< > $@ + + pdf: mtools.pdf + %.pdf: %.texi diff --git a/packages/mtools/mtools-native_3.9.9.bb b/packages/mtools/mtools-native_3.9.9.bb new file mode 100644 index 0000000000..4fdd36d740 --- /dev/null +++ b/packages/mtools/mtools-native_3.9.9.bb @@ -0,0 +1,8 @@ +# mtools-native OE build file +# Copyright (C) 2004-2006, Advanced Micro Devices, Inc. All Rights Reserved +# Released under the MIT license (see packages/COPYING) + +include mtools_${PV}.bb +S="${WORKDIR}/mtools-${PV}" + +inherit autotools native diff --git a/packages/mtools/mtools_3.9.9.bb b/packages/mtools/mtools_3.9.9.bb new file mode 100644 index 0000000000..347ecf4776 --- /dev/null +++ b/packages/mtools/mtools_3.9.9.bb @@ -0,0 +1,15 @@ +# mtools OE build file +# Copyright (C) 2004-2006, Advanced Micro Devices, Inc. All Rights Reserved +# Released under the MIT license (see packages/COPYING) + +DESCRIPTION="Mtools is a collection of utilities for accessing MS-DOS disks from Unix without mounting them." +HOMEPAGE="http://mtools.linux.lu" +MAINTAINER = "Raymond Danks <raymondd@ia.amd.com>" +LICENSE="GPL" + +SRC_URI="http://mtools.linux.lu/mtools-${PV}.tar.gz \ + file://mtools-makeinfo.patch;patch=1" + +DEPENDS = "tetex-native" + +inherit autotools |