From b955100305e1eeda870d21e9d7f4f180f077f65a Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 30 Jul 2014 13:01:52 -0400 Subject: Initial commit --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..213a9bf --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Swap and backup files +.*.sw* +.sw* +*~ +Session.vim + +# Source archives +*-*.orig.tar.* + +# Work area +tmp/ diff --git a/build b/build new file mode 100755 index 0000000..bb20e3a --- /dev/null +++ b/build @@ -0,0 +1,14 @@ +#!/usr/bin/make -f + +include ../source.mk + +nop: + @: + +build: + @: + +install: build + install -d -m 0755 fonts-mplus.data/usr/share/fonts/truetype/mplus + install -m 0644 src/*.ttf \ + fonts-mplus.data/usr/share/fonts/truetype/mplus diff --git a/changelog b/changelog new file mode 100644 index 0000000..e30c751 --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +mplus-fonts (058-1) trunk + + * Initial release. + + -- "P. J. McDermott" Wed, 30 Jul 2014 12:44:15 -0400 diff --git a/control b/control new file mode 100644 index 0000000..bd4c62d --- /dev/null +++ b/control @@ -0,0 +1,2 @@ +Maintainer: "P. J. McDermott" +Homepage: http://mplus-fonts.sourceforge.jp/ diff --git a/copyright b/copyright new file mode 100644 index 0000000..94e4990 --- /dev/null +++ b/copyright @@ -0,0 +1,21 @@ +Upstream Source +=============== + +Copyright (C) 2002-2014 M+ FONTS PROJECT + +These fonts are free software. +Unlimited permission is granted to use, copy, and distribute them, with +or without modification, either commercially or noncommercially. +THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. + + +Distribution Packaging +====================== + +Copyright (C) 2014 Patrick "P. J." McDermott + +These files may be reproduced, distributed, modified, and otherwise dealt in +under the terms of the Expat/MIT License. + +On this system, a copy of the Expat License may be found at +. diff --git a/format b/format new file mode 100644 index 0000000..cd5ac03 --- /dev/null +++ b/format @@ -0,0 +1 @@ +2.0 diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..624b6d9 --- /dev/null +++ b/source.mk @@ -0,0 +1,13 @@ +upstream_archive = mplus-TESTFLIGHT-$(OPK_SOURCE_VERSION_UPSTREAM).tar.xz +upstream_url = http://dl.sourceforge.jp/mplus-fonts/6650/$(upstream_archive) +source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.bz2 + +$(source_archive): + wget -c '$(upstream_url)' + tar -xJf '$(upstream_archive)' + rm -f '$(upstream_archive)' + tar -cjf '$(source_archive)' \ + 'mplus-TESTFLIGHT-$(OPK_SOURCE_VERSION_UPSTREAM)' + mv 'mplus-TESTFLIGHT-$(OPK_SOURCE_VERSION_UPSTREAM)' 'src' + +source: $(source_archive) -- cgit v0.9.1