diff options
author | Ilya Volynets <iluxa@gentoo.org> | 2005-04-18 23:49:40 +0000 |
---|---|---|
committer | Ilya Volynets <iluxa@gentoo.org> | 2005-04-18 23:49:40 +0000 |
commit | 7166d1f12a64d99625151ec51351a33dbd075141 (patch) | |
tree | 698ecceb259571954d4955e49ef512f4138085cd /dev-cpp | |
parent | Added ~amd64 keyword. (diff) | |
download | historical-7166d1f12a64d99625151ec51351a33dbd075141.tar.gz historical-7166d1f12a64d99625151ec51351a33dbd075141.tar.bz2 historical-7166d1f12a64d99625151ec51351a33dbd075141.zip |
add ebuild for 2.3.28
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/sptk/ChangeLog | 8 | ||||
-rw-r--r-- | dev-cpp/sptk/Manifest | 6 | ||||
-rw-r--r-- | dev-cpp/sptk/files/digest-sptk-2.3.28 | 1 | ||||
-rw-r--r-- | dev-cpp/sptk/sptk-2.3.28.ebuild | 44 |
4 files changed, 56 insertions, 3 deletions
diff --git a/dev-cpp/sptk/ChangeLog b/dev-cpp/sptk/ChangeLog index 3ac703344441..69b66bf6083c 100644 --- a/dev-cpp/sptk/ChangeLog +++ b/dev-cpp/sptk/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-cpp/sptk # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.6 2005/01/01 17:30:03 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.7 2005/04/18 23:49:40 iluxa Exp $ + +*sptk-2.3.28 (18 Apr 2005) + + 18 Apr 2005; Ilya A. Volynets-Evenbakh <ilya@total-knowledge.com> + +sptk-2.3.28.ebuild: + Add an ebuild for 2.3.28 *sptk-2.3.16 (28 Nov 2004) diff --git a/dev-cpp/sptk/Manifest b/dev-cpp/sptk/Manifest index 82b420ed21f1..878ac47fdc46 100644 --- a/dev-cpp/sptk/Manifest +++ b/dev-cpp/sptk/Manifest @@ -1,8 +1,10 @@ -MD5 07448397a6cccad9cd114ec7db8b1c6b ChangeLog 1288 +MD5 24a420cf76f3e6b5cec0d90cb524eefb ChangeLog 1430 MD5 623669b964009bb2a2adfc367f12d072 metadata.xml 334 -MD5 1252e5d82f4a3fc914589f63e37200e7 sptk-2.2.ebuild 1090 MD5 3daeae05c3da8fe1c02b22ed3ea6d7ff sptk-2.2.1.ebuild 1098 +MD5 1252e5d82f4a3fc914589f63e37200e7 sptk-2.2.ebuild 1090 MD5 04d1844a1ea2fa3cf07d159fb0a7b1f5 sptk-2.3.16.ebuild 1091 +MD5 794d9aaa3a788266740e6f26ab1403f4 sptk-2.3.28.ebuild 1093 MD5 ca482c4334f36836fb9377c2009ce95f files/digest-sptk-2.2 58 MD5 005ad61b10481108e76f80f21470a05d files/digest-sptk-2.2.1 60 MD5 57e9f89edc425e694c858182f785d30e files/digest-sptk-2.3.16 62 +MD5 c1961e9d1e8c7ce2861b6a9f9da08038 files/digest-sptk-2.3.28 62 diff --git a/dev-cpp/sptk/files/digest-sptk-2.3.28 b/dev-cpp/sptk/files/digest-sptk-2.3.28 new file mode 100644 index 000000000000..77f8e1c83a88 --- /dev/null +++ b/dev-cpp/sptk/files/digest-sptk-2.3.28 @@ -0,0 +1 @@ +MD5 5eb938b5a674171da86136cde33db422 sptk-2.3.28.tbz2 3223807 diff --git a/dev-cpp/sptk/sptk-2.3.28.ebuild b/dev-cpp/sptk/sptk-2.3.28.ebuild new file mode 100644 index 000000000000..ad9ec8a42f07 --- /dev/null +++ b/dev-cpp/sptk/sptk-2.3.28.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-2.3.28.ebuild,v 1.1 2005/04/18 23:49:40 iluxa Exp $ + +IUSE="fltk odbc" + +DESCRIPTION="C++ user interface toolkit for X with database and Excel support" +SRC_URI="http://sptk.tts-sf.com/sptk-${PV}.tbz2" +HOMEPAGE="http://sptk.tts-sf.com" + +SLOT="2" +LICENSE="|| ( FLTK GPL-2 )" +KEYWORDS="~x86 ~sparc ~mips ~amd64" + +DEPEND="fltk? ( x11-libs/fltk ) + odbc? ( >=dev-db/unixODBC-2.2.6 )" + +src_compile() { + + local myconf + myconf="--enable-shared" + + use odbc || myconf="${myconf} --disable-odbc" #default enabled + use fltk || myconf="${myconf} --disable-fltk" + + econf \ + --prefix=/usr \ + ${myconf} || die "Configuration Failed" + + emake || die "Parallel Make Failed" +} + +src_install () { + + einstall \ + includedir=${D}/usr/include/sptk \ + libdir=${D}/usr/lib || die "Installation Failed" + + dodoc CHANGES COPYING README + + dodir /usr/share/doc/${PF}/html + mv ${D}/usr/share/doc/sptk/* ${D}/usr/share/doc/${PF}/html + rmdir ${D}/usr/share/doc/sptk +} |