diff options
author | Thilo Bangert <bangert@gentoo.org> | 2002-06-26 10:40:26 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2002-06-26 10:40:26 +0000 |
commit | 979f614567519e4ef105a8e71a4bb0de59dca3c2 (patch) | |
tree | 530324652ccb9672304e505a7f6574e8a37b951c /net-p2p | |
parent | removing p2p apps - they are now in net-p2p. part 2 (diff) | |
download | gentoo-2-979f614567519e4ef105a8e71a4bb0de59dca3c2.tar.gz gentoo-2-979f614567519e4ef105a8e71a4bb0de59dca3c2.tar.bz2 gentoo-2-979f614567519e4ef105a8e71a4bb0de59dca3c2.zip |
move to net-p2p
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/soribada/ChangeLog | 30 | ||||
-rw-r--r-- | net-p2p/soribada/files/digest-soribada-0.8b | 1 | ||||
-rw-r--r-- | net-p2p/soribada/soribada-0.8b.ebuild | 30 |
3 files changed, 61 insertions, 0 deletions
diff --git a/net-p2p/soribada/ChangeLog b/net-p2p/soribada/ChangeLog new file mode 100644 index 000000000000..86c521bceba8 --- /dev/null +++ b/net-p2p/soribada/ChangeLog @@ -0,0 +1,30 @@ +# ChangeLog for net-p2p/soribada +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/soribada/ChangeLog,v 1.1 2002/06/26 10:40:26 bangert Exp $ + + 26 Jun 2002; Thilo Bangert <bangert@gentoo.org> : + + moved to net-p2p; fixed SLOT="0"; fixup DESCRIPTION + +*<PACKAGE_NAME>-<PACKAGE_VERSION>-<PACKAGE_RELEASE> (DD MMM YYYY) + + 01 Feb 2002; G.Bevin <gbevin@gentoo.org> skel.ChangeLog: This changelog is + targetted to users. This means that the comments should be well explained and + written in clean English. + +-- Explanation of ChangeLog format: + + Every new version or revision of the package should be marked by a '*' + seperator line as above. Changes since the last revision have to be added to + the top of the file, underneath the initial copyright and cvs header + comments, in exactly the same format as this comment. + + This means that you start with header line that has the following format, + indented two spaces: + + DD MMM YYYY; your_name <your_email> changed_file1, changed_file2: Your + explanation should follow. It should be indented and wrapped at a line width + of 80 characters. The changed_files can be omitted if they are obvious; for + example, if you are only modifying the .ebuild file and committing a new rev + of a package. Any details about what exactly changed in the code should be + added as a message when the changes are committed to cvs, not in this file. diff --git a/net-p2p/soribada/files/digest-soribada-0.8b b/net-p2p/soribada/files/digest-soribada-0.8b new file mode 100644 index 000000000000..22187af06ac2 --- /dev/null +++ b/net-p2p/soribada/files/digest-soribada-0.8b @@ -0,0 +1 @@ +MD5 6db7e90bc8254f24877d24cb2c18348b soribada-0.8b.tar.gz 283174 diff --git a/net-p2p/soribada/soribada-0.8b.ebuild b/net-p2p/soribada/soribada-0.8b.ebuild new file mode 100644 index 000000000000..91072429732e --- /dev/null +++ b/net-p2p/soribada/soribada-0.8b.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Jays Kwak <jayskwak@gentoo.or.kr> +# $Header: /var/cvsroot/gentoo-x86/net-p2p/soribada/soribada-0.8b.ebuild,v 1.1 2002/06/26 10:40:26 bangert Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Soribada (korean napster clone) client for linux" +SRC_URI="http://soribada.kldp.org/depot/${P}.tar.gz" +HOMEPAGE="http://soribada.kldp.org" +DEPEND="virtual/x11 + >=x11-libs/gtk+-1.2.0" +SLOT="0" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --bindir=/usr/bin || die "./configure failed" + + emake || die +} + +src_install() { + make \ + prefix=${D}/usr \ + bindir=${D}/usr/bin \ + install || die + + dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL README NEWS TODO +} |