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 | 35f74fe66d14442945bd5f27314ce9b76f0266e6 (patch) | |
tree | 748f0efa9a66652eafe558eb05e2dc8cb08d17dd /net-misc/aiccu | |
parent | Masked all net-misc/zsync due to security errors. (diff) | |
download | historical-35f74fe66d14442945bd5f27314ce9b76f0266e6.tar.gz historical-35f74fe66d14442945bd5f27314ce9b76f0266e6.tar.bz2 historical-35f74fe66d14442945bd5f27314ce9b76f0266e6.zip |
qa: no need to cd ${S} at start of src_compile, whitespace cleanup
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'net-misc/aiccu')
-rw-r--r-- | net-misc/aiccu/Manifest | 10 | ||||
-rw-r--r-- | net-misc/aiccu/aiccu-2005.01.31.ebuild | 15 |
2 files changed, 13 insertions, 12 deletions
diff --git a/net-misc/aiccu/Manifest b/net-misc/aiccu/Manifest index e68fefe1906c..b984153ea913 100644 --- a/net-misc/aiccu/Manifest +++ b/net-misc/aiccu/Manifest @@ -1,4 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + MD5 bdc693b3e44ffe7991e7810cb436761e ChangeLog 450 MD5 c70eed849cf25b746be14e7f798fb323 aiccu-2005.01.31.ebuild 964 MD5 9660dc0f8e9a9022cdcce8b424230519 files/digest-aiccu-2005.01.31 67 MD5 0b8679426c285c845af6e3878e007ba9 metadata.xml 242 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.1 (GNU/Linux) + +iD8DBQFC674dI1lqEGTUzyQRAuAeAJ4skJ9z74HOfhCpTSLfw1kw/R9WHgCfcYG+ +yRZijnYgR3qb+oR3cPccbbM= +=XEfU +-----END PGP SIGNATURE----- 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" - } - |