not yet. bump to avoid problems
This commit is contained in:
parent
81599f251c
commit
217649a004
@ -1,11 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.30 2010/11/17 20:40:54 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.31 2010/11/26 14:14:25 espie Exp $
|
||||
|
||||
COMMENT = exceptions to pkg_add rules
|
||||
CATEGORIES = devel databases
|
||||
DISTFILES =
|
||||
|
||||
# API.rev
|
||||
PKGNAME = quirks-1.28
|
||||
PKGNAME = quirks-1.29
|
||||
PKG_ARCH = *
|
||||
MAINTAINER = Marc Espie <espie@openbsd.org>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#! /usr/bin/perl
|
||||
|
||||
# ex:ts=8 sw=4:
|
||||
# $OpenBSD: Quirks.pm,v 1.36 2010/11/26 07:19:01 espie Exp $
|
||||
# $OpenBSD: Quirks.pm,v 1.37 2010/11/26 14:14:25 espie Exp $
|
||||
#
|
||||
# Copyright (c) 2009 Marc Espie <espie@openbsd.org>
|
||||
#
|
||||
@ -174,27 +174,6 @@ my $stem_extensions = {
|
||||
sub is_base_system
|
||||
{
|
||||
my ($self, $handle, $state) = @_;
|
||||
if ($handle->pkgname =~ m/^texlive_base-2009/) {
|
||||
# we need to alter its packing-list
|
||||
my $plist = OpenBSD::PackingList->from_installation(
|
||||
$handle->pkgname);
|
||||
require File::Find;
|
||||
File::Find::find(
|
||||
sub {
|
||||
return unless -f $_;
|
||||
return unless m/\.fmt$/;
|
||||
# quick and dirty pseudo-reg of all fmt files
|
||||
my $fname = $File::Find::name;
|
||||
$fname =~ s,^/usr/local/,,;
|
||||
my $o = OpenBSD::PackingElement::File->new($fname);
|
||||
# avoid checksumming them
|
||||
$o->{nochecksum} = 1;
|
||||
$o->add($plist);
|
||||
},
|
||||
'/usr/local/share/texmf-var/web2c');
|
||||
$plist->to_installation;
|
||||
}
|
||||
|
||||
my $stem = OpenBSD::PackageName::splitstem($handle->pkgname);
|
||||
my $test = $base_exceptions->{$stem};
|
||||
if (defined $test) {
|
||||
|
Loading…
Reference in New Issue
Block a user