debian/0000755000000000000000000000000011575306251007173 5ustar debian/source/0000755000000000000000000000000011575306251010473 5ustar debian/source/format0000644000000000000000000000001411575306251011701 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000006711575306251010227 0ustar version=3 http://sf.net/pure-data/markex-(.*)\.tar\.gz debian/copyright0000644000000000000000000000213711575306251011131 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=135 Name: markex Maintainer: IOhannes m. zmoelnig Source: http://sourceforge.net/projects/pure-data/files/libraries/markex/ Copyright: 1994-2000, Mark Danks 2006-2008, IOhannes m. zmoelnig License: GPL-2+ This package 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 2 of the License, or (at your option) any later version. . This package 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 package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA X-Comment: On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. debian/patches/0000755000000000000000000000000011575306251010622 5ustar debian/patches/series0000644000000000000000000000002511575306251012034 0ustar nonlinux_fixes.patch debian/patches/nonlinux_fixes.patch0000644000000000000000000000315311575306251014715 0ustar Author: IOhannes m zmölnig Description: upstream Makefile forgot about Hurd & kFreeBSD; they should be handled the same as Linux --- pd-markex.orig/Makefile +++ pd-markex/Makefile @@ -41,6 +41,7 @@ # #------------------------------------------------------------------------------# + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -121,6 +122,34 @@ STRIP = strip --strip-unneeded -R .note -R .comment DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) endif +ifeq ($(UNAME),GNU) + # GNU/Hurd, should work like GNU/Linux for basically all externals + CPU := $(shell uname -m) + SOURCES += $(SOURCES_linux) + EXTENSION = pd_linux + OS = linux + PD_PATH = /usr + OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer + ALL_CFLAGS += -fPIC + ALL_LDFLAGS += -Wl,--export-dynamic -shared -fPIC + ALL_LIBS += -lc + STRIP = strip --strip-unneeded -R .note -R .comment + DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) +endif +ifeq ($(UNAME),GNU/kFreeBSD) + # Debian GNU/kFreeBSD, should work like GNU/Linux for basically all externals + CPU := $(shell uname -m) + SOURCES += $(SOURCES_linux) + EXTENSION = pd_linux + OS = linux + PD_PATH = /usr + OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer + ALL_CFLAGS += -fPIC + ALL_LDFLAGS += -Wl,--export-dynamic -shared -fPIC + ALL_LIBS += -lc + STRIP = strip --strip-unneeded -R .note -R .comment + DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) +endif ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME))) CPU := $(shell uname -m) SOURCES += $(SOURCES_cygwin) debian/links0000644000000000000000000000022711575306251010237 0ustar usr/lib/pd/extra/markex/README.txt usr/share/doc/pd-markex/README usr/share/common-licenses/GPL-2 usr/lib/pd/extra/markex/LICENSE.txt debian/gbp.conf0000644000000000000000000000024511575306251010613 0ustar [DEFAULT] upstream-branch = upstream debian-branch = master upstream-tag = upstream/%(version)s debian-tag = debian/%(version)s pristine-tar = True sign-tags = True debian/changelog0000644000000000000000000000077311575306251011054 0ustar pd-markex (0.85-2) unstable; urgency=low [ IOhannes m zmölnig ] * Makefile-fixes for non-linux (Closes: #609777) * Added Vcs-* fields [ Hans-Christoph Steiner ] * updated Build-Depends to use puredata-dev (Closes: #629715) * bumped standards version to 3.9.2 -- Hans-Christoph Steiner Fri, 10 Jun 2011 14:36:01 -0400 pd-markex (0.85-1) unstable; urgency=low * Initial release (Closes: #591826) -- Hans-Christoph Steiner Wed, 10 Nov 2010 15:14:21 -0500 debian/rules0000755000000000000000000000077311575306251010262 0ustar #!/usr/bin/make -f LIBRARY_NAME = markex PACKAGE = pd-$(LIBRARY_NAME) pkglibdir = /usr/lib/pd/extra %: dh $@ --buildsystem=makefile override_dh_auto_install: dh_auto_install -- prefix=/usr pkglibdir=$(pkglibdir) # replace license file with link to the Debian license file rm -f -- $(CURDIR)/debian/$(PACKAGE)/$(pkglibdir)/$(LIBRARY_NAME)/LICENSE.txt override_dh_shlibdeps: dpkg-shlibdeps $(CURDIR)/debian/$(PACKAGE)$(pkglibdir)/$(LIBRARY_NAME)/*.pd_linux \ -T$(CURDIR)/debian/$(PACKAGE).substvars debian/control0000644000000000000000000000166411575306251010605 0ustar Source: pd-markex Section: sound Priority: optional Maintainer: Debian Multimedia Maintainers DM-Upload-Allowed: yes Uploaders: Hans-Christoph Steiner Build-Depends: debhelper (>= 7.0.50~), puredata-dev | puredata (<< 0.43) Standards-Version: 3.9.2 Homepage: http://puredata.info Vcs-Git: git://git.debian.org/pkg-multimedia/pd-markex.git Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/pd-markex.git Package: pd-markex Architecture: any Depends: ${shlibs:Depends}, pd, ${misc:Depends}, pd-libdir Recommends: pd-pddp Description: Pd library of misc objects from Mark Danks Markex is an external library of miscellaneous objects that was begun in 1994 and originally included in GEM. It is largely here for the sake of old projects that might still rely on it. The included functionality has been improved in other libraries. debian/compat0000644000000000000000000000000211575306251010371 0ustar 7