diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-04-29 04:18:36 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-04-29 04:18:36 +0000 |
commit | d6bd9463710e4c70c7971ec9e5b961f1f1900854 (patch) | |
tree | b1739ac5ef1e72db5e452a376611412fa035bb97 /media-libs/paragui | |
parent | *** empty log message *** (diff) | |
download | historical-d6bd9463710e4c70c7971ec9e5b961f1f1900854.tar.gz historical-d6bd9463710e4c70c7971ec9e5b961f1f1900854.tar.bz2 historical-d6bd9463710e4c70c7971ec9e5b961f1f1900854.zip |
New package
Diffstat (limited to 'media-libs/paragui')
-rw-r--r-- | media-libs/paragui/ChangeLog | 14 | ||||
-rw-r--r-- | media-libs/paragui/files/digest-paragui-1.0.1 | 1 | ||||
-rw-r--r-- | media-libs/paragui/paragui-1.0.1.ebuild | 25 |
3 files changed, 40 insertions, 0 deletions
diff --git a/media-libs/paragui/ChangeLog b/media-libs/paragui/ChangeLog new file mode 100644 index 000000000000..1320872df70b --- /dev/null +++ b/media-libs/paragui/ChangeLog @@ -0,0 +1,14 @@ +# ChangeLog for media-libs/paragui +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/media-libs/paragui/ChangeLog,v 1.1 2002/04/29 04:18:36 rphillips Exp $ + +*paragui-1.0.1 (28 Apr 2002) + + 28 Apr 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. + diff --git a/media-libs/paragui/files/digest-paragui-1.0.1 b/media-libs/paragui/files/digest-paragui-1.0.1 new file mode 100644 index 000000000000..93c293bae543 --- /dev/null +++ b/media-libs/paragui/files/digest-paragui-1.0.1 @@ -0,0 +1 @@ +MD5 d08bc4f48600fabcfa03e796c3bc04d5 paragui-1.0.1.tar.gz 748892 diff --git a/media-libs/paragui/paragui-1.0.1.ebuild b/media-libs/paragui/paragui-1.0.1.ebuild new file mode 100644 index 000000000000..7875343b513c --- /dev/null +++ b/media-libs/paragui/paragui-1.0.1.ebuild @@ -0,0 +1,25 @@ +# Copyriht 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author phoen][x <eqc_phoenix@gmx.de> +# $Header: /var/cvsroot/gentoo-x86/media-libs/paragui/paragui-1.0.1.ebuild,v 1.1 2002/04/29 04:18:36 rphillips Exp $ + +DESCRIPTION="A cross-platform high-level application framework and GUI library" +SRC_URI="http://freesoftware.fsf.org/download/paragui/${P}.tar.gz" +HOMEPAGE="http://www.paragui.org" + +DEPEND=">=media-libs/libsdl-1.2.4 + >=media-libs/sdl-image-1.2.1-r1" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man || die + + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING README README-ParaGUI.txt RELEASENOTES.final TODO THANKS +} |