diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/email | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/email')
-rw-r--r-- | main/email/APKBUILD | 25 | ||||
-rw-r--r-- | main/email/email-3.1.0-doc.patch | 10 | ||||
-rw-r--r-- | main/email/email-3.1.0-ldflags.patch | 11 |
3 files changed, 46 insertions, 0 deletions
diff --git a/main/email/APKBUILD b/main/email/APKBUILD new file mode 100644 index 000000000..a1301fe04 --- /dev/null +++ b/main/email/APKBUILD @@ -0,0 +1,25 @@ +# Maintainer: Carlo Landmeter <clandmeter at gmail.com> +pkgname=email +pkgver=3.1.2 +pkgrel=0 +pkgdesc="A command line SMTP client that's simple" +url="http://www.cleancode.org/projects/email" +license="GPL" +depends="uclibc openssl" +makedepends="openssl-dev" +source="http://www.cleancode.org/downloads/email/email-3.1.2.tar.bz2" + +subpackages="$pkgname-doc" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man + make || return 1 + make DESTDIR="$pkgdir" install +} + +md5sums="468c32758a01d1def084b5a7aaf631ac email-3.1.2.tar.bz2" diff --git a/main/email/email-3.1.0-doc.patch b/main/email/email-3.1.0-doc.patch new file mode 100644 index 000000000..d7467844f --- /dev/null +++ b/main/email/email-3.1.0-doc.patch @@ -0,0 +1,10 @@ +--- email-3.1.0.orig/configure.in Thu Jan 1 12:00:53 2009 ++++ email-3.1.0/configure.in Thu Jan 1 12:01:16 2009 +@@ -65,7 +65,6 @@ + CFLAGS="$CFLAGS -DUSE_GNU_STRFTIME" + fi + +-AC_SUBST(docdir, ["\${prefix}/doc/email-${version}"]) + AC_SUBST(ver, ["$version"]) + + CFLAGS="$CFLAGS -I$cwd -I$cwd/src -I$cwd/include -I../include -I$cwd/dlib/include" diff --git a/main/email/email-3.1.0-ldflags.patch b/main/email/email-3.1.0-ldflags.patch new file mode 100644 index 000000000..d08896ee3 --- /dev/null +++ b/main/email/email-3.1.0-ldflags.patch @@ -0,0 +1,11 @@ +--- email-3.1.0.orig/src/Makefile.in Tue Dec 30 13:16:08 2008 ++++ email-3.1.0/src/Makefile.in Tue Dec 30 13:17:00 2008 +@@ -18,7 +18,7 @@ + remotesmtp.o sig_file.o smtpcommands.o utils.o + + all: $(FILES) +- $(CC) $(CFLAGS) -o email $(FILES) $(OTHER_FILES) $(LDFLAGS) $(LIBS) $(DLIB) ++ $(CC) $(CFLAGS) -o email $(FILES) $(OTHER_FILES) $(DLIB) $(LDFLAGS) $(LIBS) + + clean: + rm -f *.o *.d email |