Author: dnusinow Date: 2005-12-08 00:08:42 -0500 (Thu, 08 Dec 2005) New Revision: 931
Added: branches/modular/app/mkfontdir/debian/ branches/modular/app/mkfontdir/debian/changelog branches/modular/app/mkfontdir/debian/compat branches/modular/app/mkfontdir/debian/control branches/modular/app/mkfontdir/debian/copyright branches/modular/app/mkfontdir/debian/files branches/modular/app/mkfontdir/debian/mkfontdir.install branches/modular/app/mkfontdir/debian/rules branches/modular/app/mkfontscale/debian/ branches/modular/app/mkfontscale/debian/changelog branches/modular/app/mkfontscale/debian/compat branches/modular/app/mkfontscale/debian/control branches/modular/app/mkfontscale/debian/copyright branches/modular/app/mkfontscale/debian/mkfontscale.install branches/modular/app/mkfontscale/debian/rules Log: Add temporary packaging stuff for font building apps. Just for bootstrapping right now. Added: branches/modular/app/mkfontdir/debian/changelog =================================================================== --- branches/modular/app/mkfontdir/debian/changelog 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontdir/debian/changelog 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1,5 @@ +mkfontdir (1:0.99.1-1) UNRELEASED; urgency=low + + * TEMPORARY PACKAGE FOR MODULAR PACKAGING DEVELOPMENT + + -- David Nusinow <[EMAIL PROTECTED]> Tue, 22 Nov 2005 15:07:02 -0500 Added: branches/modular/app/mkfontdir/debian/compat =================================================================== --- branches/modular/app/mkfontdir/debian/compat 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontdir/debian/compat 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1 @@ +4 Added: branches/modular/app/mkfontdir/debian/control =================================================================== --- branches/modular/app/mkfontdir/debian/control 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontdir/debian/control 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1,13 @@ +Source: mkfontdir +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force <[email protected]> +Uploaders: David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL PROTECTED]>, Fabio M. Di Nitto <[EMAIL PROTECTED]> +Build-Depends: debhelper (>= 4.0.0), pkg-config +Standards-Version: 3.6.1.0 + +Package: mkfontdir +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common +Description: TEMPORARY PACKAGE + TEMPORARY PACKAGE FOR MODULAR PACKAGE DEVELOPMENT Added: branches/modular/app/mkfontdir/debian/copyright =================================================================== --- branches/modular/app/mkfontdir/debian/copyright 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontdir/debian/copyright 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1,24 @@ +Copyright 2002-2004 Red Hat Inc., Durham, North Carolina. + +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation on the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice (including the +next paragraph) shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. Added: branches/modular/app/mkfontdir/debian/files =================================================================== --- branches/modular/app/mkfontdir/debian/files 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontdir/debian/files 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1 @@ +mkfontdir_0.99.1-1_i386.deb x11 optional Added: branches/modular/app/mkfontdir/debian/mkfontdir.install =================================================================== --- branches/modular/app/mkfontdir/debian/mkfontdir.install 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontdir/debian/mkfontdir.install 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1,2 @@ +usr/bin/mkfontdir +usr/share/man/man1x/mkfontdir.1x Added: branches/modular/app/mkfontdir/debian/rules =================================================================== --- branches/modular/app/mkfontdir/debian/rules 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontdir/debian/rules 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1,97 @@ +#!/usr/bin/make -f +# debian/rules for the Debian libdmx package. +# Copyright © 2004 Scott James Remnant <[EMAIL PROTECTED]> +# Copyright © 2005 Daniel Stone <[EMAIL PROTECTED]> +# Copyright © 2005 David Nusinow <[EMAIL PROTECTED]> + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# set this to the name of the main shlib's binary package +PACKAGE = libdmx1 + +include debian/xsfbs/xsfbs.mk + +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) + confflags += --build=$(DEB_HOST_GNU_TYPE) +else + confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) +endif + + +build: build-stamp +build-stamp: + dh_testdir + + mkdir obj-$(DEB_BUILD_GNU_TYPE) +# cd obj-$(DEB_BUILD_GNU_TYPE) && \ +# ../configure --prefix=/usr --mandir=\$${prefix}/share/man \ +# --infodir=\$${prefix}/share/info $(confflags) \ +# CFLAGS="$(CFLAGS)" +# cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) + ./configure --prefix=/usr --mandir=$$\{prefix}/share/man \ + --infodir=\$${prefix}/share/info $(confflags) CFLAGS="$(CFLAGS)" + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + rm -f config.cache config.log config.status + rm -f */config.cache */config.log */config.status + rm -f conftest* */conftest* + rm -rf autom4te.cache */autom4te.cache + rm -rf obj-* + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + #cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + + dh_installdocs + dh_install --sourcedir=debian/tmp + dh_installchangelogs + dh_link + dh_strip --dbg-package=$(PACKAGE) + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_makeshlibs + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-independent files here. +binary-indep: build install +# Nothing to do + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install Property changes on: branches/modular/app/mkfontdir/debian/rules ___________________________________________________________________ Name: svn:executable + * Added: branches/modular/app/mkfontscale/debian/changelog =================================================================== --- branches/modular/app/mkfontscale/debian/changelog 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontscale/debian/changelog 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1,5 @@ +mkfontscale (1:0.99.1-1) UNRELEASED; urgency=low + + * TEMPORARY PACKAGE FOR MODULAR PACKAGING DEVELOPMENT + + -- David Nusinow <[EMAIL PROTECTED]> Tue, 22 Nov 2005 15:07:02 -0500 Added: branches/modular/app/mkfontscale/debian/compat =================================================================== --- branches/modular/app/mkfontscale/debian/compat 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontscale/debian/compat 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1 @@ +4 Added: branches/modular/app/mkfontscale/debian/control =================================================================== --- branches/modular/app/mkfontscale/debian/control 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontscale/debian/control 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1,13 @@ +Source: mkfontscale +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force <[email protected]> +Uploaders: David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL PROTECTED]>, Fabio M. Di Nitto <[EMAIL PROTECTED]> +Build-Depends: debhelper (>= 4.0.0), pkg-config +Standards-Version: 3.6.1.0 + +Package: mkfontscale +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common +Description: TEMPORARY PACKAGE + TEMPORARY PACKAGE FOR MODULAR PACKAGE DEVELOPMENT Added: branches/modular/app/mkfontscale/debian/copyright =================================================================== --- branches/modular/app/mkfontscale/debian/copyright 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontscale/debian/copyright 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1,24 @@ +Copyright 2002-2004 Red Hat Inc., Durham, North Carolina. + +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation on the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice (including the +next paragraph) shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. Added: branches/modular/app/mkfontscale/debian/mkfontscale.install =================================================================== --- branches/modular/app/mkfontscale/debian/mkfontscale.install 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontscale/debian/mkfontscale.install 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1,2 @@ +usr/bin/mkfontscale +usr/share/man/man1x/mkfontscale.1x Added: branches/modular/app/mkfontscale/debian/rules =================================================================== --- branches/modular/app/mkfontscale/debian/rules 2005-12-08 05:06:30 UTC (rev 930) +++ branches/modular/app/mkfontscale/debian/rules 2005-12-08 05:08:42 UTC (rev 931) @@ -0,0 +1,93 @@ +#!/usr/bin/make -f +# debian/rules for the Debian libdmx package. +# Copyright © 2004 Scott James Remnant <[EMAIL PROTECTED]> +# Copyright © 2005 Daniel Stone <[EMAIL PROTECTED]> +# Copyright © 2005 David Nusinow <[EMAIL PROTECTED]> + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# set this to the name of the main shlib's binary package +PACKAGE = libdmx1 + +include debian/xsfbs/xsfbs.mk + +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) + confflags += --build=$(DEB_HOST_GNU_TYPE) +else + confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) +endif + + +build: build-stamp +build-stamp: + dh_testdir + + mkdir obj-$(DEB_BUILD_GNU_TYPE) + cd obj-$(DEB_BUILD_GNU_TYPE) && \ + ../configure --prefix=/usr --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info $(confflags) \ + CFLAGS="$(CFLAGS)" + cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + rm -f config.cache config.log config.status + rm -f */config.cache */config.log */config.status + rm -f conftest* */conftest* + rm -rf autom4te.cache */autom4te.cache + rm -rf obj-* + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + + dh_installdocs + dh_install --sourcedir=debian/tmp + dh_installchangelogs + dh_link + dh_strip --dbg-package=$(PACKAGE) + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_makeshlibs + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-independent files here. +binary-indep: build install +# Nothing to do + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install Property changes on: branches/modular/app/mkfontscale/debian/rules ___________________________________________________________________ Name: svn:executable + * -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

