debian/0000755000000000000000000000000012231171773007172 5ustar debian/watch0000644000000000000000000000014311744065617010230 0ustar version=3 http://search.cpan.org/dist/OIS/ .*/OIS-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/rules0000755000000000000000000000003611744065617010260 0ustar #!/usr/bin/make -f %: dh $@ debian/copyright0000644000000000000000000000210611744065617011133 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OIS Upstream-Contact: Scott Lanning Source: http://search.cpan.org/dist/OIS/ Files: * Copyright: 2007, 2009 Scott Lanning License: Artistic or GPL-1+ Files: debian/* Copyright: 2009, 2011, gregor herrmann 2011, Ansgar Burchardt License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ 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 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/source/0000755000000000000000000000000011744065617010501 5ustar debian/source/format0000644000000000000000000000001411744065617011707 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011744065617010630 5ustar debian/patches/use-config-ccflags.patch0000644000000000000000000000121711744065617015311 0ustar Description: Include $Config{ccflags} in CCFLAGS Origin: vendor Bug-Debian: http://bugs.debian.org/636655 Forwarded: no Author: gregor herrmann Last-Update: 2011-08-08 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,7 @@ use ExtUtils::MakeMaker; use strict; use warnings; +use Config; my $MIN_OIS_VERSION = '1.2.0'; @@ -44,7 +45,7 @@ chomp $str; my ($v, $s) = split /\./, $str; if (($v == 4 && $s >= 2) || $v > 4) { - return {'CCFLAGS' => '-Wno-write-strings'}; + return {'CCFLAGS' => "-Wno-write-strings $Config{ccflags}"}; } } } debian/patches/series0000644000000000000000000000005611744065617012046 0ustar use-config-ccflags.patch fix-ois-header.patch debian/patches/fix-ois-header.patch0000644000000000000000000000051411744065617014455 0ustar Description: Fix OIS header inclusion Origin: vendor Bug-Debian: http://bugs.debian.org/669448 Forwarded: no Author: Alessandro Ghedini Last-Update: 2012-04-19 --- a/perlOIS.h +++ b/perlOIS.h @@ -1,7 +1,7 @@ #ifndef _PERLOIS_H_ #define _PERLOIS_H_ -#include +#include // for C++ debian/compat0000644000000000000000000000000211744065617010377 0ustar 9 debian/control0000644000000000000000000000172111744065617010605 0ustar Source: libois-perl Section: perl Priority: optional Build-Depends: debhelper (>= 9.20120312), perl, libois-dev, pkg-config Maintainer: Debian Perl Group Uploaders: gregor herrmann Standards-Version: 3.9.3 Homepage: http://search.cpan.org/dist/OIS/ Vcs-Git: git://git.debian.org/pkg-perl/packages/libois-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libois-perl.git Package: libois-perl Architecture: any Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends} Enhances: libogre-perl Description: Perl binding for the OIS C++ input framework This is a Perl binding for OIS, Object-Oriented Input System, a crossplatform C++ input framework, found at . It is made so that Ogre () can be useful, but there might be uses outside of Ogre. . The wrapping isn't really complete at the moment. debian/changelog0000644000000000000000000000232012231171773011041 0ustar libois-perl (0.05-3build1) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Mon, 21 Oct 2013 10:29:31 +0100 libois-perl (0.05-3) unstable; urgency=low * Team upload * Add fix-ois-header.patch to fix a FTBFS (Closes: #669448) * Bump debhelper compat level to 9 * Update d/copyright to copyright-format 1.0 * Bump Standards-Version to 3.9.3 -- Alessandro Ghedini Thu, 19 Apr 2012 21:46:12 +0200 libois-perl (0.05-2) unstable; urgency=low [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. [ gregor herrmann ] * Add a patch to include $Config{ccflags} in CCFLAGS. (Closes: #636655) * Switch to source format 3.0 (quilt). * debian/copyright: update formatting. * Bump debhelper compatibility level to 8. * Set Standards-Version to 3.9.2 (no changes). -- gregor herrmann Mon, 08 Aug 2011 21:09:29 +0200 libois-perl (0.05-1) unstable; urgency=low * Initial release (closes: #556197). -- gregor herrmann Sun, 15 Nov 2009 21:02:41 +0100