diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-07-30 17:50:53 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-07-30 17:50:53 +0000 |
commit | 97c18e049e61eec0edc25da4bd7b5ccbaa4ea597 (patch) | |
tree | e61c2ed3cd145447d5241b3e84fcf9e528062593 /net-misc/aiccu | |
parent | Masked all net-misc/zsync due to security errors. (diff) | |
download | gentoo-2-97c18e049e61eec0edc25da4bd7b5ccbaa4ea597.tar.gz gentoo-2-97c18e049e61eec0edc25da4bd7b5ccbaa4ea597.tar.bz2 gentoo-2-97c18e049e61eec0edc25da4bd7b5ccbaa4ea597.zip |
qa: no need to cd ${S} at start of src_compile, whitespace cleanup
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-misc/aiccu')
-rw-r--r-- | net-misc/aiccu/aiccu-2005.01.31.ebuild | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/net-misc/aiccu/aiccu-2005.01.31.ebuild b/net-misc/aiccu/aiccu-2005.01.31.ebuild index 27fc07a05cbc..21c818f6fa80 100644 --- a/net-misc/aiccu/aiccu-2005.01.31.ebuild +++ b/net-misc/aiccu/aiccu-2005.01.31.ebuild @@ -1,7 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aiccu/aiccu-2005.01.31.ebuild,v 1.2 2005/04/21 13:55:19 blubb Exp $ - +# $Header: /var/cvsroot/gentoo-x86/net-misc/aiccu/aiccu-2005.01.31.ebuild,v 1.3 2005/07/30 17:50:53 swegener Exp $ DESCRIPTION="AICCU Client to configure an IPv6 tunnel to SixXS." HOMEPAGE="http://www.sixxs.net/" @@ -14,11 +13,8 @@ IUSE="" DEPEND="" S=${WORKDIR}/aiccu - src_compile() { - cd ${S} - export RPM_OPT_FLAGS=${CFLAGS} - make || die "Build Failed" + emake RPM_OPT_FLAGS="${CFLAGS}" || die "Build Failed" } src_install() { @@ -27,10 +23,7 @@ src_install() { insinto /etc doins doc/aiccu.conf dodoc doc/{HOWTO,LICENSE,README,changelog} - exeinto /etc/init.d - newexe doc/aiccu.init.gentoo aiccu - - + newinitd doc/aiccu.init.gentoo aiccu } pkg_postinst() { @@ -38,6 +31,4 @@ pkg_postinst() { einfo "To add support for a SixXS connection at startup, do" einfo "edit your /etc/aiccu.conf and do" einfo "# rc-update add aiccu default" - } - |