]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
freetype: New package.
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 12 Feb 2010 21:15:53 +0000 (22:15 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 12 Feb 2010 21:15:53 +0000 (22:15 +0100)
pkgs/core/freetype/freetype.nm [new file with mode: 0644]

diff --git a/pkgs/core/freetype/freetype.nm b/pkgs/core/freetype/freetype.nm
new file mode 100644 (file)
index 0000000..3c39f80
--- /dev/null
@@ -0,0 +1,55 @@
+###############################################################################
+#                                                                             #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt                 #
+#                                                                             #
+# This program is free software: you can redistribute it and/or modify        #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation, either version 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# This program is distributed in the hope that it will be useful,             #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include $(PKGROOT)/Include
+
+PKG_NAME       = freetype
+PKG_VER        = 2.3.9
+PKG_REL        = 0
+
+PKG_MAINTAINER =
+PKG_GROUP      = System/Graphics
+PKG_URL        = http://www.freetype.org/
+PKG_LICENSE    = FTL GPLv2+
+PKG_SUMMARY    = A free and portable font rendering engine.
+
+PKG_DEPS      += zlib
+
+define PKG_DESCRIPTION
+       The FreeType engine is a free and portable font rendering \
+       engine, developed to provide advanced font support for a variety of \
+       platforms and environments. FreeType is a library which can open and \
+       manages font files as well as efficiently load, hint and render \
+       individual glyphs. FreeType is not a font server or a complete \
+       text-rendering library.
+endef
+
+PKG_TARBALL    = $(THISAPP).tar.bz2
+
+define STAGE_PREPARE_CMDS
+       cd $(DIR_APP) && \
+               sed -i -r -e 's:.*(#.*BYTE.*) .*:\1:' \
+                       -e 's:.*(#.*SUBPIX.*) .*:\1:' \
+                       include/freetype/config/ftoption.h
+endef