summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2004-12-28 22:58:26 +0000
committerAlin Năstac <mrness@gentoo.org>2004-12-28 22:58:26 +0000
commit97134d337442f9f75e750c1ad301557adba73b30 (patch)
tree15e62f0f0008aabafb35a14d93363697b17d0787 /net-dialup
parentMoved dev-libs/ogdi to sci-libs/ogdi (diff)
downloadgentoo-2-97134d337442f9f75e750c1ad301557adba73b30.tar.gz
gentoo-2-97134d337442f9f75e750c1ad301557adba73b30.tar.bz2
gentoo-2-97134d337442f9f75e750c1ad301557adba73b30.zip
clean up ebuild (#75876)
Diffstat (limited to 'net-dialup')
-rw-r--r--net-dialup/penggy/ChangeLog6
-rw-r--r--net-dialup/penggy/metadata.xml2
-rw-r--r--net-dialup/penggy/penggy-0.2.1.ebuild23
3 files changed, 13 insertions, 18 deletions
diff --git a/net-dialup/penggy/ChangeLog b/net-dialup/penggy/ChangeLog
index 0946e8818549..4bbf53a06ca4 100644
--- a/net-dialup/penggy/ChangeLog
+++ b/net-dialup/penggy/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-dialup/penggy
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/penggy/ChangeLog,v 1.3 2004/06/24 22:30:28 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/penggy/ChangeLog,v 1.4 2004/12/28 22:58:26 mrness Exp $
+
+ 29 Dec 2004; Alin Nastac <mrness@gentoo.org> metadata.xml,
+ penggy-0.2.1.ebuild:
+ Cleaned up ebuild (see #75876).
29 Oct 2003; Donnie Berkholz <spyderous@gentoo.org>; penggy-0.2.1.ebuild:
Marking x86 -- no bugs filed since initial commit.
diff --git a/net-dialup/penggy/metadata.xml b/net-dialup/penggy/metadata.xml
index 3de0ad83f213..40e1a038a860 100644
--- a/net-dialup/penggy/metadata.xml
+++ b/net-dialup/penggy/metadata.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>no-herd</herd>
+<herd>net-dialup</herd>
<maintainer>
<email>spyderous@gentoo.org</email>
</maintainer>
diff --git a/net-dialup/penggy/penggy-0.2.1.ebuild b/net-dialup/penggy/penggy-0.2.1.ebuild
index 7cb0a1c9c258..f0bfa3e52ea0 100644
--- a/net-dialup/penggy/penggy-0.2.1.ebuild
+++ b/net-dialup/penggy/penggy-0.2.1.ebuild
@@ -1,30 +1,23 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/penggy/penggy-0.2.1.ebuild,v 1.3 2004/06/24 22:30:28 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/penggy/penggy-0.2.1.ebuild,v 1.4 2004/12/28 22:58:26 mrness Exp $
DESCRIPTION="Provide access to Internet using the AOL/Compuserve network."
-HOMEPAGE="http://www.peng.apinc.org/"
+HOMEPAGE="http://www.peng.apinc.org/eng/"
SRC_URI="ftp://ftp.penggy.org/birdy57/penggy/sources/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
-DEPEND=">=dev-util/guile-1.4.0"
+RDEPEND=">=dev-util/guile-1.4.0"
src_compile() {
- # Without localstatedir=/var, it would use /usr/var/run/ .
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --localstatedir=/var \
- --mandir=/usr/share/man \
- --sysconfdir=/etc || die "./configure failed"
- emake || die
+ econf || die "configure failed"
+ emake || die "make failed"
}
src_install() {
- make DESTDIR=${D} install || die
+ make DESTDIR=${D} install || die "make install failed"
exeinto /etc/init.d
newexe ${FILESDIR}/rc_net.aol net.aol
}
@@ -36,7 +29,5 @@ pkg_postinst() {
einfo "You now need to configure it by editing penggy.cfg, aol-secrets, and phonetab in /etc/penggy."
einfo "Also you will need to have tuntap, built into your kernel or compiled as a module."
einfo
- einfo "IMPORTANT: Penggy is neither endorsed by or affiliated with"
- einfo "AOL."
- einfo
+ ewarn "IMPORTANT: Penggy is neither endorsed by or affiliated with AOL."
}