diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2003-06-19 19:03:42 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2003-06-19 19:03:42 +0000 |
commit | 69421ae0a57358c57398b487b1a609f52355cf03 (patch) | |
tree | 50c71bea2274ca15337dd36a9603f973ea8d17ea /media-radio | |
parent | new ebuilds (diff) | |
download | historical-69421ae0a57358c57398b487b1a609f52355cf03.tar.gz historical-69421ae0a57358c57398b487b1a609f52355cf03.tar.bz2 historical-69421ae0a57358c57398b487b1a609f52355cf03.zip |
new ebuilds
Diffstat (limited to 'media-radio')
-rw-r--r-- | media-radio/xastir/ChangeLog | 9 | ||||
-rw-r--r-- | media-radio/xastir/Manifest | 2 | ||||
-rw-r--r-- | media-radio/xastir/files/digest-xastir-1.2.0 | 1 | ||||
-rw-r--r-- | media-radio/xastir/xastir-1.2.0.ebuild | 30 |
4 files changed, 42 insertions, 0 deletions
diff --git a/media-radio/xastir/ChangeLog b/media-radio/xastir/ChangeLog new file mode 100644 index 000000000000..247c8f78ccf4 --- /dev/null +++ b/media-radio/xastir/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for media-radio/xastir +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/xastir/ChangeLog,v 1.1 2003/06/19 19:03:42 rphillips Exp $ + +*xastir-1.2.0 (19 Jun 2003) + + 19 Jun 2003; Ryan Phillips <rphillips@gentoo.org> : + + Created by Paul Kronenwetter. Fixes Bug #12232 diff --git a/media-radio/xastir/Manifest b/media-radio/xastir/Manifest new file mode 100644 index 000000000000..29b0a448b7a3 --- /dev/null +++ b/media-radio/xastir/Manifest @@ -0,0 +1,2 @@ +MD5 9200ca8a509776a1d54356ef72b3e1fe xastir-1.2.0.ebuild 678 +MD5 28c8839ac6e0340f6d489f1104c0fea7 files/digest-xastir-1.2.0 65 diff --git a/media-radio/xastir/files/digest-xastir-1.2.0 b/media-radio/xastir/files/digest-xastir-1.2.0 new file mode 100644 index 000000000000..b03497084e8a --- /dev/null +++ b/media-radio/xastir/files/digest-xastir-1.2.0 @@ -0,0 +1 @@ +MD5 cbd0a96e4503e3cf0c87e71967cf8140 xastir-1.2.0.tar.gz 1082047 diff --git a/media-radio/xastir/xastir-1.2.0.ebuild b/media-radio/xastir/xastir-1.2.0.ebuild new file mode 100644 index 000000000000..7917992611f2 --- /dev/null +++ b/media-radio/xastir/xastir-1.2.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/xastir/xastir-1.2.0.ebuild,v 1.1 2003/06/19 19:03:42 rphillips Exp $ + +DESCRIPTION="XASTIR" +HOMEPAGE="http://xastir.sourceforge.net/" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/glibc + virtual/motif" + +src_compile() { + cd ${S} + ./configure --host=${CHOST} \ + --prefix=/usr || die + pmake || die +} + +src_install() { + into / + make DESTDIR=${D} install || die + mkdir -p ${D}/usr/local + dosym ../xastir usr/local/xastir +} + |