packages/Xorg/app/dillo/Makefile
swalker 5043dff865 [packages] dillo: use the new repo, per http://lists.auriga.wearlab.de/pipermail/dillo-dev/2009-February/005949.html
git-svn-id: svn://svn.openwrt.org/openwrt/packages@20297 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-03-19 06:47:49 +00:00

68 lines
1.9 KiB
Makefile

#
# Copyright (C) 2006-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=dillo
PKG_REV:=cc974615ae39
PKG_VERSION:=r$(PKG_REV)
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=hg
PKG_SOURCE_VERSION:=$(PKG_REV)
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://hg.dillo.org/dillo
PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
include $(INCLUDE_DIR)/package.mk
define Package/dillo
SECTION:=xorg-app
CATEGORY:=Xorg
SUBMENU:=app
TITLE:=Dillo2
URL:=http://fltk.org/
DEPENDS:=+libXft +libstdcpp +libpthread +zlib +fltk2 +libjpeg +libiconv +libpng
endef
define Package/dillo/description
Dillo is a web browser project completely written in C.
Dillo aims to be a multi-platform browser alternative that
is small, stable, developer-friendly, usable, fast, and
extensible.
Note: This is the fltk2 based dillo.
endef
EXTRA_CPPFLAGS+=-I$(STAGING_DIR)/usr/lib/libiconv/include
EXTRA_LDFLAGS+=-L$(STAGING_DIR)/usr/lib/libiconv/lib -Wl,-rpath-link=$(STAGING_DIR)/usr/lib
define Build/Configure
(cd $(PKG_BUILD_DIR); ./autogen.sh );
$(call Build/Configure/Default)
endef
define Build/Install
DESTDIR="$(PKG_INSTALL_DIR)" $(MAKE) -C $(PKG_BUILD_DIR) install
endef
define Package/dillo/install
$(INSTALL_DIR) $(1)/etc $(1)/usr/share/applications $(1)/usr/share/icons
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/* $(1)/etc/
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dillo $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dpid $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dpidc $(1)/usr/bin
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/dillo $(1)/usr/lib/
$(CP) ./files/dillo.png $(1)/usr/share/icons/
$(INSTALL_DATA) ./files/dillo.desktop $(1)/usr/share/applications/
endef
$(eval $(call BuildPackage,dillo))