diff options
author | 2002-02-26 07:31:02 +0000 | |
---|---|---|
committer | 2002-02-26 07:31:02 +0000 | |
commit | 0e3bf6075bf40ee589c93fb5b35d7aa1ca261149 (patch) | |
tree | df3dcc0a8f0c5719ade8d451bd503610f53bf823 /media-sound | |
parent | bumped up version to arch-1.0_pre9 (diff) | |
download | gentoo-2-0e3bf6075bf40ee589c93fb5b35d7aa1ca261149.tar.gz gentoo-2-0e3bf6075bf40ee589c93fb5b35d7aa1ca261149.tar.bz2 gentoo-2-0e3bf6075bf40ee589c93fb5b35d7aa1ca261149.zip |
initial addition to portage
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/mup/ChangeLog | 12 | ||||
-rw-r--r-- | media-sound/mup/files/digest-mup-4.3 | 2 | ||||
-rw-r--r-- | media-sound/mup/mup-4.3.ebuild | 57 |
3 files changed, 71 insertions, 0 deletions
diff --git a/media-sound/mup/ChangeLog b/media-sound/mup/ChangeLog new file mode 100644 index 000000000000..2beba31b25da --- /dev/null +++ b/media-sound/mup/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for media-sound/mup +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/media-sound/mup/ChangeLog,v 1.1 2002/02/26 07:31:02 gbevin Exp $ + +*mup-4.3 (26/02/2002) + + 26 Feb 2002; G.Bevin <gbevin@gentoo.org> : + + Added mup 4.3 as a portage package. Note that this is a shareware application + and that you'll need to register to be able to create music sheets without + the 'unregistered' background image. + diff --git a/media-sound/mup/files/digest-mup-4.3 b/media-sound/mup/files/digest-mup-4.3 new file mode 100644 index 000000000000..192ece263fef --- /dev/null +++ b/media-sound/mup/files/digest-mup-4.3 @@ -0,0 +1,2 @@ +MD5 e283f8e377c984802e6f3f1e8d319c84 mup43doc.tar.gz 556395 +MD5 890966a230f7f60b5f70ecab9beb83cf mup43src.tar.gz 683963 diff --git a/media-sound/mup/mup-4.3.ebuild b/media-sound/mup/mup-4.3.ebuild new file mode 100644 index 000000000000..7ccc24054fbf --- /dev/null +++ b/media-sound/mup/mup-4.3.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Geert Bevin <gbevin@uwyn.com> +# $Header: /var/cvsroot/gentoo-x86/media-sound/mup/mup-4.3.ebuild,v 1.1 2002/02/26 07:31:02 gbevin Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="Mup is a shareware program for printing music. It takes an input file containing ordinary (ASCII) text describing music, and produces PostScript output for printing the musical score described by the input." +SRC_URI="ftp://ftp.arkkra.com/pub/unix/mup43src.tar.gz ftp://ftp.arkkra.com/pub/unix/mup43doc.tar.gz" +HOMEPAGE="http://www.arkkra.com" + +DEPEND="virtual/glibc + virtual/x11 + >=media-libs/svgalib-1.4.3" + +src_unpack() { + + mkdir ${P} + mkdir ${P}/doc + + cd ${WORKDIR}/${P} + unpack mup43src.tar.gz + + cd doc + unpack mup43doc.tar.gz + +} + +src_compile() { + + cd ${S}/mup + cc -o mup *.c -lm + + cd ${S}/mupdisp + cc -o mupdisp *.c -lm -lvga -lX11 -L/usr/X11R6/lib + + cd ${S}/mkmupfnt + cc -o mkmupfnt *.c + +} + +src_install () { + + dobin mup/mup + dobin mupdisp/mupdisp + dobin mkmupfnt/mkmupfnt + dobin mupprnt + + dodoc license.txt README0 + cd doc + dodoc faq.txt license.txt mupfeat.txt overview.txt register.txt README1 + dodoc mkmupfnt.ps mupdisp.ps mupprnt.ps mup.ps mupqref.ps oddeven.ps uguide.ps + doman mup.1 mupdisp.1 mupprnt.1 + dodoc sample.mup sample.ps star.mup star.ps template.mup + dohtml uguide/* + +} |