enscript: add new recipe

enscript is a plain ASCII to PostScript converter.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Jackie Huang
2017-06-09 14:40:31 +08:00
committed by Martin Jansa
parent e846a439f3
commit a5b7f49d7f
2 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,118 @@
autoconf no longer supports AM_C_PROTOTYPES
| configure.ac:14: error: automatic de-ANSI-fication support has been removed
| /bitbake_build/tmp/sysroots/x86_64-linux/usr/share/aclocal-1.12/protos.m4:10: AM_C_PROTOTYPES is expanded from...
Upstream-Status: Pending
Author: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Index: enscript-1.6.6/configure.ac
===================================================================
--- enscript-1.6.6.orig/configure.ac
+++ enscript-1.6.6/configure.ac
@@ -11,7 +11,6 @@ AC_PROG_INSTALL
AC_PROG_CC
AC_USE_SYSTEM_EXTENSIONS
-AM_C_PROTOTYPES
AC_C_CONST
AC_FUNC_ALLOCA
Index: enscript-1.6.6/afmlib/afm.h
===================================================================
--- enscript-1.6.6.orig/afmlib/afm.h
+++ enscript-1.6.6/afmlib/afm.h
@@ -24,11 +24,7 @@
#define AFM_H
#ifndef ___P
-#if PROTOTYPES
#define ___P(protos) protos
-#else /* no PROTOTYPES */
-#define ___P(protos) ()
-#endif /* no PROTOTYPES */
#endif
/**********************************************************************
Index: enscript-1.6.6/afmlib/afmint.h
===================================================================
--- enscript-1.6.6.orig/afmlib/afmint.h
+++ enscript-1.6.6/afmlib/afmint.h
@@ -34,11 +34,7 @@
#include <stdio.h>
#ifndef ___P
-#if PROTOTYPES
#define ___P(protos) protos
-#else /* no PROTOTYPES */
-#define ___P(protos) ()
-#endif /* no PROTOTYPES */
#endif
#if STDC_HEADERS
Index: enscript-1.6.6/afmlib/strhash.h
===================================================================
--- enscript-1.6.6.orig/afmlib/strhash.h
+++ enscript-1.6.6/afmlib/strhash.h
@@ -24,11 +24,7 @@
#define STRHASH_H
#ifndef ___P
-#if PROTOTYPES
#define ___P(protos) protos
-#else /* no PROTOTYPES */
-#define ___P(protos) ()
-#endif /* no PROTOTYPES */
#endif
typedef struct stringhash_st *StringHashPtr;
Index: enscript-1.6.6/compat/xalloc.h
===================================================================
--- enscript-1.6.6.orig/compat/xalloc.h
+++ enscript-1.6.6/compat/xalloc.h
@@ -28,11 +28,7 @@
#define XALLOC_H
#ifndef ___P
-#if PROTOTYPES
#define ___P(protos) protos
-#else /* no PROTOTYPES */
-#define ___P(protos) ()
-#endif /* no PROTOTYPES */
#endif
void *xmalloc ___P ((size_t size));
Index: enscript-1.6.6/src/gsint.h
===================================================================
--- enscript-1.6.6.orig/src/gsint.h
+++ enscript-1.6.6/src/gsint.h
@@ -39,11 +39,7 @@
#include <sys/stat.h>
#ifndef ___P
-#if PROTOTYPES
#define ___P(protos) protos
-#else /* no PROTOTYPES */
-#define ___P(protos) ()
-#endif /* no PROTOTYPES */
#endif
#if STDC_HEADERS
Index: enscript-1.6.6/states/defs.h
===================================================================
--- enscript-1.6.6.orig/states/defs.h
+++ enscript-1.6.6/states/defs.h
@@ -37,11 +37,7 @@
#include <ctype.h>
#ifndef ___P
-#if PROTOTYPES
#define ___P(protos) protos
-#else /* no PROTOTYPES */
-#define ___P(protos) ()
-#endif /* no PROTOTYPES */
#endif
#if STDC_HEADERS

View File

@@ -0,0 +1,22 @@
SUMMARY = "A plain ASCII to PostScript converter"
DESCRIPTION = "GNU enscript is a free replacement for Adobe''s Enscript \
program. Enscript converts ASCII files to PostScript(TM) and spools generated \
PostScript output to the specified printer or saves it to a file. Enscript can \
be extended to handle different output media and includes many options for \
customizing printouts."
HOMEPAGE = "http://www.gnu.org/software/enscript/"
SECTION = "console/utils"
LICENSE = "GPLv3+"
LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.gz \
file://enscript-autoconf.patch \
"
inherit autotools gettext
SRC_URI[md5sum] = "3acc242b829adacabcaf28533f049afd"
SRC_URI[sha256sum] = "6d56bada6934d055b34b6c90399aa85975e66457ac5bf513427ae7fc77f5c0bb"
RDEPENDS_${PN} = "perl"