blob: a5cfe7647682dd503f5a8a931f191df147b94167 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#
# This is free software, licensed under the GNU General Public License v2.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=ghostscript
PKG_VERSION:=9.00
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://ghostscript.com/releases/
PKG_MD5SUM:=a402462478b4cdda3e1816899227b845
include $(INCLUDE_DIR)/package.mk
define Package/ghostscript
SECTION:=utils
CATEGORY:=Utilities
TITLE:=interpreter for the PostScript language and for PDF
URL:=http://pages.cs.wisc.edu/~ghost/
DEPENDS:=+libtiff +libiconv +libpng +fontconfig +libfreetype
endef
define Package/ghostscript/description
Ghostscript is an interpreter for the PostScript language and for PDF
endef
define Build/Prepare
$(call Build/Prepare/Default)
mkdir $(PKG_BUILD_DIR)/obj
#(cd $(PKG_BUILD_DIR); ./configure;);
#make -C $(PKG_BUILD_DIR) obj/arch.h obj/genconf obj/echogs
for i in genarch genconf echogs; do \
gcc -O2 -Wall -Wstrict-prototypes -Wundef -Wmissing-declarations -Wmissing-prototypes -Wwrite-strings -Wno-strict-aliasing -Wdeclaration-after-statement -fno-builtin -fno-common -DHAVE_STDINT_H -DGX_COLOR_INDEX_TYPE="unsigned long long" -I$(PKG_BUILD_DIR)/base -o $(PKG_BUILD_DIR)/obj/$$$$i $(PKG_BUILD_DIR)/base/$$$$i.c; \
done
endef
TARGET_CFLAGS+= \
-I$(STAGING_DIR)/usr/lib/libiconv/include \
TARGET_LDFLAGS+= \
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
-L$(STAGING_DIR)/usr/lib/libiconv/lib
CONFIGURE_ARGS += \
--with-system-libtiff \
--with-libiconv=gnu \
--without-x \
--without-jbig2dec \
--without-jasper
MAKE_FLAGS += \
EXTRALIBS="-L$(STAGING_DIR)/usr/lib/libiconv/lib -L$(STAGING_DIR)/usr/lib -lfontconfig -lfreetype -liconv -ldl -Wl,-rpath-link=$(STAGING_DIR)/usr/lib" \
COMPILE_INITS="0"
define Package/ghostscript/install
$(INSTALL_DIR) \
$(1)/usr/bin $(1)/usr/share/$(PKG_NAME)/$(PKG_VERSION)
$(INSTALL_BIN) \
$(PKG_BUILD_DIR)/bin/gs \
$(1)/usr/bin/gs
$(CP) $(PKG_BUILD_DIR)/{Resource,lib,iccprofiles} \
$(1)/usr/share/$(PKG_NAME)/$(PKG_VERSION)/
endef
$(eval $(call BuildPackage,ghostscript))
|