diff options
author | markd <markd@pkgsrc.org> | 2016-01-30 04:59:57 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2016-01-30 04:59:57 +0000 |
commit | 8493ad97b10f580286ba1be071745aa7e11b960d (patch) | |
tree | e48908f6757ce41538aab6d415d4cf36536c1e71 /pkgtools | |
parent | 77c5b0931a4a86ac20758d67b0899fba5d5c00a9 (diff) | |
download | pkgsrc-8493ad97b10f580286ba1be071745aa7e11b960d.tar.gz |
Update to 1.1.
Teach about more licenses.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/texlive2pkg/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/texlive2pkg/files/texlive.pkg | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/pkgtools/texlive2pkg/Makefile b/pkgtools/texlive2pkg/Makefile index def8870c1c1..7a88faa3624 100644 --- a/pkgtools/texlive2pkg/Makefile +++ b/pkgtools/texlive2pkg/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1 2016/01/24 19:34:44 markd Exp $ +# $NetBSD: Makefile,v 1.2 2016/01/30 04:59:57 markd Exp $ # -PKGNAME= texlive2pkg-1.0 +PKGNAME= texlive2pkg-1.1 CATEGORIES= pkgtools MAINTAINER= markd@NetBSD.org diff --git a/pkgtools/texlive2pkg/files/texlive.pkg b/pkgtools/texlive2pkg/files/texlive.pkg index 4636e6cc5b5..45a229c0f1e 100755 --- a/pkgtools/texlive2pkg/files/texlive.pkg +++ b/pkgtools/texlive2pkg/files/texlive.pkg @@ -1,5 +1,5 @@ #!/usr/pkg/bin/perl -# $NetBSD: texlive.pkg,v 1.1 2016/01/24 19:34:44 markd Exp $ +# $NetBSD: texlive.pkg,v 1.2 2016/01/30 04:59:57 markd Exp $ $version = "2015"; $pkgname = $shortdesc = $revision = $license = $longdesc = $depend = $homepage = ""; @@ -36,9 +36,11 @@ $version =~ s: :_:g; # 5th edition $version =~ s:-::g; # 2013-05-12 $license = "apache-2.0" if ($license eq "apache2"); $license = "gnu-fdl-v1.3" if ($license eq "fdl"); +$license = "gnu-lgpl-v2" if ($license eq "lgpl"); $license = "gnu-gpl-v2" if ($license eq "gpl"); $license = "gnu-gpl-v2" if ($license eq "gpl2"); $license = "gnu-gpl-v3" if ($license eq "gpl3"); +$license = "lppl-1.0" if ($license eq "lppl1"); $license = "lppl-1.2" if ($license eq "lppl1.2"); $license = "lppl-1.3c" if ($license eq "lppl"); $license = "lppl-1.3c" if ($license eq "lppl1.3"); |