From 6901993922da7eaa5253316f295f71b3b0e5db27 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 22 Jan 2010 20:04:39 +0100 Subject: add some font packages --- package/font-bitstream-75dpi/Makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 package/font-bitstream-75dpi/Makefile (limited to 'package/font-bitstream-75dpi') diff --git a/package/font-bitstream-75dpi/Makefile b/package/font-bitstream-75dpi/Makefile new file mode 100644 index 000000000..a58f28fef --- /dev/null +++ b/package/font-bitstream-75dpi/Makefile @@ -0,0 +1,28 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= font-bitstream-75dpi +PKG_VERSION:= 1.0.1 +PKG_RELEASE:= 1 +PKG_MD5SUM:= f8e982bcaaed199fdac03e9fc12b2952 +PKG_DESCR:= X fonts +PKG_SECTION:= x11 +PKG_URL:= http://www.x.org/ +PKG_SITES:= ${MASTER_SITE_XORG} + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,FONT_BITSTREAM_75DPI,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIGURE_STYLE:= gnu +BUILD_STYLE:= auto +INSTALL_STYLE:= auto + +post-install: + $(INSTALL_DIR) $(IDIR_FONT_BITSTREAM_75DPI)/usr/share/fonts/X11/75dpi + $(CP) ${WRKINST}/usr/share/fonts/X11/75dpi/* \ + $(IDIR_FONT_BITSTREAM_75DPI)/usr/share/fonts/X11/75dpi + +include ${TOPDIR}/mk/pkg-bottom.mk -- cgit v1.2.3 From 6daa792eab1488d013fefc5eb7e4d01f40f38687 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 7 Feb 2010 20:03:20 +0100 Subject: change defaults for CONFIG/BUILD/INSTALL styles All packages need an update, so here is a very huge commit. Most of the 460 source packages use automatic style for configuration, building and installing. Make these styles default to "auto". If you have a package, which does not conform to this, just use manual style and add a do-$task make target. I added a new style named AUTOTOOL style, which is needed for some broken packages, which needs to be updated via autoconf or automake. I renamed CONFIGURE_STYLE to CONFIG_STYLE. Updates for some packages, which have newer upstream versions. Renaming of all package/*/extra directories. Use the directory src/ to provide overwrites of source files or to add the code, when no upstream package is available or used. src directory will be automatically used. --- package/font-bitstream-75dpi/Makefile | 4 ---- 1 file changed, 4 deletions(-) (limited to 'package/font-bitstream-75dpi') diff --git a/package/font-bitstream-75dpi/Makefile b/package/font-bitstream-75dpi/Makefile index a58f28fef..6a7dcae13 100644 --- a/package/font-bitstream-75dpi/Makefile +++ b/package/font-bitstream-75dpi/Makefile @@ -16,10 +16,6 @@ include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,FONT_BITSTREAM_75DPI,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) -CONFIGURE_STYLE:= gnu -BUILD_STYLE:= auto -INSTALL_STYLE:= auto - post-install: $(INSTALL_DIR) $(IDIR_FONT_BITSTREAM_75DPI)/usr/share/fonts/X11/75dpi $(CP) ${WRKINST}/usr/share/fonts/X11/75dpi/* \ -- cgit v1.2.3 From e04d6dc7eff54a2b851b65dd6cbcc78b8f573f64 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 10 Mar 2010 18:28:47 +0100 Subject: disable X fonts for non-Linux buildsystems there is an open unresolved issue with host tools --- package/font-bitstream-75dpi/Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'package/font-bitstream-75dpi') diff --git a/package/font-bitstream-75dpi/Makefile b/package/font-bitstream-75dpi/Makefile index 6a7dcae13..07b3edfd5 100644 --- a/package/font-bitstream-75dpi/Makefile +++ b/package/font-bitstream-75dpi/Makefile @@ -12,6 +12,8 @@ PKG_SECTION:= x11 PKG_URL:= http://www.x.org/ PKG_SITES:= ${MASTER_SITE_XORG} +PKG_HOST_DEPENDS:= !netbsd !openbsd !cygwin !freebsd !mirbsd + include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,FONT_BITSTREAM_75DPI,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) -- cgit v1.2.3